abhishekrb19 commented on code in PR #15495: URL: https://github.com/apache/druid/pull/15495#discussion_r1425920639
########## extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/util/MultiStageQueryContext.java: ########## @@ -114,6 +114,10 @@ public class MultiStageQueryContext public static final String CTX_FAULT_TOLERANCE = "faultTolerance"; public static final boolean DEFAULT_FAULT_TOLERANCE = false; + + public static final String CTX_FAIL_ON_EMPTY_INSERT = "failOnEmptyInsert"; + public static final boolean DEFAULT_FAIL_ON_EMPTY_INSERT = true; Review Comment: Yes, good catch. I had swapped the default value for convenience of testing, but forgot to put it back. It's restored to false now :) -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
