1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Remove #define SKIP_AUTOI. This is no longer used

This commit is contained in:
David Hall
2016-09-06 12:04:28 -05:00
parent ecb41be0a8
commit 23cf2e3edc
2 changed files with 4 additions and 64 deletions

View File

@ -312,14 +312,12 @@ bool XMLGenProc::makeColumnData(const CalpontSystemCatalog::TableName& table)
xmlTextWriterWriteFormatAttribute(fWriter,
BAD_CAST xmlTagTable[TAG_WIDTH], "%d", col->colType.colWidth);
#ifndef SKIP_AUTOI
if (col->colType.autoincrement)
{
int autoInc = 1;
xmlTextWriterWriteFormatAttribute(fWriter,
BAD_CAST xmlTagTable[TAG_AUTOINCREMENT_FLAG], "%d",autoInc);
}
#endif
//need dictionary and decimal stuff
if (col->colType.ddn.dictOID > 0)