Skip to content

Commit

Permalink
Set EnableUniqConstraint by default (#8180)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherednik committed Sep 26, 2024
1 parent 6950c41 commit cc566c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion ydb/core/kqp/ut/common/kqp_ut_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ TKikimrRunner::TKikimrRunner(const TKikimrSettings& settings) {
ServerSettings->SetFrFactory(&UdfFrFactory);
ServerSettings->SetEnableNotNullColumns(true);
ServerSettings->SetEnableMoveIndex(true);
ServerSettings->SetEnableUniqConstraint(true);
ServerSettings->SetUseRealThreads(settings.UseRealThreads);
ServerSettings->SetEnableTablePgTypes(true);
ServerSettings->SetEnablePgSyntax(true);
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 @@ -116,7 +116,7 @@ message TFeatureFlags {
optional bool EnableIcNodeCache = 101 [default = true];
optional bool EnableTempTables = 102 [default = false];
optional bool SuppressCompatibilityCheck = 103 [default = false];
optional bool EnableUniqConstraint = 104 [default = false];
optional bool EnableUniqConstraint = 104 [default = true];
optional bool EnableChangefeedDebeziumJsonFormat = 105 [default = false];
optional bool EnableStatistics = 106 [default = true];
optional bool EnableUuidAsPrimaryKey = 107 [default = true];
Expand Down

0 comments on commit cc566c4

Please sign in to comment.