HHH-10174 - Fix Incorrect splitting of string using dot as separator, dot is not escaped

This commit is contained in:
Andrea Boriero 2015-10-12 15:47:06 +01:00
parent 75db26f24e
commit 4bb263f789
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class QualifiedNameParser {
text = unquote( text );
}
final String[] tokens = text.split( "." );
final String[] tokens = text.split( "\\." );
if ( tokens.length == 0 || tokens.length == 1 ) {
// we have just a local name...
name = text;