不要怂,就是干,撸起袖子干!

Commit 78060006 by Mick Hansen

[ci skip] fix querying docs for col matching

1 parent 3f11bd97
Showing with 1 additions and 1 deletions
...@@ -133,7 +133,7 @@ $contains: [1, 2] // @> [1, 2] (PG array contains operator) ...@@ -133,7 +133,7 @@ $contains: [1, 2] // @> [1, 2] (PG array contains operator)
$contained: [1, 2] // <@ [1, 2] (PG array contained by operator) $contained: [1, 2] // <@ [1, 2] (PG array contained by operator)
$any: [2,3] // ANY ARRAY[2, 3]::INTEGER (PG only) $any: [2,3] // ANY ARRAY[2, 3]::INTEGER (PG only)
$col: '$user.organization_id$' // = "user"."organization_id", with dialect specific column identifiers, PG in this example $col: 'user.organization_id' // = "user"."organization_id", with dialect specific column identifiers, PG in this example
``` ```
### Combinations ### Combinations
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!