davidradl commented on code in PR #26522: URL: https://github.com/apache/flink/pull/26522#discussion_r2070446159
########## flink-formats/flink-json/src/test/java/org/apache/flink/formats/json/JsonFormatFactoryTest.java: ########## @@ -125,6 +125,51 @@ void testLowerCaseOptionForMapNullKeyMode() { testSchemaDeserializationSchema(tableOptions); } + @Test + void testDecodeJsonParseEnabled() { + // test enabled + final Map<String, String> enabledParseTableOptions = + getModifyOptions(options -> options.put("json.decode.json-parser.enabled", "true")); + + DeserializationSchema<RowData> actualEnabledParseDeser = Review Comment: maybe extend the test so that when true it can deal with nested projection pushdown and when false it cannot . This would show the value is being honoured -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org