Skip to content

Commit 4d2fffa

Browse files
authored
Set EnableUniqConstraint by default (#8180) (#9806)
1 parent ddabf59 commit 4d2fffa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ydb/core/kqp/ut/common/kqp_ut_common.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ TKikimrRunner::TKikimrRunner(const TKikimrSettings& settings) {
129129
ServerSettings->SetFrFactory(&UdfFrFactory);
130130
ServerSettings->SetEnableNotNullColumns(true);
131131
ServerSettings->SetEnableMoveIndex(true);
132-
ServerSettings->SetEnableUniqConstraint(true);
133132
ServerSettings->SetUseRealThreads(settings.UseRealThreads);
134133
ServerSettings->SetEnableTablePgTypes(true);
135134
ServerSettings->SetEnablePgSyntax(true);

ydb/core/protos/feature_flags.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ message TFeatureFlags {
116116
optional bool EnableIcNodeCache = 101 [default = true];
117117
optional bool EnableTempTables = 102 [default = false];
118118
optional bool SuppressCompatibilityCheck = 103 [default = false];
119-
optional bool EnableUniqConstraint = 104 [default = false];
119+
optional bool EnableUniqConstraint = 104 [default = true];
120120
optional bool EnableChangefeedDebeziumJsonFormat = 105 [default = false];
121121
optional bool EnableStatistics = 106 [default = true];
122122
optional bool EnableUuidAsPrimaryKey = 107 [default = true];

0 commit comments

Comments
 (0)