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

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


    from ba7c64f  [mini-cluster] built-in NTP client configuration mode
     new 961888d  KUDU-2483 Integrate BlockBloomFilter with ColumnPredicate on 
server side
     new 9285726  [util] Add cloning support to BlockBloomFilter and associated 
allocator
     new 9668525  [util] Add a function to generate random unique 32-bit/64-bit 
integers
     new 3e6d622  [client] KUDU-2483 Add IN Bloom filter predicate to C++ client

The 4 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:
 src/kudu/client/CMakeLists.txt                     |   2 +
 src/kudu/client/client.cc                          |  43 +++++
 src/kudu/client/client.h                           |  39 ++++-
 .../client/{tablet-internal.h => hash-internal.h}  |  21 +--
 src/kudu/{tablet/delta_key.cc => client/hash.cc}   |  39 +++--
 .../client/{table_creator-internal.cc => hash.h}   |  21 ++-
 src/kudu/client/predicate-test.cc                  | 188 ++++++++++++++++++++-
 src/kudu/client/scan_predicate-internal.h          |  56 ++++++
 src/kudu/client/scan_predicate.cc                  | 140 +++++++++++++++
 src/kudu/client/scan_predicate.h                   | 106 ++++++++++++
 src/kudu/client/value.h                            |   1 +
 src/kudu/common/column_predicate-test.cc           | 164 ++++++++----------
 src/kudu/common/column_predicate.cc                |  28 +--
 src/kudu/common/column_predicate.h                 |  82 ++-------
 src/kudu/common/common.proto                       |  12 +-
 src/kudu/common/wire_protocol-test.cc              |  72 +++-----
 src/kudu/common/wire_protocol.cc                   |  64 +++----
 src/kudu/tablet/cfile_set-test.cc                  | 173 ++++++++++---------
 src/kudu/util/CMakeLists.txt                       |  15 ++
 src/kudu/util/block_bloom_filter-test.cc           |  40 ++++-
 src/kudu/util/block_bloom_filter.cc                | 141 ++++++++++++++--
 src/kudu/util/block_bloom_filter.h                 | 113 +++++++++++--
 ...{mem_tracker.proto => block_bloom_filter.proto} |  32 ++--
 src/kudu/util/hash.proto                           |   1 +
 src/kudu/util/hash_util-test.cc                    |  16 +-
 src/kudu/util/hash_util.h                          |  28 ++-
 src/kudu/util/random.h                             |  15 ++
 src/kudu/util/random_util-test.cc                  |  34 ++++
 src/kudu/util/random_util.h                        |  28 ++-
 29 files changed, 1255 insertions(+), 459 deletions(-)
 copy src/kudu/client/{tablet-internal.h => hash-internal.h} (73%)
 copy src/kudu/{tablet/delta_key.cc => client/hash.cc} (50%)
 copy src/kudu/client/{table_creator-internal.cc => hash.h} (80%)
 copy src/kudu/util/{mem_tracker.proto => block_bloom_filter.proto} (56%)

Reply via email to