Skip to content

Commit

Permalink
fix(r/adbcsnowflake): Don't use test snowflake query that returns a d…
Browse files Browse the repository at this point in the history
…ecimal type (#1164)

...because nanoarrow can't convert them without arrow.
  • Loading branch information
paleolimbot authored Oct 5, 2023
1 parent 79503e9 commit 79172ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test_that("default options can open a database and execute a query", {

adbcdrivermanager::adbc_statement_set_sql_query(
stmt,
"SELECT * FROM REGION ORDER BY R_REGIONKEY"
"SELECT R_REGIONKEY FROM REGION ORDER BY R_REGIONKEY"
)

stream <- nanoarrow::nanoarrow_allocate_array_stream()
Expand Down

0 comments on commit 79172ea

Please sign in to comment.