Question marks in column names are not escaped correctly
--------------------------------------------------------
Key: NH-2681
URL: http://216.121.112.228/browse/NH-2681
Project: NHibernate
Issue Type: Bug
Components: Core
Affects Versions: 3.2.0Alpha2, 3.2.0Alpha1, 3.1.0
Reporter: Diego Mijelshon
Priority: Major
Given a mapping like this:
<class name="Foo">
...
<property name="IsBar" column="`Bar?`" />
</class>
The following HQL fails trying to replace the question mark with a parameter:
from Foo
This, however, works correctly:
select IsBar from Foo
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://216.121.112.228/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|