blob: eef830982b5f7dac1228bf6d4901a73ada412640 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "formatindexedcolumn.h"
#include "parser/ast/sqliteindexedcolumn.h"
FormatIndexedColumn::FormatIndexedColumn(SqliteIndexedColumn* idxCol) :
idxCol(idxCol)
{
}
void FormatIndexedColumn::formatInternal()
{
withId(idxCol->name);
if (!idxCol->collate.isNull())
withKeyword("COLLATE").withId(idxCol->collate);
withSortOrder(idxCol->sortOrder);
}
|