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 e485ef74a6
commit d74ec8ec6b
1 changed files with 1 additions and 1 deletions

View File

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