diff options
Diffstat (limited to 'src/common/DataStores/DB2Meta.cpp')
-rw-r--r-- | src/common/DataStores/DB2Meta.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/DataStores/DB2Meta.cpp b/src/common/DataStores/DB2Meta.cpp index b08c67c37ef..9b35353ce4f 100644 --- a/src/common/DataStores/DB2Meta.cpp +++ b/src/common/DataStores/DB2Meta.cpp @@ -73,7 +73,7 @@ uint32 DB2Meta::GetRecordSize() const size += sizeof(char*); break; default: - ASSERT(false, "Unsupported column type specified %c", Fields[i].Type); + ABORT_MSG("Unsupported column type specified %c", Fields[i].Type); break; } } @@ -124,7 +124,7 @@ uint32 DB2Meta::GetIndexFieldOffset() const offset += sizeof(char*); break; default: - ASSERT(false, "Unsupported column type specified %c", Fields[i].Type); + ABORT_MSG("Unsupported column type specified %c", Fields[i].Type); break; } } @@ -168,7 +168,7 @@ int32 DB2Meta::GetParentIndexFieldOffset() const offset += sizeof(char*); break; default: - ASSERT(false, "Unsupported column type specified %c", Fields[i].Type); + ABORT_MSG("Unsupported column type specified %c", Fields[i].Type); break; } } |