Method
get_table_source
(
&self,
name: TableReference,
)
Source from the content-addressed store, hash-verified
| 1951 | } |
| 1952 | |
| 1953 | fn get_table_source( |
| 1954 | &self, |
| 1955 | name: TableReference, |
| 1956 | ) -> datafusion_common::Result<Arc<dyn TableSource>> { |
| 1957 | let name = self.state.resolve_table_ref(name); |
| 1958 | self.tables |
| 1959 | .get(&name) |
| 1960 | .cloned() |
| 1961 | .ok_or_else(|| plan_datafusion_err!("table '{name}' not found")) |
| 1962 | } |
| 1963 | |
| 1964 | fn get_table_function_source( |
| 1965 | &self, |
Callers
nothing calls this directly
Tested by
no test coverage detected