jdbc insert.composite incorrect filtering on composite field
Status: Beta
Brought to you by:
bigman921
MyVD trunc 183
Using composite to create an attr "cn" joining together "givenName" and "sn".
The search on the composite field incorrectly resolves to
"WHERE" givenname like "%value%" AND sn like "%"
instead of the more correct:
"WHERE" givenname like "%value%" OR sn like "%value%"
(Sql catched by sniffing lo:3306)