usql update

This commit is contained in:
2021-07-27 18:07:20 +02:00
parent 513c8da358
commit 281f7d8700
14 changed files with 290 additions and 169 deletions

View File

@@ -16,7 +16,7 @@ MlValue uSQL::ivaluize(const usql::Table *table) {
for (auto row : table->m_rows) {
columns.clear();
for (int i = 0; i < table->columns_count(); i++) {
auto c = row.ithColumn(i);
auto c = row.ith_column(i);
auto type = table->m_col_defs[i].type;
if (type == ColumnType::integer_type) {
columns.push_back(MlValue(c->getIntValue()));