Skip to content

Commit 026d2e1

Browse files
committed
YQL-9517: RPC Arrow reader YT column converters
1 parent 66b69b6 commit 026d2e1

11 files changed

+771
-122
lines changed

ydb/library/yql/providers/common/dq/yql_dq_integration_impl.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,6 @@ TMaybe<ui64> TDqIntegrationBase::EstimateReadSize(ui64, ui32, const TVector<cons
2222
return Nothing();
2323
}
2424

25-
bool TDqIntegrationBase::CanBlockReadTypes(const TStructExprType* node) {
26-
for (const auto& e: node->GetItems()) {
27-
// Check type
28-
auto type = e->GetItemType();
29-
while (ETypeAnnotationKind::Optional == type->GetKind()) {
30-
type = type->Cast<TOptionalExprType>()->GetItemType();
31-
}
32-
if (ETypeAnnotationKind::Data != type->GetKind()) {
33-
return false;
34-
}
35-
}
36-
return true;
37-
}
38-
3925
TExprNode::TPtr TDqIntegrationBase::WrapRead(const TDqSettings&, const TExprNode::TPtr& read, TExprContext&) {
4026
return read;
4127
}

0 commit comments

Comments
 (0)