| 542 | /// Drops a table. |
| 543 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 544 | pub 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. |
| 554 | impl PartialOrd for DropTable { |
no outgoing calls
no test coverage detected
searching dependent graphs…