Skip to content
Snippets Groups Projects
Commit a56b6587 authored by Victor Kotlyar's avatar Victor Kotlyar
Browse files

Add blob schema verification for cta-ctalogue-schema-verify.

parent edb9a950
Branches
Tags
No related merge requests found
......@@ -48,7 +48,11 @@ std::map<std::string, std::string> CatalogueSchema::getSchemaColumns(const std::
"INTEGER|"
"CHAR|"
"VARCHAR|"
"VARCHAR2";
"VARCHAR2|"
"BLOB|"
"BYTEA|"
"VARBINARY|"
"RAW";
try {
while(std::string::npos != (findResult = sql.find(';', searchPos))) {
......
......@@ -248,7 +248,8 @@ std::map<std::string, std::string> SqliteConn::getColumns(const std::string &tab
"INTEGER|"
"CHAR|"
"VARCHAR|"
"VARCHAR2";
"VARCHAR2|"
"BLOB";
auto stmt = createStmt(sql);
stmt->bindString(":TABLE_NAME", tableName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment