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

@@ -32,6 +32,6 @@ std::vector<std::string> k_debug_sql_commands {
"update a set i = 5 where i = 2",
"select * from a where i = 5",
// "select max(i) from a where s = 'two'"
"select min(i), max(i) from a"
"select min(i), max(i), count(i) from a"
};