File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -645,6 +645,9 @@ queries.
645
645
@defop[jsonb (display (select _ (jsonb "{} " )))]
646
646
@defop[like (display (select _ (like "a " "%a% " )))]
647
647
@defop[position (display (select _ (position "om " "Thomas " )))]
648
+ @defop[regexp-match? (display (select _ (regexp-match? "a " "[a-z] " )))]
649
+ @defop[regexp-match?* (display (select _ (regexp-match?* "A " "[a-z] " )))]
650
+ @defop[tsquery-match? (display (select _ (tsquery-match? (to_tsvector "a " ) (to_tsquery "A " ))))]
648
651
@defop[similar-to (display (select _ (similar-to "a " "abc " )))]
649
652
@defop[string-concat (display (select _ (string-concat "a " "bc " "def " )))]
650
653
@defop[subquery (display (select _ (as (subquery (select _ 1 )) x)))]
Original file line number Diff line number Diff line change 1
1
#lang info
2
2
3
3
(define license 'BSD-3-Clause )
4
- (define version "0.16 " )
4
+ (define version "0.16.1 " )
5
5
(define collection "deta " )
6
6
7
7
(define deps '("base "
Original file line number Diff line number Diff line change 65
65
[json-superset? "@> " ]
66
66
[like]
67
67
[position]
68
+ [regexp-match? "~ " ]
69
+ [regexp-match?* "~* " ]
70
+ [tsquery-match? "@@ " ]
68
71
[similar-to "SIMILAR TO " ])
69
72
70
73
(define-ops ternary
You can’t perform that action at this time.
0 commit comments