some renamings

This commit is contained in:
2021-07-22 18:32:00 +02:00
parent dec99b823a
commit fc5fd32976
10 changed files with 171 additions and 170 deletions

View File

@@ -59,11 +59,11 @@ void Table::addCopyOfRow(const Row &row) {
new_row.setColumnNull(i);
} else {
if (m_col_defs[i].type == ColumnType::integer_type) {
new_row.setColumnValue(i, row.ithColumn(i)->integerValue());
new_row.setColumnValue(i, row.ithColumn(i)->getIntValue());
} else if (m_col_defs[i].type == ColumnType::float_type) {
new_row.setColumnValue(i, row.ithColumn(i)->floatValue());
new_row.setColumnValue(i, row.ithColumn(i)->getDoubleValue());
} else if (m_col_defs[i].type == ColumnType::varchar_type) {
new_row.setColumnValue(i, row.ithColumn(i)->stringValue());
new_row.setColumnValue(i, row.ithColumn(i)->getStringValue());
}
}
}