We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e42c8 commit 9cea1fbCopy full SHA for 9cea1fb
src/common/schema.rs
@@ -15,7 +15,7 @@
15
// specific language governing permissions and limitations
16
// under the License.
17
18
-use std::any::Any;
+use std::{any::Any, borrow::Cow};
19
20
use datafusion::arrow::datatypes::SchemaRef;
21
use datafusion::logical_expr::{Expr, TableProviderFilterPushDown, TableSource};
@@ -189,7 +189,7 @@ impl TableSource for SqlTableSource {
189
.collect()
190
}
191
192
- fn get_logical_plan(&self) -> Option<&datafusion::logical_expr::LogicalPlan> {
+ fn get_logical_plan(&self) -> Option<Cow<datafusion::logical_expr::LogicalPlan>> {
193
None
194
195
0 commit comments