We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NULL
NA_integer_
It's more idiomatic to map to logical.
duckdb <- asNamespace("duckdb") drv <- duckdb::duckdb() con <- DBI::dbConnect(drv) experimental <- FALSE df1 <- tibble::tibble(a = 1) rel1 <- duckdb$rel_from_df(con, df1, experimental = experimental) rel2 <- duckdb$rel_project( rel1, list( { tmp_expr <- duckdb$expr_reference("a") duckdb$expr_set_alias(tmp_expr, "a") tmp_expr }, { tmp_expr <- if ("experimental" %in% names(formals(duckdb$expr_constant))) { duckdb$expr_constant(NA, experimental = experimental) } else { duckdb$expr_constant(NA) } duckdb$expr_set_alias(tmp_expr, "b") tmp_expr } ) ) rel2 #> DuckDB Relation: #> --------------------- #> --- Relation Tree --- #> --------------------- #> Projection [a as a, NULL as b] #> r_dataframe_scan(0x11e727dd0) #> #> --------------------- #> -- Result Columns -- #> --------------------- #> - a (DOUBLE) #> - b (INTEGER) dput(duckdb$rel_to_altrep(rel2)) #> structure(list(a = 1, b = NA_integer_), row.names = c(NA, -1L #> ), class = "data.frame") DBI::dbDisconnect(con)
Created on 2024-05-04 with reprex v2.1.0
The text was updated successfully, but these errors were encountered:
NA
Upstream: krlmlr/duckdb@40efc4b
Sorry, something went wrong.
Next try: krlmlr/duckdb@4e17c71
Keep pushing: https://github.com/krlmlr/duckdb/actions/runs/9340041792
Too many things fail in duckdb when this is changed. Let's revisit what is truly necessary for duckplyr.
Successfully merging a pull request may close this issue.
It's more idiomatic to map to logical.
Created on 2024-05-04 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: