feat(core): add support for case insensitive LIKE operator (#1129)

This commit is contained in:
Ville Brofeldt
2021-05-24 10:18:14 +03:00
committed by Yongjie Zhao
parent 32ebeff93b
commit a6cfaffa35

View File

@@ -2,7 +2,7 @@
const UNARY_OPERATORS = ['IS NOT NULL', 'IS NULL'] as const;
/** List of operators that require another operand that is a single value */
const BINARY_OPERATORS = ['==', '!=', '>', '<', '>=', '<=', 'LIKE', 'REGEX'] as const;
const BINARY_OPERATORS = ['==', '!=', '>', '<', '>=', '<=', 'ILIKE', 'LIKE', 'REGEX'] as const;
/** List of operators that require another operand that is a set */
const SET_OPERATORS = ['IN', 'NOT IN'] as const;