added blob type (progress)

This commit is contained in:
2024-01-22 07:11:35 +01:00
parent b158b41556
commit 102a7fc604
24 changed files with 240 additions and 149 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
#ifndef QUERY_DIALECT_HPP
#define QUERY_DIALECT_HPP
#include "matador/sql/types.hpp"
#include "matador/sql/data_type_traits.hpp"
#include <cstdint>
#include <functional>
@@ -26,11 +26,13 @@ public:
SELECT,
TABLE,
VALUES,
INSERT_VALUES,
COLUMNS,
COLUMN,
FROM,
INTO,
WHERE,
WHERE_CLAUSE,
AND,
OR,
LIKE,
@@ -43,6 +45,7 @@ public:
OFFSET,
DISTINCT,
SET,
UPDATE_VALUES,
NOT_NULL,
PRIMARY_KEY,
BEGIN,