added sequence-specific code (create, drop and nextval)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user