summaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql/v1/sql_call_expr.cpp
diff options
context:
space:
mode:
authorYDBot <[email protected]>2025-10-23 18:38:13 +0000
committerYDBot <[email protected]>2025-10-23 18:38:13 +0000
commit564cf7cb2255a107b4f44c18b2a1844041f20b4d (patch)
tree6a4a60e8bde612dcc3ac7fd93fffbd36351d4e35 /yql/essentials/sql/v1/sql_call_expr.cpp
parent89a17b25091c24744b7ebd0650b5b810457b1145 (diff)
parenta703d86902fd02bd8e373d959b2498c034657449 (diff)
Merge pull request #27203 from ydb-platform/merge-rightlib-251021-0051
Diffstat (limited to 'yql/essentials/sql/v1/sql_call_expr.cpp')
-rw-r--r--yql/essentials/sql/v1/sql_call_expr.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/yql/essentials/sql/v1/sql_call_expr.cpp b/yql/essentials/sql/v1/sql_call_expr.cpp
index f28da51216f..54f7738f8ae 100644
--- a/yql/essentials/sql/v1/sql_call_expr.cpp
+++ b/yql/essentials/sql/v1/sql_call_expr.cpp
@@ -160,7 +160,7 @@ bool TSqlCallExpr::Init(const TRule_value_constructor& node) {
break;
}
case TRule_value_constructor::ALT_NOT_SET:
- Y_ABORT("You should change implementation according to grammar changes");
+ Y_UNREACHABLE();
}
PositionalArgs_ = Args_;
return true;
@@ -239,7 +239,7 @@ bool TSqlCallExpr::Init(const TRule_using_call_expr& node) {
break;
}
case TRule_using_call_expr::TBlock1::ALT_NOT_SET:
- Y_ABORT("You should change implementation according to grammar changes");
+ Y_UNREACHABLE();
}
YQL_ENSURE(!DistinctAllowed_);
UsingCallExpr_ = true;
@@ -354,7 +354,7 @@ bool TSqlCallExpr::Init(const TRule_invoke_expr& node) {
}
break;
case TRule_invoke_expr::TBlock2::ALT_NOT_SET:
- Y_ABORT("You should change implementation according to grammar changes");
+ Y_UNREACHABLE();
}
}
@@ -383,7 +383,7 @@ bool TSqlCallExpr::Init(const TRule_invoke_expr& node) {
return false;
}
case TRule_invoke_expr_tail::TBlock1::ALT_NOT_SET:
- Y_ABORT("You should change implementation according to grammar changes");
+ Y_UNREACHABLE();
}
}
@@ -423,7 +423,7 @@ bool TSqlCallExpr::Init(const TRule_invoke_expr& node) {
break;
}
case TRule_window_name_or_specification::ALT_NOT_SET:
- Y_ABORT("You should change implementation according to grammar changes");
+ Y_UNREACHABLE();
}
Ctx_.IncrementMonCounter("sql_features", "WindowFunctionOver");
}