small fixes for table, column and query_macro

This commit is contained in:
Sascha Kühl
2025-11-21 12:25:38 +01:00
parent e235c111a1
commit 34eaeca0bb
8 changed files with 25 additions and 14 deletions
+5
View File
@@ -154,6 +154,11 @@ QUERY_HELPER( payload, PAYLOAD, id )
QUERY_HELPER( temporary_table, TEMPORARY_TABLE, id );
QUERY_HELPER(customer, CUSTOMER, id, name, email, address)
QUERY_HELPER(product, PRODUCT, id, title, description, price, category)
QUERY_HELPER(category, CATEGORY, id, title, description)
QUERY_HELPER(cart, CART, id, items, owner)
int main() {
using namespace matador::sql;
using namespace matador::object;