summaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql
diff options
context:
space:
mode:
authoraneporada <[email protected]>2024-11-12 16:12:00 +0300
committeraneporada <[email protected]>2024-11-12 16:29:39 +0300
commitc24e1e13cf409f09b125968fd3717ede0147c52d (patch)
tree7d53d1421b6bd61dd88c952555171c70f05460b0 /yql/essentials/sql
parent0f8074b32931e95bc77e99fc0cc06079449a2f03 (diff)
Merge PR #10741, #10799, #10732
\#10732 Fix a bug in YQL node creation for indexImplTable table settings \#10799support computation graph invalidation in purecalc \#10741Don't use Now() during replay for yt settings commit_hash:bc4c150ceb2ae05fc19eaa4804fb668730a89410
Diffstat (limited to 'yql/essentials/sql')
-rw-r--r--yql/essentials/sql/v1/query.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yql/essentials/sql/v1/query.cpp b/yql/essentials/sql/v1/query.cpp
index 8abc2a92bff..5548587090e 100644
--- a/yql/essentials/sql/v1/query.cpp
+++ b/yql/essentials/sql/v1/query.cpp
@@ -319,10 +319,10 @@ static INode::TPtr CreateIndexDesc(const TIndexDescription& index, ETableSetting
node.Q(node.Y(node.Q("dataColumns"), node.Q(dataColumns)))
);
if (index.TableSettings.IsSet()) {
- const auto& tableSettings = node.Y(
+ const auto& tableSettings = node.Q(node.Y(
node.Q("tableSettings"),
node.Q(CreateTableSettings(index.TableSettings, parsingMode, node))
- );
+ ));
indexNode = node.L(indexNode, tableSettings);
}
if (const auto* indexSettingsPtr = std::get_if<TVectorIndexSettings>(&index.IndexSettings)) {