Github user vladimirtkach commented on a diff in the pull request:
https://github.com/apache/drill/pull/1026#discussion_r150500913
--- Diff: exec/java-exec/src/main/resources/drill-module.conf ---
@@ -502,6 +502,8 @@ drill.exec.options: {
store.format: "parquet",
store.hive.optimize_scan_with_native_readers: false,
store.json.all_text_mode: false,
+ store.json.writer.non_numeric_numbers: false,
+ store.json.reader.non_numeric_numbers: false,
--- End diff --
I think we should stick to json standard and leave them switched off by
default. If user get an exception we may show the option name which he want to
switch on.
---