Skip to content

Commit 0863b32

Browse files
CDThomasauxesis
andauthored
Punctuate consistently
Co-authored-by: Lindsay Holmwood <[email protected]>
1 parent c3ae969 commit 0863b32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

NATIVE_POSTGRES_JSON_COMPARED_TO_EQL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ EQL JSONB functions accept an eJSONPath as an argument (instead of using `->`/`-
105105

106106
EQL currently doesn't support returning a specific array element for decryption, but `cs_ste_vec_value_v1` can be used to return an array to the client to process.
107107

108-
The query...
108+
The query:
109109

110110
```sql
111111
SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
112112
```
113113

114-
With the params...
114+
With the params:
115115

116116
```javascript
117117
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
@@ -364,13 +364,13 @@ SELECT * from jsonb_array_elements_text('["a", "b"]');
364364

365365
EQL currently doesn't support returning a `SETOF` values for decryption (for returning a row per item in an array), but `cs_ste_vec_value_v1` can be used to return an array to the client to process.
366366

367-
The query...
367+
The query:
368368

369369
```sql
370370
SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
371371
```
372372

373-
With the params...
373+
With the params:
374374

375375
```javascript
376376
// Assume that examples.encrypted_jsonb has JSON objects with the shape:

0 commit comments

Comments
 (0)