You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tl...@apache.org on 2022/08/25 06:59:48 UTC

[ignite] branch ignite-2.14 updated (35688da9d40 -> 5a59c22960d)

This is an automated email from the ASF dual-hosted git repository.

tledkov pushed a change to branch ignite-2.14
in repository https://gitbox.apache.org/repos/asf/ignite.git


    from 35688da9d40 IGNITE-17299 .NET: Fix StringComparer serialization (#10214)
     add 5a59c22960d IGNITE-12852 SQL command COPY: fix parsing quoted delimiters in CSV fields content (#10141)

No new revisions were added by this update.

Summary of changes:
 .../ignite/jdbc/thin/JdbcThinBulkLoadSelfTest.java | 428 ++++++++++++++++++++-
 .../src/test/resources/bulkload1_unmatched1.csv    |   2 +
 .../src/test/resources/bulkload1_unmatched2.csv    |   2 +
 .../src/test/resources/bulkload1_unmatched3.csv    |   2 +
 .../src/test/resources/bulkload1_unmatched4.csv    |   2 +
 .../src/test/resources/bulkload1_unmatched5.csv    |   2 +
 .../src/test/resources/bulkload_empty_numeric.csv  |   3 +
 .../bulkload_empty_numeric_with_null_string.csv    |   3 +
 .../bulkload_empty_numeric_with_trim_off.csv       |   3 +
 .../src/test/resources/bulkload_rfc4180_comma.csv  |   7 +
 .../src/test/resources/bulkload_rfc4180_pipe.csv   |   7 +
 .../processors/bulkload/BulkLoadCsvFormat.java     |  48 +++
 .../processors/bulkload/BulkLoadCsvParser.java     |   2 +-
 .../bulkload/pipeline/CsvLineProcessorBlock.java   | 170 ++++++--
 .../org/apache/ignite/internal/sql/SqlKeyword.java |   9 +
 .../internal/sql/command/SqlBulkLoadCommand.java   |  56 ++-
 .../internal/sql/SqlParserBulkLoadSelfTest.java    |  20 +
 .../indexing/src/test/resources/bulkload_bad.csv   |   4 +-
 .../indexing/src/test/resources/bulkload_ok.csv    |   4 +-
 19 files changed, 730 insertions(+), 44 deletions(-)
 create mode 100644 modules/clients/src/test/resources/bulkload1_unmatched1.csv
 create mode 100644 modules/clients/src/test/resources/bulkload1_unmatched2.csv
 create mode 100644 modules/clients/src/test/resources/bulkload1_unmatched3.csv
 create mode 100644 modules/clients/src/test/resources/bulkload1_unmatched4.csv
 create mode 100644 modules/clients/src/test/resources/bulkload1_unmatched5.csv
 create mode 100644 modules/clients/src/test/resources/bulkload_empty_numeric.csv
 create mode 100644 modules/clients/src/test/resources/bulkload_empty_numeric_with_null_string.csv
 create mode 100644 modules/clients/src/test/resources/bulkload_empty_numeric_with_trim_off.csv
 create mode 100644 modules/clients/src/test/resources/bulkload_rfc4180_comma.csv
 create mode 100644 modules/clients/src/test/resources/bulkload_rfc4180_pipe.csv