Skip to content

Commit

Permalink
Remove LFS files because of GH quotas
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Feb 20, 2023
1 parent bd2c967 commit f399c30
Show file tree
Hide file tree
Showing 320 changed files with 175 additions and 47 deletions.
3 changes: 0 additions & 3 deletions .gitattributes

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -64,8 +62,6 @@ jobs:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -100,8 +96,6 @@ jobs:
target: [x86_64, i686]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -132,8 +126,6 @@ jobs:
target: [aarch64, armv7, s390x, ppc64le, ppc64]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -173,8 +165,6 @@ jobs:
- i686-unknown-linux-musl
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -213,8 +203,6 @@ jobs:
arch: armv7
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -257,8 +245,6 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: pypy${{ matrix.python-version }}
Expand Down Expand Up @@ -288,8 +274,6 @@ jobs:
python: ["3.7", "3.x"]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -56,8 +54,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -76,8 +72,6 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
125 changes: 123 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ criterion = ">=0.4.0"
arrow = { version = ">=32.0.0", features = ["ipc"]}
arrow-ipc = ">=33.0.0"
postgres-types = {version = ">=0.2.4", features = ["with-chrono-0_4"]}
ureq = "2.6.2"

[[bench]]
name = "yellow_cab_dataset"
Expand Down
29 changes: 24 additions & 5 deletions core/benches/yellow_cab_dataset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,33 @@ use criterion::{black_box, criterion_group, criterion_main, Criterion};
use parquet::arrow::arrow_reader::{ParquetRecordBatchReader, ParquetRecordBatchReaderBuilder};
use pgpq::ArrowToPostgresBinaryEncoder;
use std::fs;
use std::fs::File;
use std::io;
use std::path::PathBuf;
use ureq;

fn download_dataset() -> File {
let path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.parent()
.unwrap()
.parent()
.unwrap()
.join("yellow_tripdata_2022-01.parquet");
if !path.exists() {
let mut file = File::create(path.clone()).expect("failed to create file");
let mut resp = ureq::get(
"https://d37ci6vzurychx.cloudfront.net/trip-data/yellow_tripdata_2022-01.parquet",
)
.call()
.expect("request failed");
io::copy(&mut resp.into_reader(), &mut file).expect("failed to copy content");
}
let mut file = File::open(path.clone()).expect("failed to create file");
file
}

fn setup(row_limit: Option<usize>) -> (Vec<RecordBatch>, Schema) {
let file = fs::File::open(
PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/testdata/yellow_tripdata_2022-01.parquet"),
)
.unwrap();
let mut file = download_dataset();
let builder = ParquetRecordBatchReaderBuilder::try_new(file).unwrap();
let mut reader = builder.build().unwrap();
let schema = Schema::new(reader.schema().fields().clone());
Expand Down
Binary file modified core/tests/snapshots/binary.bin
Binary file not shown.
Binary file modified core/tests/snapshots/binary_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/bool_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/duration_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/float32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/float32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/float64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/float64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int8.bin
Binary file not shown.
Binary file modified core/tests/snapshots/int8_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/large_binary.bin
Binary file not shown.
Binary file modified core/tests/snapshots/large_binary_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/large_string.bin
Binary file not shown.
Binary file modified core/tests/snapshots/large_string_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_binary.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_binary_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_bool.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_bool_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_duration_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_float32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_float32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_float64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_float64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int8.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_int8_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_large_binary.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_large_binary_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_large_string.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_large_string_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_binary.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_binary_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_bool.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_bool_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_duration_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_float32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_float32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_float64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_float64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int64.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int64_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int8.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_int8_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_large_binary.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_large_string.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_string.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_string_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_time_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_ms_notz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_ms_tz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_s_notz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_s_tz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_us_notz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_timestamp_us_tz.bin
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint8.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_nullable_list_uint8_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_string.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_string_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_time_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_ms_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_ms_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_ms_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_ms_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_s_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_s_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_s_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_s_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_us_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_us_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_us_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_timestamp_us_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint8.bin
Binary file not shown.
Binary file modified core/tests/snapshots/list_uint8_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/string.bin
Binary file not shown.
Binary file modified core/tests/snapshots/string_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_ms.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_ms_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_s.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_s_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_us.bin
Binary file not shown.
Binary file modified core/tests/snapshots/time_us_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_ms_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_ms_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_ms_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_ms_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_s_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_s_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_s_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_s_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_us_notz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_us_notz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_us_tz.bin
Binary file not shown.
Binary file modified core/tests/snapshots/timestamp_us_tz_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/uint16.bin
Binary file not shown.
Binary file modified core/tests/snapshots/uint16_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/uint32.bin
Binary file not shown.
Binary file modified core/tests/snapshots/uint32_nullable.bin
Binary file not shown.
Binary file modified core/tests/snapshots/uint8_nullable.bin
Binary file not shown.
Binary file modified core/tests/testdata/binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/bool.arrow
Binary file not shown.
Binary file modified core/tests/testdata/bool_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/duration_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/float32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/float32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/float64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/float64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int16.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int16_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int8.arrow
Binary file not shown.
Binary file modified core/tests/testdata/int8_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/large_binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/large_binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/large_string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/large_string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_bool.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_bool_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_duration_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_float32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_float32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_float64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_float64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int16.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int16_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int8.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_int8_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_large_binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_large_binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_large_string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_large_string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_bool.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_bool_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_duration_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_float32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_float32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_float64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_float64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int16.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int16_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int64.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int64_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int8.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_int8_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_large_binary.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_large_binary_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_large_string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_large_string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_time_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_ms_notz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_ms_tz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_s_notz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_s_tz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_us_notz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_timestamp_us_tz.arrow
Binary file not shown.
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint16.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint16_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint8.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_nullable_list_uint8_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_time_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_ms_notz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_ms_notz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_ms_tz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_ms_tz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_s_notz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_s_notz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_s_tz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_s_tz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_us_notz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_us_notz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_us_tz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_timestamp_us_tz_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint16.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint16_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint32.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint32_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint8.arrow
Binary file not shown.
Binary file modified core/tests/testdata/list_uint8_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/string.arrow
Binary file not shown.
Binary file modified core/tests/testdata/string_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_ms.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_ms_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_s.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_s_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_us.arrow
Binary file not shown.
Binary file modified core/tests/testdata/time_us_nullable.arrow
Binary file not shown.
Binary file modified core/tests/testdata/timestamp_ms_notz.arrow
Binary file not shown.
Binary file modified core/tests/testdata/timestamp_ms_notz_nullable.arrow
Binary file not shown.
Loading

0 comments on commit f399c30

Please sign in to comment.