This is an automated email from the ASF dual-hosted git repository.
jonkeane pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from 6cacfff ARROW-13534: [C++] Improve csv chunker
add a52050a ARROW-13326: [R] [Archery] Add linting to dev CI
No new revisions were added by this update.
Summary of changes:
.github/workflows/comment_bot.yml | 16 +-
.github/workflows/dev.yml | 2 +-
ci/docker/linux-apt-lint.dockerfile | 39 +
r/.Rbuildignore | 1 +
r/.lintr | 31 +
r/R/array.R | 20 +-
r/R/arrow-datum.R | 12 +-
r/R/arrow-package.R | 43 +-
r/R/arrow-tabular.R | 5 +-
r/R/arrowExports.R | 1751 +++++++++++------------
r/R/buffer.R | 6 +-
r/R/chunked-array.R | 3 +-
r/R/compression.R | 5 +-
r/R/compute.R | 34 +-
r/R/csv.R | 77 +-
r/R/dataset-factory.R | 3 +-
r/R/dataset-format.R | 76 +-
r/R/dataset-partition.R | 5 +-
r/R/dataset-scan.R | 13 +-
r/R/dataset-write.R | 6 +-
r/R/dataset.R | 43 +-
r/R/dplyr-arrange.R | 2 +-
r/R/dplyr-collect.R | 2 +-
r/R/dplyr-eval.R | 10 +-
r/R/dplyr-filter.R | 4 +-
r/R/dplyr-functions.R | 20 +-
r/R/dplyr-group-by.R | 4 +-
r/R/dplyr-mutate.R | 6 +-
r/R/dplyr-select.R | 2 +-
r/R/dplyr-summarize.R | 4 +-
r/R/dplyr.R | 2 +-
r/R/duckdb.R | 8 +-
r/R/expression.R | 8 +-
r/R/feather.R | 7 +-
r/R/field.R | 4 +-
r/R/filesystem.R | 35 +-
r/R/flight.R | 3 +-
r/R/io.R | 25 +-
r/R/ipc_stream.R | 8 +-
r/R/json.R | 14 +-
r/R/message.R | 6 +-
r/R/metadata.R | 109 +-
r/R/parquet.R | 43 +-
r/R/python.R | 3 +-
r/R/record-batch-reader.R | 9 +-
r/R/record-batch-writer.R | 10 +-
r/R/record-batch.R | 4 +-
r/R/scalar.R | 8 +-
r/R/schema.R | 8 +-
r/R/table.R | 10 +-
r/R/type.R | 3 +-
r/R/util.R | 49 +-
r/lint.sh | 4 +
r/man/ChunkedArray.Rd | 22 -
r/man/Field.Rd | 5 -
r/man/FileFormat.Rd | 15 -
r/man/ParquetFileReader.Rd | 15 +-
r/man/RecordBatch.Rd | 11 -
r/man/RecordBatchReader.Rd | 37 -
r/man/RecordBatchWriter.Rd | 37 -
r/man/Scalar.Rd | 17 -
r/man/Schema.Rd | 9 -
r/man/Table.Rd | 11 -
r/man/array.Rd | 23 -
r/man/buffer.Rd | 9 -
r/man/call_function.Rd | 13 +-
r/man/codec_is_available.Rd | 5 -
r/man/copy_files.Rd | 10 -
r/man/data-type.Rd | 8 -
r/man/hive_partition.Rd | 5 -
r/man/list_compute_functions.Rd | 7 -
r/man/load_flight_server.Rd | 5 -
r/man/match_arrow.Rd | 25 -
r/man/open_dataset.Rd | 49 -
r/man/read_delim_arrow.Rd | 11 -
r/man/read_feather.Rd | 11 -
r/man/read_json_arrow.Rd | 12 -
r/man/read_parquet.Rd | 9 -
r/man/s3_bucket.Rd | 5 -
r/man/to_duckdb.Rd | 19 -
r/man/type.Rd | 10 -
r/man/unify_schemas.Rd | 7 -
r/man/value_counts.Rd | 6 -
r/man/write_csv_arrow.Rd | 7 -
r/man/write_feather.Rd | 7 -
r/man/write_ipc_stream.Rd | 7 -
r/man/write_parquet.Rd | 12 -
r/man/write_to_raw.Rd | 7 -
r/tests/testthat/helper-data.R | 17 +-
r/tests/testthat/helper-expectation.R | 24 +-
r/tests/testthat/helper-skip.R | 2 +-
r/tests/testthat/test-Array.R | 121 +-
r/tests/testthat/test-RecordBatch.R | 58 +-
r/tests/testthat/test-Table.R | 50 +-
r/tests/testthat/test-arrow-info.R | 2 +-
r/tests/testthat/test-arrow.R | 9 +-
r/tests/testthat/test-backwards-compatibility.R | 20 +-
r/tests/testthat/test-buffer-reader.R | 4 +-
r/tests/testthat/test-buffer.R | 2 +-
r/tests/testthat/test-chunked-array.R | 25 +-
r/tests/testthat/test-compute-aggregate.R | 14 +-
r/tests/testthat/test-compute-arith.R | 24 +-
r/tests/testthat/test-compute-vector.R | 4 +-
r/tests/testthat/test-csv.R | 56 +-
r/tests/testthat/test-data-type.R | 11 +-
r/tests/testthat/test-dataset.R | 123 +-
r/tests/testthat/test-dplyr-arrange.R | 2 +-
r/tests/testthat/test-dplyr-filter.R | 15 +-
r/tests/testthat/test-dplyr-lubridate.R | 9 +-
r/tests/testthat/test-dplyr-mutate.R | 27 +-
r/tests/testthat/test-dplyr.R | 269 ++--
r/tests/testthat/test-duckdb.R | 2 +-
r/tests/testthat/test-expression.R | 7 +-
r/tests/testthat/test-feather.R | 8 +-
r/tests/testthat/test-filesystem.R | 2 +-
r/tests/testthat/test-install-arrow.R | 2 +-
r/tests/testthat/test-json.R | 46 +-
r/tests/testthat/test-message.R | 4 +-
r/tests/testthat/test-metadata.R | 6 +-
r/tests/testthat/test-na-omit.R | 7 +-
r/tests/testthat/test-parquet.R | 13 +-
r/tests/testthat/test-python-flight.R | 1 -
r/tests/testthat/test-read-write.R | 6 +-
r/tests/testthat/test-s3-minio.R | 2 -
r/tests/testthat/test-s3.R | 23 +-
r/tests/testthat/test-scalar.R | 11 +-
r/tests/testthat/test-schema.R | 4 +-
r/tests/testthat/test-type.R | 3 +-
r/vignettes/developing.Rmd | 13 +
129 files changed, 2003 insertions(+), 2138 deletions(-)
create mode 100644 r/.lintr