otegami opened a new issue, #4417:
URL: https://github.com/apache/arrow-adbc/issues/4417

   ### What happened?
   
   `Connection#ingest` calls `open_statment` — a typo for `open_statement` — so 
it
   always raises `NoMethodError`.
   
   ### Stack Trace
   
   _No response_
   
   ### How can we reproduce the bug?
   
   ```ruby
   require "adbc"
   
   ADBC::Database.open(driver: "adbc_driver_sqlite", uri: ":memory:") do 
|database|
     database.connect do |connection|
       connection.ingest("data", Arrow::Table.new(number: 
Arrow::Int64Array.new([1])))
       # => NoMethodError: undefined method 'open_statment' 
(connection-operations.rb)
     end
   end
   ```
   
   ### Environment/Setup
   
   Current main


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to