We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1040033 commit b7fa91bCopy full SHA for b7fa91b
1 file changed
cpp/src/arrow/table.cc
@@ -654,7 +654,6 @@ TableBatchReader::TableBatchReader(const Table& table)
654
for (int i = 0; i < table.num_columns(); ++i) {
655
column_data_[i] = table.column(i).get();
656
}
657
- DCHECK(table_.Validate().ok());
658
659
660
TableBatchReader::TableBatchReader(std::shared_ptr<Table> table)
@@ -668,7 +667,6 @@ TableBatchReader::TableBatchReader(std::shared_ptr<Table> table)
668
667
for (int i = 0; i < owned_table_->num_columns(); ++i) {
669
column_data_[i] = owned_table_->column(i).get();
670
671
672
673
674
std::shared_ptr<Schema> TableBatchReader::schema() const { return table_.schema(); }
0 commit comments