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

granthenke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.


    from b984851  [test] fix flake in TsTabletManagerITest::TestTableStats
     new 731f5f3  KUDU-1563. Add an INSERT_IGNORE operation
     new 14234a6  [java] KUDU-1563. Add support for INSERT_IGNORE
     new 48709de  [python] KUDU-1563. Add support for INSERT_IGNORE

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../kudu/client/{Insert.java => InsertIgnore.java} |   9 +-
 .../java/org/apache/kudu/client/KuduTable.java     |  10 ++
 .../java/org/apache/kudu/client/Operation.java     |   3 +-
 .../org/apache/kudu/client/TestKuduSession.java    |  75 +++++++++++++
 python/kudu/__init__.py                            |   2 +-
 python/kudu/client.pyx                             |  28 +++++
 python/kudu/libkudu_client.pxd                     |   5 +
 python/kudu/tests/test_client.py                   |  11 +-
 src/kudu/client/client-test.cc                     | 118 +++++++++++++++------
 src/kudu/client/client.cc                          |   4 +
 src/kudu/client/client.h                           |   6 ++
 src/kudu/client/write_op.cc                        |   9 ++
 src/kudu/client/write_op.h                         |  31 +++++-
 src/kudu/common/row_operations-test.cc             |   6 +-
 src/kudu/common/row_operations.cc                  |   3 +
 src/kudu/common/row_operations.h                   |   2 +-
 src/kudu/common/wire_protocol.proto                |   1 +
 src/kudu/integration-tests/fuzz-itest.cc           |  57 ++++++++--
 src/kudu/tablet/local_tablet_writer.h              |   4 +
 src/kudu/tablet/row_op.cc                          |   6 ++
 src/kudu/tablet/row_op.h                           |   4 +
 src/kudu/tablet/tablet-test-base.h                 |  16 ++-
 src/kudu/tablet/tablet-test.cc                     |  49 ++++++++-
 src/kudu/tablet/tablet.cc                          |  46 +++++---
 src/kudu/tablet/tablet.h                           |   4 +-
 src/kudu/tablet/tablet_bootstrap.cc                |   6 +-
 src/kudu/tablet/tablet_metrics.cc                  |   6 ++
 src/kudu/tablet/tablet_metrics.h                   |   1 +
 src/kudu/tablet/tablet_random_access-test.cc       |  44 +++++---
 src/kudu/tablet/transactions/transaction.cc        |   2 +
 src/kudu/tablet/transactions/transaction.h         |   1 +
 src/kudu/tablet/transactions/write_transaction.cc  |  12 ++-
 32 files changed, 495 insertions(+), 86 deletions(-)
 copy java/kudu-client/src/main/java/org/apache/kudu/client/{Insert.java => 
InsertIgnore.java} (82%)

Reply via email to