usql updates, lexer changes

This commit is contained in:
2021-09-15 21:22:24 +02:00
parent 7e4a4b5583
commit 1e0506e6cd
21 changed files with 986 additions and 777 deletions

View File

@@ -172,16 +172,12 @@ int Row::print_get_column_size(const ColDefNode &col_def) {
switch (col_def.type) {
case ColumnType::varchar_type:
return col_def.length;
break;
case ColumnType::date_type:
return 19;
break;
case ColumnType::float_type:
return 16;
break;
default:
return 10;
default:
return 10;
}
}