query/include/matador/sql/dialect_token.hpp

64 lines
718 B
C++

#ifndef DIALECT_TOKEN_HPP
#define DIALECT_TOKEN_HPP
#include <cstdint>
namespace matador::sql {
enum class dialect_token : uint8_t {
AddConstraint = 0,
Alter,
And,
As,
Asc,
Asterisk,
Begin,
BeginBinaryData,
BeginStringData,
Between,
Column,
Columns,
Commit,
Create,
Database,
Desc,
Distinct,
Drop,
DropConstraint,
EndBinaryData,
EndQuote,
EndStringData,
ForeignKey,
From,
GroupBy,
In,
Insert,
Into,
Join,
Like,
Limit,
None,
Not,
NotNull,
Offset,
On,
Or,
OrderBy,
PrimaryKey,
References,
Remove,
Rollback,
Schema,
Select,
Set,
StartQuote,
StringQuote,
Table,
Update,
Values,
Where
};
}
#endif //DIALECT_TOKEN_HPP