Skip to content

Commit

Permalink
Merge pull request #15225 from cdapio/sql-ff
Browse files Browse the repository at this point in the history
Add feature flag for wrangler directive execution on SQL
  • Loading branch information
shrverma authored Jul 12, 2023
2 parents a26ddd9 + 9c3a5a7 commit 86fe213
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions cdap-common/src/main/resources/cdap-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5891,6 +5891,15 @@
</description>
</property>

<property>
<name>feature.wrangler.execution.sql.enabled</name>
<value>false</value>
<description>
Enables the directive execution selector in Wrangler, allowing to select
between JEXL and SQL execution.
</description>
</property>

<property>
<name>artifact.cache.bind.address</name>
<value>0.0.0.0</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public enum Feature {
STREAMING_PIPELINE_NATIVE_STATE_TRACKING("6.8.0", false),
PUSHDOWN_TRANSFORMATION_WINDOWAGGREGATION("6.9.1"),
SOURCE_CONTROL_MANAGEMENT_GIT("6.9.0"),
WRANGLER_PRECONDITION_SQL("6.9.1");
WRANGLER_PRECONDITION_SQL("6.9.1"),
WRANGLER_EXECUTION_SQL("6.10.0");

private final PlatformInfo.Version versionIntroduced;
private final boolean defaultAfterIntroduction;
Expand Down

0 comments on commit 86fe213

Please sign in to comment.