@@ -27,8 +27,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) FROM examples;
27
27
```
28
28
29
29
``` javascript
30
- // Assume that examples.encrypted_jsonb has JSON objects with
31
- // the shape:
30
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
32
31
{
33
32
" field_a" : 100
34
33
}
@@ -56,8 +55,7 @@ WHERE cs_ste_vec_term_v1(examples.encrypted_jsonb, $1) > cs_ste_vec_term_v1($2)
56
55
```
57
56
58
57
``` javascript
59
- // Assume that examples.encrypted_jsonb has JSON objects with
60
- // the shape:
58
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
61
59
{
62
60
" field_a" : 100
63
61
}
@@ -116,8 +114,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
116
114
With the params...
117
115
118
116
``` javascript
119
- // Assume that examples.encrypted_jsonb has JSON objects with
120
- // the shape:
117
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
121
118
{
122
119
" field_a" : [1 , 2 , 3 ]
123
120
}
@@ -169,8 +166,7 @@ WHERE (cs_ste_vec_terms_v1(examples.encrypted_jsonb, $1))[1] > cs_ste_vec_term_v
169
166
```
170
167
171
168
``` javascript
172
- // Assume that examples.encrypted_jsonb has JSON objects with
173
- // the shape:
169
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
174
170
{
175
171
" field_a" : [4 , 5 , 6 ]
176
172
}
@@ -227,8 +223,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) FROM examples;
227
223
```
228
224
229
225
``` javascript
230
- // Assume that examples.encrypted_jsonb has JSON objects with
231
- // the shape:
226
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
232
227
{
233
228
" field_a" : {
234
229
" field_b" : 100
@@ -258,8 +253,7 @@ WHERE cs_ste_vec_term_v1(examples.encrypted_jsonb, $1) > cs_ste_vec_term_v1($2)
258
253
```
259
254
260
255
``` javascript
261
- // Assume that examples.encrypted_jsonb has JSON objects with
262
- // the shape:
256
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
263
257
{
264
258
" field_a" : {
265
259
" field_b" : 100
@@ -328,8 +322,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
328
322
With the params...
329
323
330
324
``` javascript
331
- // Assume that examples.encrypted_jsonb has JSON objects with
332
- // the shape:
325
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
333
326
{
334
327
" field_a" : [1 , 2 , 3 ]
335
328
}
@@ -381,8 +374,7 @@ WHERE EXISTS (
381
374
```
382
375
383
376
``` javascript
384
- // Assume that examples.encrypted_jsonb has JSON objects with
385
- // the shape:
377
+ // Assume that examples.encrypted_jsonb has JSON objects with the shape:
386
378
{
387
379
" field_a" : [1 , 2 , 3 ]
388
380
}
0 commit comments