Skip to content

Commit

Permalink
Merge pull request #97 from rustyconover/fix_error_message
Browse files Browse the repository at this point in the history
fix: error message error from batch to bind
  • Loading branch information
pdet authored Aug 2, 2024
2 parents e68903d + 308691f commit fcbd922
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 fcbd922

Please sign in to comment.