Skip to content

Commit

Permalink
fix: error message error from batch to bind
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyconover committed Jul 27, 2024
1 parent e68903d commit 308691f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/to_substrait.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ substrait::Rel *DuckDBToSubstrait::TransformGet(LogicalOperator &dop) {
auto &dget = (LogicalGet &)dop;

if (!dget.function.get_bind_info) {
throw NotImplementedException("This Scanner Type can't be used in substrait because a get batch info "
throw NotImplementedException("This Scanner Type can't be used in substrait because a get bind info "
"is not yet implemented");
}
auto bind_info = dget.function.get_bind_info(dget.bind_data.get());
Expand Down

0 comments on commit 308691f

Please sign in to comment.