pk generator progress and sequence test progress

This commit is contained in:
2026-03-18 15:54:08 +01:00
parent 7996608f62
commit 6423bd505b
25 changed files with 152 additions and 30 deletions
+2
View File
@@ -138,6 +138,7 @@ public:
[[nodiscard]] const std::string& commit() const;
[[nodiscard]] const std::string& constraint() const;
[[nodiscard]] const std::string& create() const;
[[nodiscard]] const std::string& currval() const;
[[nodiscard]] const std::string& desc() const;
[[nodiscard]] const std::string& distinct() const;
[[nodiscard]] const std::string& drop() const;
@@ -212,6 +213,7 @@ private:
{dialect_token::Commit, "COMMIT TRANSACTION"},
{dialect_token::Constraint, "CONSTRAINT"},
{dialect_token::Create, "CREATE"},
{dialect_token::CurrVal, "CURRVAL"},
{dialect_token::Desc, "DESC"},
{dialect_token::Distinct, "DISTINCT"},
{dialect_token::Drop, "DROP"},
+1
View File
@@ -21,6 +21,7 @@ enum class dialect_token : uint8_t {
Commit,
Constraint,
Create,
CurrVal,
Database,
Desc,
Distinct,
+1
View File
@@ -18,6 +18,7 @@ enum class error_code : uint8_t {
DESCRIBE_FAILED,
TABLE_EXISTS_FAILED,
RETRIEVE_DATA_FAILED,
SEQUENCE_EXISTS_FAILED,
RESET_FAILED,
OPEN_ERROR,
CLOSE_ERROR,