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:
Mark Payne 2017-06-09 10:07:25 -04:00 committed by Joe Percivall
parent cc741d2be6
commit d8dc2bb00b
1 changed files with 1 additions and 1 deletions

View File

@ -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;