jirm icon indicating copy to clipboard operation
jirm copied to clipboard

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

Open agentgt opened this issue 11 years ago • 0 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
 ?

agentgt avatar Mar 25 '13 02:03 agentgt