MCPcopy Create free account
hub / github.com/apache/datafusion / schema

Method schema

datafusion/physical-plan/src/projection.rs:551–553  ·  view source on GitHub ↗

Get the schema

(&self)

Source from the content-addressed store, hash-verified

549impl RecordBatchStream for ProjectionStream {
550 /// Get the schema
551 fn schema(&self) -> SchemaRef {
552 Arc::clone(self.projector.output_schema())
553 }
554}
555
556/// Trait for execution plans that can embed a projection, avoiding a separate

Callers 11

try_newMethod · 0.45
try_from_projectorMethod · 0.45
partition_statisticsMethod · 0.45
try_embed_projectionFunction · 0.45
is_projection_removableFunction · 0.45
new_join_childrenFunction · 0.45
update_join_filterFunction · 0.45
project_old_syntaxFunction · 0.45

Calls 1

output_schemaMethod · 0.45