diff options
author | aneporada <[email protected]> | 2023-01-03 12:39:43 +0300 |
---|---|---|
committer | aneporada <[email protected]> | 2023-01-03 12:39:43 +0300 |
commit | 8ee4eaa91898ce3adcdf302ba33311fc9e627282 (patch) | |
tree | 554f3337b05d9d555c169ef87164fd627ded8ebd /ydb/library/yql/ast/yql_expr.h | |
parent | 3b9d6412ef442facb9ef6eb1e7aa279d4279145a (diff) |
Rework chunked blocks handling - do not use TChunkedBlockExpr
Diffstat (limited to 'ydb/library/yql/ast/yql_expr.h')
-rw-r--r-- | ydb/library/yql/ast/yql_expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/ast/yql_expr.h b/ydb/library/yql/ast/yql_expr.h index 6c77bbb30f9..9ce91c7f218 100644 --- a/ydb/library/yql/ast/yql_expr.h +++ b/ydb/library/yql/ast/yql_expr.h @@ -236,9 +236,9 @@ public: return kind == ETypeAnnotationKind::Optional || kind == ETypeAnnotationKind::Null || kind == ETypeAnnotationKind::Pg; } - bool IsAnyBlockOrScalar() const { + bool IsBlockOrScalar() const { auto kind = GetKind(); - return kind == ETypeAnnotationKind::Block || kind == ETypeAnnotationKind::ChunkedBlock || kind == ETypeAnnotationKind::Scalar; + return kind == ETypeAnnotationKind::Block || kind == ETypeAnnotationKind::Scalar; } bool HasFixedSizeRepr() const { |