mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-18 13:10:15 +00:00
Update src/tokenizer.rs
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
parent
24ca90acce
commit
3c3bc3e97e
1 changed files with 3 additions and 3 deletions
|
@ -110,11 +110,11 @@ pub enum Token {
|
|||
Sharp,
|
||||
/// Tilde `~` used for PostgreSQL Bitwise NOT operator or case sensitive match regular operator
|
||||
Tilde,
|
||||
/// `~*` , a case insensitive match regular operator in PostgreSQL
|
||||
/// `~*` , a case insensitive match regular expression operator in PostgreSQL
|
||||
TildeAsterisk,
|
||||
/// `!~` , a case sensitive not match regular operator in PostgreSQL
|
||||
/// `!~` , a case sensitive not match regular expression operator in PostgreSQL
|
||||
ExclamationMarkTilde,
|
||||
/// `!~*` , a case insensitive not match regular operator in PostgreSQL
|
||||
/// `!~*` , a case insensitive not match regular expression operator in PostgreSQL
|
||||
ExclamationMarkTildeAsterisk,
|
||||
/// `<<`, a bitwise shift left operator in PostgreSQL
|
||||
ShiftLeft,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue