Re: [hibernate-dev] Pull request for HHH-11089

2016-09-21 Thread andrea boriero
Hi Petar, you can use Identifier#toIdentifier(String text) this method detects if the text is quoted and it calls the Identifier#toIdentifier( String text , boolean quoted ) with the correct quoted value. On 21 September 2016 at 16:54, Petar Tahchiev wrote: > Hey guys, > > I just created a

[hibernate-dev] Pull request for HHH-11089

2016-09-21 Thread Petar Tahchiev
Hey guys, I just created a pull-request for HHH-11089: https://github.com/hibernate/hibernate-orm/pull/1564 However when I create the Identifier like this: Identifier.toIdentifier( keyName, true ); I always set quoted to true as I don't know where to get this value from. Can someone please ha