From 21e9c76cfee9c6a2d754b115db645e2c451232ea Mon Sep 17 00:00:00 2001 From: Alex Dreyer Date: Thu, 25 Jun 2015 11:46:34 -0700 Subject: [PATCH] Add '@@' as an infix operator for postgres text search --- src/honeysql/format.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/honeysql/format.clj b/src/honeysql/format.clj index 590bfc7..504c820 100644 --- a/src/honeysql/format.clj +++ b/src/honeysql/format.clj @@ -73,7 +73,7 @@ (def infix-fns #{"+" "-" "*" "/" "%" "mod" "|" "&" "^" "and" "or" "xor" - "in" "not in" "like" "not like" "regexp"}) + "in" "not in" "like" "not like" "regexp" "@@"}) (def fn-aliases {"is" "="