moved column and table class from namespace sql to query

This commit is contained in:
Sascha Kühl
2025-11-18 16:27:38 +01:00
parent 7242dc2612
commit fb4bc03da0
79 changed files with 626 additions and 496 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef MATADOR_SQL_FUNCTIONS_HPP
#define MATADOR_SQL_FUNCTIONS_HPP
namespace matador::sql {
enum class sql_function_t {
None,
Count,
Avg,
Sum,
Min,
Max
};
}
#endif //MATADOR_SQL_FUNCTIONS_HPP