We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 214fd3c + ce05e8c commit 210f686Copy full SHA for 210f686
cpp/src/arrow/table.cc
@@ -619,7 +619,6 @@ TableBatchReader::TableBatchReader(const Table& table)
619
for (int i = 0; i < table.num_columns(); ++i) {
620
column_data_[i] = table.column(i).get();
621
}
622
- DCHECK(table_.Validate().ok());
623
624
625
TableBatchReader::TableBatchReader(std::shared_ptr<Table> table)
@@ -633,7 +632,6 @@ TableBatchReader::TableBatchReader(std::shared_ptr<Table> table)
633
632
for (int i = 0; i < owned_table_->num_columns(); ++i) {
634
column_data_[i] = owned_table_->column(i).get();
635
636
637
638
639
std::shared_ptr<Schema> TableBatchReader::schema() const { return table_.schema(); }
0 commit comments