()
| 1790 | |
| 1791 | #[test] |
| 1792 | fn test_encode_no_column_batch() { |
| 1793 | let batch = RecordBatch::try_new_with_options( |
| 1794 | Arc::new(Schema::empty()), |
| 1795 | vec![], |
| 1796 | &RecordBatchOptions::new().with_row_count(Some(10)), |
| 1797 | ) |
| 1798 | .expect("cannot create record batch"); |
| 1799 | |
| 1800 | hydrate_dictionaries(&batch, batch.schema()).expect("failed to optimize"); |
| 1801 | } |
| 1802 | |
| 1803 | fn make_flight_data( |
| 1804 | batch: &RecordBatch, |
nothing calls this directly
no test coverage detected