Skip to content
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

Bump rust-polars to 0.43.1 #1230

Merged
merged 34 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7811771
Bump rust-polars to 0.43.0 [skip ci]
etiennebacher Sep 11, 2024
b43b404
0.43.1 [skip ci]
etiennebacher Sep 12, 2024
f2a88d2
start fixing [skip ci]
etiennebacher Sep 13, 2024
eea3fdf
some fixes for series [skip ci]
etiennebacher Sep 13, 2024
16ce315
more [skip ci]
etiennebacher Sep 13, 2024
52fa1b0
more [skip ci]
etiennebacher Sep 13, 2024
5bb55fd
more [skip ci]
etiennebacher Sep 14, 2024
1329c66
more [skip ci]
etiennebacher Sep 14, 2024
a8ffb21
more [skip ci]
etiennebacher Sep 14, 2024
79da8b3
remove some unused imports [skip ci]
etiennebacher Sep 14, 2024
45a03e8
fix: fix all rust lib compile errors
eitsupi Sep 14, 2024
cd57d8c
chore: bump rust toolchain
eitsupi Sep 14, 2024
1443412
chore: bump lib version
eitsupi Sep 14, 2024
b680408
fix most failures [skip ci]
etiennebacher Sep 14, 2024
57d64c2
Bump rust-polars to 0.43.0 [skip ci]
etiennebacher Sep 11, 2024
71c9149
0.43.1 [skip ci]
etiennebacher Sep 12, 2024
7bf4e98
start fixing [skip ci]
etiennebacher Sep 13, 2024
2b1f015
some fixes for series [skip ci]
etiennebacher Sep 13, 2024
74198c5
more [skip ci]
etiennebacher Sep 13, 2024
6e617a1
more [skip ci]
etiennebacher Sep 13, 2024
a587270
more [skip ci]
etiennebacher Sep 14, 2024
410c41a
more [skip ci]
etiennebacher Sep 14, 2024
a93b5ec
more [skip ci]
etiennebacher Sep 14, 2024
0598497
remove some unused imports [skip ci]
etiennebacher Sep 14, 2024
d2735d3
fix: fix all rust lib compile errors
eitsupi Sep 14, 2024
a3cf492
chore: bump rust toolchain
eitsupi Sep 14, 2024
12b821d
chore: bump lib version
eitsupi Sep 14, 2024
0febcba
fix most failures [skip ci]
etiennebacher Sep 14, 2024
39e27d5
Merge branch 'rust-polars-0.43.0' of https://github.com/pola-rs/r-pol…
etiennebacher Sep 20, 2024
6b7f9b6
fix for literal of length 1
etiennebacher Sep 21, 2024
a8d2382
news [skip ci]
etiennebacher Sep 21, 2024
1ed06e3
fix failing examples
etiennebacher Sep 21, 2024
a313e10
remove memory_map test
etiennebacher Sep 21, 2024
9ae97ec
bump toolchain to try fixing compilation error on macos
etiennebacher Sep 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ Collate:
Config/rextendr/version: 0.3.1
VignetteBuilder: knitr
Config/polars/LibVersion: 0.42.2
Config/polars/RustToolchainVersion: nightly-2024-07-26
Config/polars/RustToolchainVersion: nightly-2024-08-26
2 changes: 1 addition & 1 deletion R/extendr-wrappers.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ concat_series <- function(l, rechunk, to_supertypes) .Call(wrap__concat_series,

new_from_csv <- function(path, has_header, separator, comment_prefix, quote_char, skip_rows, dtypes, null_values, ignore_errors, cache, infer_schema_length, n_rows, encoding, low_memory, rechunk, skip_rows_after_header, row_index_name, row_index_offset, try_parse_dates, eol_char, raise_if_empty, truncate_ragged_lines) .Call(wrap__new_from_csv, path, has_header, separator, comment_prefix, quote_char, skip_rows, dtypes, null_values, ignore_errors, cache, infer_schema_length, n_rows, encoding, low_memory, rechunk, skip_rows_after_header, row_index_name, row_index_offset, try_parse_dates, eol_char, raise_if_empty, truncate_ragged_lines)

import_arrow_ipc <- function(path, n_rows, cache, rechunk, row_name, row_index, memory_map, hive_partitioning, hive_schema, try_parse_hive_dates, include_file_paths) .Call(wrap__import_arrow_ipc, path, n_rows, cache, rechunk, row_name, row_index, memory_map, hive_partitioning, hive_schema, try_parse_hive_dates, include_file_paths)
import_arrow_ipc <- function(path, n_rows, cache, rechunk, row_name, row_index, hive_partitioning, hive_schema, try_parse_hive_dates, include_file_paths) .Call(wrap__import_arrow_ipc, path, n_rows, cache, rechunk, row_name, row_index, hive_partitioning, hive_schema, try_parse_hive_dates, include_file_paths)

new_from_ndjson <- function(path, infer_schema_length, batch_size, n_rows, low_memory, rechunk, row_index_name, row_index_offset, ignore_errors) .Call(wrap__new_from_ndjson, path, infer_schema_length, batch_size, n_rows, low_memory, rechunk, row_index_name, row_index_offset, ignore_errors)

Expand Down
Loading
Loading