Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1508#discussion_r151637632
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -67,6 +67,12 @@
public static final String VALIDATE_CARBON_INPUT_SEGMENTS =
"validate.carbon.input.segments.";
/**
+ * Whether load/insert command is fired internally or by the user.
+ * Used to block load/insert on pre-aggregate if fired by user
+ */
+ public static final String IS_INTERNAL_LOAD_CALL =
"is.internal.load.call";
--- End diff --
Seems no testcase for this option. And the option name should start with
`carbon`
---