Skip to content

Commit 4efbb9d

Browse files
authored
docs: update SUPABASE.md formating
1 parent 7593787 commit 4efbb9d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

SUPABASE.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,15 @@ The data is encrypted based on the index term configurat ion.
9494
The `LIKE` operation is always the same, even if the data is----- tokenised differently.
9595
The different operators are kept to preserve the semantics of SQL statements in client applications.
9696

97-
### `ORDER BY`
97+
### `ORDER BY`
9898

99-
Ordering requires wrapping the ordered column in the `eql_v2.order_by` function, lik e this:
99+
Ordering requires wrapping the ordered column in the `eql_v2.order_by` function, like this:
100100

101101
```sql
102-
SELECT * FROM users ORDER BY eql_v2.order_by(encrypted_created_at) DESC
103-
`` ` PostgreSQL uses operators when handling `ORDER BY` operations. The `eql_v2.order_by` function behaves in the same way as the comparison operators, using the appropriate index type (ore_block_u64_8_256 , ore_cllw_u64_8, or ore_cllw_var_8) to determine the ordering.
102+
SELECT * FROM users ORDER BY eql_v2.order_by(encrypted_created_at) DESC;
103+
```
104+
105+
PostgreSQL uses operators when handling `ORDER BY` operations. The `eql_v2.order_by` function behaves in the same way as the comparison operators, using the appropriate index type (ore_block_u64_8_256, ore_cllw_u64_8, or ore_cllw_var_8) to determine the ordering.
104106

105107
### JSONB Support
106108

0 commit comments

Comments
 (0)