usql update
This commit is contained in:
@@ -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()));
|
||||
|
||||
Reference in New Issue
Block a user