preparing for functions

This commit is contained in:
2021-07-14 23:18:54 +02:00
parent eebfaacde4
commit 24d4fb2567
9 changed files with 535 additions and 467 deletions

View File

@@ -15,7 +15,7 @@ namespace usql {
ColDefNode get_column_def(const std::string &col_name);
int columns_count() { return m_col_defs.size(); };
int columns_count() const { return m_col_defs.size(); };
Row createEmptyRow(); // TODO this means unnecessary copying
void addRow(const Row &row);