()
| 1325 | use datafusion_sql::TableReference; |
| 1326 | |
| 1327 | fn empty() -> Arc<LogicalPlan> { |
| 1328 | Arc::new(LogicalPlan::EmptyRelation(EmptyRelation { |
| 1329 | produce_one_row: false, |
| 1330 | schema: Arc::new(DFSchema::empty()), |
| 1331 | })) |
| 1332 | } |
| 1333 | |
| 1334 | fn empty_with_type(data_type: DataType) -> Arc<LogicalPlan> { |
| 1335 | Arc::new(LogicalPlan::EmptyRelation(EmptyRelation { |
searching dependent graphs…