added sequence-specific code (create, drop and nextval)

This commit is contained in:
2026-02-17 13:31:06 +01:00
parent 80426c5293
commit 5668f1060b
17 changed files with 174 additions and 8 deletions
+2
View File
@@ -13,6 +13,7 @@ enum class sql_command {
Create,
CreateTable,
CreateSchema,
CreateSequence,
CreateDatabase,
Update,
Insert,
@@ -21,6 +22,7 @@ enum class sql_command {
Drop,
DropTable,
DropSchema,
DropSequence,
DropDatabase,
Alter,
AlterTable,