Skip to content

Commit

Permalink
Merge pull request #48 from vertical-blank/postgres_text_search_opera…
Browse files Browse the repository at this point in the history
…tors

PostgreSQL Text Search Operators
  • Loading branch information
vertical-blank authored Aug 7, 2021
2 parents aff3362 + 78fbd8e commit bb9d265
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public DialectConfig dialectConfig() {
.operators(
Arrays.asList(
"!=", "<<", ">>", "||/", "|/", "::", "->>", "->", "~~*", "~~", "!~~*", "!~~", "~*",
"!~*", "!~", "!!"))
"!~*", "!~", "!!", "@@", "@@@"))
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ object PostgreSqlFormatterTest :
"~*",
"!~*",
"!~",
"@@",
"@@@",
))
supportsJoin(formatter)

Expand Down

0 comments on commit bb9d265

Please sign in to comment.