agentgt / jirm

A Java Immutable object Relational Mapper focused on simplicity, convenience, and thread safety.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SQL Placeholder parser should not replace operator and left hand symbol if there is no space.

agentgt opened this issue · comments

UPDATE xml_linkedin_profile
   SET 
   person_xml= XML('<person><id>TEST</id></person>' -- {personXml}
   )
   , update_time=now() -- {updateTime}
 WHERE
 id='TEST' -- {id}

Will turn into (notice TEST at bottom):

UPDATE xml_linkedin_profile
   SET 
   person_xml= XML(?
   )
   , update_time=?
 WHERE
 ?