Skip to content

Commit

Permalink
TEIID-5065 allowing unicode vdb names to be used
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Sep 15, 2017
1 parent 52e1dec commit 8f140b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/main/java/org/teiid/jdbc/JDBCURL.java
Expand Up @@ -195,7 +195,7 @@ static void parseConnectionProperty(String connectionProperty, Properties p) {
if(value.indexOf('=') >= 0) {
throw new IllegalArgumentException();
}
addNormalizedProperty(key, getValidValue(value), p);
addNormalizedProperty(getValidValue(key), getValidValue(value), p);
}

public String getJDBCURL() {
Expand Down

0 comments on commit 8f140b0

Please sign in to comment.