HHH-10174 - Fix Incorrect splitting of string using dot as separator, dot is not escaped
This commit is contained in:
parent
e485ef74a6
commit
d74ec8ec6b
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue