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

12
row.cpp
View File

@@ -19,13 +19,13 @@ namespace usql {
for (int i = 0; i < other.m_columns.size(); i++) {
if (ColIntegerValue *other_v = dynamic_cast<ColIntegerValue *>(other.m_columns[i].get())) {
setColumnValue(i, other_v->integerValue());
setColumnValue(i, other_v->getIntValue());
}
if (ColFloatValue *other_v = dynamic_cast<ColFloatValue *>(other.m_columns[i].get())) {
setColumnValue(i, other_v->floatValue());
if (ColDoubleValue *other_v = dynamic_cast<ColDoubleValue *>(other.m_columns[i].get())) {
setColumnValue(i, other_v->getDoubleValue());
}
if (ColStringValue *other_v = dynamic_cast<ColStringValue *>(other.m_columns[i].get())) {
setColumnValue(i, other_v->stringValue());
setColumnValue(i, other_v->getStringValue());
}
}
}
@@ -44,7 +44,7 @@ namespace usql {
}
void Row::setColumnValue(int col_index, double value) {
m_columns[col_index] = std::make_unique<ColFloatValue>(value);
m_columns[col_index] = std::make_unique<ColDoubleValue>(value);
}
void Row::setColumnValue(int col_index, const std::string &value) {
@@ -54,7 +54,7 @@ namespace usql {
void Row::print() {
for (int ci = 0; ci < m_columns.size(); ci++) {
if (ci > 0) std::cout << ",";
auto v = m_columns[ci]->stringValue();
auto v = m_columns[ci]->getStringValue();
std::cout << v;
}
std::cout << std::endl;