@@ -23,7 +23,7 @@ public struct PostgreSQLBinaryOperator: SQLBinaryOperator, Equatable, Expressibl
23
23
24
24
/// See `SQLBinaryOperator`.
25
25
public static let equal : PostgreSQLBinaryOperator = " = "
26
-
26
+
27
27
/// See `SQLBinaryOperator`.
28
28
public static let greaterThan : PostgreSQLBinaryOperator = " > "
29
29
@@ -65,7 +65,7 @@ public struct PostgreSQLBinaryOperator: SQLBinaryOperator, Equatable, Expressibl
65
65
66
66
/// See `SQLBinaryOperator`.
67
67
public static let isNot : PostgreSQLBinaryOperator = " IS NOT "
68
-
68
+
69
69
/// See `SQLBinaryOperator`.
70
70
public static let contains : PostgreSQLBinaryOperator = " @> "
71
71
@@ -74,7 +74,7 @@ public struct PostgreSQLBinaryOperator: SQLBinaryOperator, Equatable, Expressibl
74
74
75
75
/// See `SQLBinaryOperator`.
76
76
public static let overlap : PostgreSQLBinaryOperator = " && "
77
-
77
+
78
78
/// See `SQLBinaryOperator`.
79
79
public static let like : PostgreSQLBinaryOperator = " LIKE "
80
80
@@ -87,6 +87,9 @@ public struct PostgreSQLBinaryOperator: SQLBinaryOperator, Equatable, Expressibl
87
87
/// See `SQLBinaryOperator`.
88
88
public static let regexp : PostgreSQLBinaryOperator = " ~ "
89
89
90
+ /// See `SQLBinaryOperator`.
91
+ public static let caseInsensitiveRegexp : PostgreSQLBinaryOperator = " ~* "
92
+
90
93
/// See `SQLBinaryOperator`.
91
94
public static let notLike : PostgreSQLBinaryOperator = " NOT LIKE "
92
95
@@ -97,7 +100,10 @@ public struct PostgreSQLBinaryOperator: SQLBinaryOperator, Equatable, Expressibl
97
100
public static let notMatch : PostgreSQLBinaryOperator = " NOT MATCH "
98
101
99
102
/// See `SQLBinaryOperator`.
100
- public static let notRegexp : PostgreSQLBinaryOperator = " NOT REGEXP "
103
+ public static let notRegexp : PostgreSQLBinaryOperator = " !~ "
104
+
105
+ /// See `SQLBinaryOperator`.
106
+ public static let caseInsensitiveNotRegexp : PostgreSQLBinaryOperator = " !~* "
101
107
102
108
/// See `SQLBinaryOperator`.
103
109
public static let ilike : PostgreSQLBinaryOperator = " ILIKE "
0 commit comments