Update src/tokenizer.rs

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
baishen 2021-08-18 09:38:46 -05:00 committed by GitHub
parent 24ca90acce
commit 3c3bc3e97e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,