Create a LogicalPlanBuilder representing a scan of a table with the provided name and schema. This is mostly used for testing and documentation.
(
name: Option<impl Into<TableReference>>,
table_schema: &Schema,
projection: Option<Vec<usize>>,
)
| 2059 | /// Create a LogicalPlanBuilder representing a scan of a table with the provided name and schema. |
| 2060 | /// This is mostly used for testing and documentation. |
| 2061 | pub fn table_scan( |
| 2062 | name: Option<impl Into<TableReference>>, |
| 2063 | table_schema: &Schema, |
| 2064 | projection: Option<Vec<usize>>, |
| 2065 | ) -> Result<LogicalPlanBuilder> { |
| 2066 | table_scan_with_filters(name, table_schema, projection, vec![]) |
| 2067 | } |
| 2068 | |
| 2069 | /// Create a LogicalPlanBuilder representing a scan of a table with the provided name and schema, |
| 2070 | /// and inlined filters. |
searching dependent graphs…