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
+12
View File
@@ -171,6 +171,10 @@ const std::string &dialect::end_string_data() const {
return token_at(dialect_token::EndStringData);
}
const std::string& dialect::exists() const {
return token_at(dialect_token::Exists);
}
const std::string &dialect::from() const {
return token_at(dialect_token::From);
}
@@ -235,6 +239,10 @@ const std::string &dialect::limit() const {
return token_at(dialect_token::Limit);
}
const std::string& dialect::nextval() const {
return token_at(dialect_token::NextVal);
}
const std::string &dialect::not_() const {
return token_at(dialect_token::Not);
}
@@ -291,6 +299,10 @@ const std::string &dialect::set() const {
return token_at(dialect_token::Set);
}
const std::string& dialect::sequence() const {
return token_at(dialect_token::Sequence);
}
const std::string &dialect::start_quote() const {
return token_at(dialect_token::StartQuote);
}