Return true if there is a table provider available for "schema.table"
(&self, schema: &str, table: &str)
| 2663 | |
| 2664 | /// Return true if there is a table provider available for "schema.table" |
| 2665 | fn has_table(&self, schema: &str, table: &str) -> bool { |
| 2666 | let tables_reference = TableReference::Partial { |
| 2667 | schema: schema.into(), |
| 2668 | table: table.into(), |
| 2669 | }; |
| 2670 | self.context_provider |
| 2671 | .get_table_source(tables_reference) |
| 2672 | .is_ok() |
| 2673 | } |
| 2674 | |
| 2675 | fn validate_transaction_kind( |
| 2676 | &self, |
no test coverage detected