Prasad Reddy created PHOENIX-4157:
-------------------------------------
Summary: I am currently facing issue namedparameters from Java
Key: PHOENIX-4157
URL: https://issues.apache.org/jira/browse/PHOENIX-4157
Project: Phoenix
Issue Type: Bug
Reporter: Prasad Reddy
uncategorized SQLException for SQL [select * from orders where customer like
'customer%' and user like ?]; SQL state [00000]; error code [-1]; Error -1
(00000) : while preparing SQL: select * from orders where customer like
'customer%' and user like ?; nested exception is
org.apache.calcite.avatica.AvaticaSqlException:
This happening when I below query with named parameter
searchOrderQuery = new StringBuilder("select * from customer where customer
like :customerName");
and if I replace name parameter then it is working fine
searchOrderQuery = new StringBuilder("select * from customer where customer
like '%rajesh%' ");
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)