extract functions to own file

This commit is contained in:
2021-12-18 13:37:42 +01:00
parent c9c4f0fba3
commit 906df74847
8 changed files with 184 additions and 164 deletions

View File

@@ -10,8 +10,6 @@
namespace usql {
using IndexValue=std::variant<long, std::string>;
struct Table {
Table(const Table &other);
Table(const std::string& name, const std::vector<ColDefNode>& columns);
@@ -75,7 +73,7 @@ struct Table {
bool m_use_rowids;
Table * m_table;
std::vector<Row>::iterator m_fscan_itr;
std::vector<rowid_t> m_rowids; // TODO long here
std::vector<rowid_t> m_rowids;
size_t m_rowids_idx{};
};