removed class query and moved their static methods to simple functions

This commit is contained in:
2026-03-26 09:34:32 +01:00
parent 3fc08fb7ff
commit fedce38270
23 changed files with 283 additions and 286 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ session::session(session_context&& ctx, const query::schema &scm)
}
utils::result<void, utils::error> session::drop_table(const std::string &table_name) const {
auto result = query::query::drop()
auto result = query::drop()
.table(table_name)
.execute(*this);
if (result.is_error()) {