diff options
author | a-romanov <Anton.Romanov@ydb.tech> | 2023-07-03 11:06:43 +0300 |
---|---|---|
committer | a-romanov <Anton.Romanov@ydb.tech> | 2023-07-03 11:06:43 +0300 |
commit | 98bc7e4ed61bd80234efe50e1ba2b30ac99648e1 (patch) | |
tree | b88f59af5714e98672c3fd506f4339ea683a7bc4 | |
parent | dd9b387d6da3c433023de20df735ab169acd6642 (diff) | |
download | ydb-98bc7e4ed61bd80234efe50e1ba2b30ac99648e1.tar.gz |
YQL-8971 YQL-15555 Rise limit for some tests.
-rw-r--r-- | ydb/library/yql/ast/yql_constraint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/ast/yql_constraint.cpp b/ydb/library/yql/ast/yql_constraint.cpp index b6546877427..458e60d917e 100644 --- a/ydb/library/yql/ast/yql_constraint.cpp +++ b/ydb/library/yql/ast/yql_constraint.cpp @@ -894,7 +894,7 @@ TUniqueConstraintNodeBase<Distinct>::RenameFields(TExprContext& ctx, const TPath } // TODO: Fix it by use sets of duplicated columns. - if (newSets.size() > 42U) + if (newSets.size() > 101U) return nullptr; } if (set.size() == newSets.front().size()) |