| 2397 | // mark non_exhaustive to encourage use of try_new/new() |
| 2398 | #[non_exhaustive] |
| 2399 | pub struct SubqueryAlias { |
| 2400 | /// The incoming logical plan |
| 2401 | pub input: Arc<LogicalPlan>, |
| 2402 | /// The alias for the input relation |
| 2403 | pub alias: TableReference, |
| 2404 | /// The schema with qualified field names |
| 2405 | pub schema: DFSchemaRef, |
| 2406 | } |
| 2407 | |
| 2408 | impl SubqueryAlias { |
| 2409 | pub fn try_new( |
no outgoing calls
no test coverage detected
searching dependent graphs…