Skip to content

Commit

Permalink
Enable EnableScriptExecutionOperations flag by default (#2071)
Browse files Browse the repository at this point in the history
  • Loading branch information
UgnineSirdis authored Feb 21, 2024
1 parent 8d2cc65 commit 28e87dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ydb/core/kqp/proxy_service/kqp_proxy_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,8 @@ Y_UNIT_TEST_SUITE(KqpProxy) {

Y_UNIT_TEST(ExecuteScriptFailsWithoutFeatureFlag) {
NKikimrConfig::TAppConfig appConfig;
appConfig.MutableFeatureFlags()->SetEnableScriptExecutionOperations(false);
NYdb::TKikimrWithGrpcAndRootSchema server(appConfig);
appConfig.MutableFeatureFlags()->SetEnableScriptExecutionOperations(false); // default
server.Server_->GetRuntime()->SetLogPriority(NKikimrServices::KQP_PROXY, NActors::NLog::PRI_DEBUG);

ui16 grpc = server.GetPort();
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/protos/feature_flags.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ message TFeatureFlags {
optional bool EnableTopicDiskSubDomainQuota = 89 [default = true];
optional bool EnableSeparationComputeActorsFromRead = 90 [default = false];
optional bool EnablePQConfigTransactionsAtSchemeShard = 91 [default = false];
optional bool EnableScriptExecutionOperations = 92 [default = false];
optional bool EnableScriptExecutionOperations = 92 [default = true];
optional bool EnableImplicitQueryParameterTypes = 93 [default = true];
optional bool EnableForceImmediateEffectsExecution = 94 [default = false];
optional bool EnableTopicSplitMerge = 95 [default = false];
Expand Down

0 comments on commit 28e87dc

Please sign in to comment.