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

Class DropTable

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

Source from the content-addressed store, hash-verified

542/// Drops a table.
543#[derive(Debug, Clone, PartialEq, Eq, Hash)]
544pub struct DropTable {
545 /// The table name
546 pub name: TableReference,
547 /// If the table exists
548 pub if_exists: bool,
549 /// Dummy schema
550 pub schema: DFSchemaRef,
551}
552
553// Manual implementation needed because of `schema` field. Comparison excludes this field.
554impl PartialOrd for DropTable {

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…