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

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


    from a148517  IMPALA-9787: fix spinning thread with memory-based table 
invalidation
     new b67c090  IMPALA-9692 (part 2): Refactor parts of TExecPlanFragmentInfo 
to protobuf
     new f39ddb1  IMPALA-9761: Fix GCC7 ambiguous else warning for gtest macros
     new 4cc1b4a  IMPALA-9415: Switch result set size calculations from 
capacity() to size()
     new 227da84  IMPALA-9781: Fix GCC 7 unaligned 128-bit loads / stores

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:
 be/src/benchmarks/expr-benchmark.cc               |  7 +-
 be/src/benchmarks/hash-benchmark.cc               |  5 +-
 be/src/codegen/llvm-codegen-test.cc               |  6 +-
 be/src/exec/blocking-join-node.cc                 | 16 +++--
 be/src/exec/data-sink.h                           |  3 +-
 be/src/exec/hbase-scan-node.cc                    | 16 ++---
 be/src/exec/hbase-table-sink.cc                   |  5 +-
 be/src/exec/hbase-table-sink.h                    |  4 +-
 be/src/exec/hdfs-scan-node-base.cc                | 66 ++++++++++---------
 be/src/exec/hdfs-scan-node-base.h                 |  2 +-
 be/src/exec/hdfs-table-sink.cc                    |  5 +-
 be/src/exec/hdfs-table-sink.h                     |  4 +-
 be/src/exec/kudu-scan-node-base.cc                |  9 +--
 be/src/exec/kudu-table-sink.cc                    |  5 +-
 be/src/exec/kudu-table-sink.h                     |  4 +-
 be/src/exec/nested-loop-join-builder.cc           |  6 +-
 be/src/exec/nested-loop-join-builder.h            |  4 +-
 be/src/exec/parquet/parquet-common-test.cc        |  8 ++-
 be/src/exec/partitioned-hash-join-builder.cc      |  5 +-
 be/src/exec/partitioned-hash-join-builder.h       |  4 +-
 be/src/exec/plan-root-sink.cc                     |  7 +-
 be/src/exec/plan-root-sink.h                      |  4 +-
 be/src/exec/scan-node.h                           |  7 +-
 be/src/exprs/expr-codegen-test.cc                 |  6 +-
 be/src/exprs/slot-ref.cc                          |  5 +-
 be/src/rpc/CMakeLists.txt                         |  2 +
 be/src/runtime/buffered-tuple-stream-test.cc      |  4 +-
 be/src/runtime/bufferpool/buffer-pool-test.cc     |  8 ++-
 be/src/runtime/coordinator-backend-state.cc       | 35 ++++++----
 be/src/runtime/data-stream-test.cc                | 40 ++++++------
 be/src/runtime/fragment-instance-state.cc         | 34 +++++-----
 be/src/runtime/fragment-instance-state.h          | 13 ++--
 be/src/runtime/fragment-state.cc                  | 52 ++++++++-------
 be/src/runtime/fragment-state.h                   | 30 ++++++---
 be/src/runtime/io/disk-io-mgr-test.cc             |  4 +-
 be/src/runtime/krpc-data-stream-sender.cc         | 60 ++++++++---------
 be/src/runtime/krpc-data-stream-sender.h          |  8 +--
 be/src/runtime/query-state.cc                     | 37 +++++++----
 be/src/runtime/row-batch.cc                       | 10 +--
 be/src/runtime/runtime-state.cc                   | 24 ++++---
 be/src/runtime/runtime-state.h                    | 18 +++--
 be/src/runtime/test-env.cc                        | 16 +++--
 be/src/runtime/timestamp-test.cc                  | 12 ++--
 be/src/scheduling/query-schedule.h                |  7 +-
 be/src/scheduling/scheduler-test-util.cc          | 20 +++---
 be/src/scheduling/scheduler-test-util.h           |  3 +-
 be/src/scheduling/scheduler-test.cc               | 34 +++++-----
 be/src/scheduling/scheduler.cc                    | 80 ++++++++++++++++-------
 be/src/scheduling/scheduler.h                     |  6 +-
 be/src/service/fe-support.cc                      |  5 +-
 be/src/service/query-result-set.cc                |  4 +-
 be/src/testutil/cpu-util.h                        |  4 +-
 be/src/util/CMakeLists.txt                        |  1 +
 be/src/util/compression-util.cc                   | 64 ++++++++++++++++++
 be/src/util/{flat_buffer.h => compression-util.h} | 14 ++--
 be/src/util/container-util.h                      |  8 +++
 be/src/util/decimal-util.h                        |  3 +-
 be/src/util/dict-encoding.h                       |  5 +-
 be/src/util/uid-util.h                            |  6 ++
 common/protobuf/CMakeLists.txt                    |  2 +-
 common/protobuf/common.proto                      | 21 ++++--
 common/protobuf/control_service.proto             | 73 +++++++++++++++++++++
 common/protobuf/planner.proto                     | 76 +++++++++++++++++++++
 common/protobuf/row_batch.proto                   |  2 +-
 common/thrift/ImpalaInternalService.thrift        | 58 ++--------------
 common/thrift/PlanNodes.thrift                    |  8 ++-
 66 files changed, 715 insertions(+), 409 deletions(-)
 create mode 100644 be/src/util/compression-util.cc
 copy be/src/util/{flat_buffer.h => compression-util.h} (72%)
 create mode 100644 common/protobuf/planner.proto

Reply via email to