-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[r] Move parse_query_condition_new
-> parse_query_condition
#3174
Conversation
fdcc4a9
to
d36731f
Compare
d36731f
to
b224f48
Compare
@@ -15,33 +15,24 @@ test_that("Arrow Interface from SOMAArrayReader", { | |||
tb1 <- soma_array_to_arrow_table(soma_array_reader(uri, columns)) | |||
expect_equal(tb1$num_rows, 2638) | |||
|
|||
arr <- tiledb_array(uri) # need array for schema access to qc parser |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
already tested in tests/testthat/test-query-condition.R
# Unlike in pyarrow there is no arrow::large_string | ||
arrow::field("utf8", arrow::utf8()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is arrow::large_utf8()
in Arrow-R
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, and I test large_utf8
on this PR -- thank you!
b224f48
to
562b0f7
Compare
parse_query_condition_new
-> parse_query_condition
parse_query_condition_new
-> parse_query_condition
562b0f7
to
4b6c4d3
Compare
Issue and/or context: Issue #3051 / [sc-55672]. Stack: #3162, #3163, this.
Changes:
Replaces the existing
parse_query_condition
, which uses TileDB-R, with the one currently namedparse_query_condition_new
which useslibtiledbsoma
.Notes for Reviewer:
This or #3163 can be landed in either order.