dbflute / dbflute-core

DBFlute core libraries for Java8
http://dbflute.seasar.org/
23 stars 18 forks source link

DBFlute Runtime: support for PGroonga basic operand #175

Closed jflute closed 4 months ago

jflute commented 1 year ago

DBFlute + PostgreSQL + PGroonga

[A]
where CONTENT &@ 'sea'

[B]
where CONTENT &@ 'sea' or BETSU_COL &@ 'sea'

[C]
where CONTENT &@ 'sea' or CONTENT &@ 'land'

[C++]
where CONTENT &@| ARRAY['sea', 'land']

This ticket supports A, B, C. C++ needs big re-design so pending.