I'm trying to use zombodb with a jpa paged query. This involves building a query that ends up being PREPARED on postgres. This ends up giving a error:
HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
you can simulate this without JPA by doing something like:
PREPARE fred (varchar) AS SELECT * from jukebox.songs WHERE songs ==> $1;
EXECUTE fred("searchstring");
where jukebox.songs is the indexed table.
the PREPARE statement errors with the above error.
Any ideas for a solution?
James Shoemaker