mirror of https://github.com/apache/nifi.git
NIFI-4047: Addressed issue with inconsistent Lexical policy between used cached schemas and non-cached schemas
This closes #1907 Signed-off-by: Joe Percivall <JPercivall@apache.org>
This commit is contained in:
parent
cc741d2be6
commit
d8dc2bb00b
|
@ -472,7 +472,7 @@ public class QueryRecord extends AbstractProcessor {
|
|||
final RecordReaderFactory recordParserFactory) throws SQLException {
|
||||
|
||||
final Properties properties = new Properties();
|
||||
properties.put(CalciteConnectionProperty.LEX.camelName(), Lex.JAVA.name());
|
||||
properties.put(CalciteConnectionProperty.LEX.camelName(), Lex.MYSQL_ANSI.name());
|
||||
|
||||
Connection connection = null;
|
||||
ResultSet resultSet = null;
|
||||
|
|
Loading…
Reference in New Issue