Skip to content
Snippets Groups Projects
Commit 1d30bedb authored by Johannes Goderbauer's avatar Johannes Goderbauer Committed by Johannes Goderbauer
Browse files

[Projekt: Entwicklung - Pool][TicketNr.: 1047350][Blob statt Clob-Daten beim...

[Projekt: Entwicklung - Pool][TicketNr.: 1047350][Blob statt Clob-Daten beim generieren von Daten mit MariaDB]

(cherry picked from commit 8414fe56)
parent de338589
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ LiquiUtils._getDataXml = function(pAuthor, pLobPath, pTableName, pColumns, pCond
}
else if(SQLTYPES.isLOBType(colType))
{
if (colType == SQLTYPES.BLOB)
if ([SQLTYPES.BLOB, SQLTYPES.LONGVARBINARY, SQLTYPES.VARBINARY].indexOf(colType) != -1)
return LiquiXTable.prototype.addBlobCol;
else
return LiquiXTable.prototype.addClobCol;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment