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

Class DropView

datafusion/expr/src/logical_plan/ddl.rs:567–574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

565/// Drops a view.
566#[derive(Debug, Clone, PartialEq, Eq, Hash)]
567pub struct DropView {
568 /// The view name
569 pub name: TableReference,
570 /// If the view exists
571 pub if_exists: bool,
572 /// Dummy schema
573 pub schema: DFSchemaRef,
574}
575
576// Manual implementation needed because of `schema` field. Comparison excludes this field.
577impl PartialOrd for DropView {

Callers 4

test_partial_ordFunction · 0.85
try_into_logical_planMethod · 0.85
try_from_logical_planMethod · 0.85

Calls

no outgoing calls

Tested by 1

test_partial_ordFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…