Skip to content

Commit d1cb685

Browse files
committed
docs: syntax highlight SQL code blocks
1 parent b8a2fd8 commit d1cb685

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SUPABASE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ In EQL, PostgreSQL operators are an alias for a function, so the implementation
2727

2828

2929
**Operator**
30-
```
30+
```sql
3131
SELECT * FROM users WHERE encrypted_email = $1
3232
```
3333

3434
**Function**
35-
```
35+
```sql
3636
SELECT * FROM users WHERE eql_v1.eq(encrypted_email, $1)
3737
```
3838

@@ -41,12 +41,12 @@ SELECT * FROM users WHERE eql_v1.eq(encrypted_email, $1)
4141

4242

4343
**Operator**
44-
```
44+
```sql
4545
SELECT * FROM users WHERE encrypted_email LIKE $1
4646
```
4747

4848
**Function**
49-
```
49+
```sql
5050
SELECT * FROM users WHERE eql_v1.like(encrypted_email, $1)
5151
```
5252

@@ -62,7 +62,7 @@ The behaviour of the "match" index term that is used by the encrypted `LIKE` ope
6262

6363
Ordering requires wrapping the ordered column in the `eql_v1.order_by` function, like this:
6464

65-
```
65+
```sql
6666
SELECT * FROM users ORDER BY eql_v1.order_by(encrypted_created_at) DESC
6767
```
6868

0 commit comments

Comments
 (0)