This is an automated email from the ASF dual-hosted git repository.
tkhurana pushed a change to branch PHOENIX-7170
in repository https://gitbox.apache.org/repos/asf/phoenix.git
from 3da5007e1c PHOENIX-7383 Unify in-memory representation of Conditional
TTL expressions and Literal TTL values (#1953)
add 11620e79dc PHOENIX-7391 Do not return tenant_id column when getting
columns list using PhoenixRuntime.generateColumnInfo
add f50da4e60b PHOENIX-7418 SystemExitRule errors out because of
SecurityManager deprecation / removal (#1996)
add 43b0971388 PHOENIX-7081 Replace /tmp with {java.io.tmpdir} in tests
add 9f31e3e1a9 PHOENIX-7411 Atomic Delete: PhoenixStatement API to return
row if single row is atomically deleted (#1985)
add dbb18ec710 PHOENIX-7420 Bump commons-io:commons-io from 2.11.0 to
2.14.0 (#1997)
add ad3d57bcee PHOENIX-7421 Checkstyle plugin fails in
phoenix-client-embedded module (#1998)
add 13ed99b7c8 PHOENIX-7422 Fix Flapper
TableTTLIT#testMinorCompactionShouldNotRetainCellsWhenMaxLookbackIsDisabled
(#1999)
add 82952b1c60 PHOENIX-7429 End2EndTestDriver should not extend
AbstractHBaseTool (#2003)
add 3342af7f5f PHOENIX-5117 : Return the count of rows scanned in HBase
(#1936)
add e72a57d037 PHOENIX-7432 getTable for PHYSICAL_TABLE link should use
common utility (#2005)
add 58879618ae PHOENIX-7431 Duplicate dependency on jackson in
phoenix-core (#2004)
add 05d50959ad PHOENIX-7428 Add usable error message in
BackwardCompatibilityIT (#2007)
add d05fd6cde9 PHOENIX-7427 PHOENIX-7418 breaks backwards compatibility
tests (#2009)
add 9464c7f6f3 PHOENIX-7282 Incorrect data in index column for
corresponding BIGINT type column in data table (#2001)
add 120a197577 PHOENIX-7440 TableSnapshotReadsMapReduceIT fails with HBase
2.6.1 (#2014)
add 382a429d15 PHOENIX-7439 Bump default HBase 2.6 version to 2.6.1 (#2011)
add 24960033cd PHOENIX-7447 Update maven-shade-plugin to 3.6.0 (#2016)
new 1cd57db430 Merge remote-tracking branch 'upstream/master' into
PHOENIX-7170
The 1 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:
bin/end2endTest.py | 36 ++-
.../phoenix-client-embedded/pom.xml | 5 +
phoenix-client-parent/phoenix-client-lite/pom.xml | 5 +
.../org/apache/phoenix/compile/QueryCompiler.java | 29 +-
.../apache/phoenix/compile/StatementContext.java | 12 +
.../org/apache/phoenix/execute/HashJoinPlan.java | 3 +
.../org/apache/phoenix/execute/MutationState.java | 12 +
.../phoenix/iterate/MergeSortResultIterator.java | 5 +-
.../phoenix/iterate/OffsetResultIterator.java | 1 -
.../phoenix/iterate/OrderedResultIterator.java | 3 +-
.../org/apache/phoenix/jdbc/PhoenixResultSet.java | 9 +-
.../org/apache/phoenix/jdbc/PhoenixStatement.java | 16 +-
.../apache/phoenix/optimize/QueryOptimizer.java | 3 +-
.../org/apache/phoenix/schema/MetaDataClient.java | 6 +-
.../org/apache/phoenix/util/PhoenixRuntime.java | 14 +-
.../hbase/regionserver/ScannerContextUtil.java | 26 +-
.../cache/aggcache/SpillableGroupByCache.java | 6 +
.../phoenix/coprocessor/BaseRegionScanner.java | 7 +-
.../coprocessor/BaseScannerRegionObserver.java | 4 +-
.../phoenix/coprocessor/DelegateRegionScanner.java | 32 +-
.../GroupedAggregateRegionObserver.java | 49 ++-
.../phoenix/coprocessor/HashJoinRegionScanner.java | 28 +-
.../coprocessor/IndexRebuildRegionScanner.java | 5 +
.../coprocessor/IndexRepairRegionScanner.java | 5 +
.../phoenix/coprocessor/IndexerRegionScanner.java | 5 +
.../phoenix/coprocessor/MetaDataEndpointImpl.java | 29 +-
.../phoenix/coprocessor/PagingRegionScanner.java | 55 +++-
.../coprocessor/PhoenixTTLRegionObserver.java | 6 +-
.../phoenix/coprocessor/TTLRegionScanner.java | 38 ++-
.../coprocessor/UncoveredIndexRegionScanner.java | 5 +
.../UncoveredLocalIndexRegionScanner.java | 5 +
.../UngroupedAggregateRegionObserver.java | 24 ++
.../UngroupedAggregateRegionScanner.java | 17 +-
.../phoenix/hbase/index/IndexRegionObserver.java | 19 +-
.../apache/phoenix/index/GlobalIndexChecker.java | 19 +-
.../iterate/NonAggregateRegionScannerFactory.java | 92 +++++-
.../phoenix/iterate/RegionScannerFactory.java | 33 +-
.../iterate/RegionScannerResultIterator.java | 23 +-
.../apache/phoenix/mapreduce/OrphanViewTool.java | 7 +-
phoenix-core/pom.xml | 10 -
.../phoenix/end2end/AlterAddCascadeIndexIT.java | 61 +++-
.../end2end/BackwardCompatibilityTestUtil.java | 12 +-
.../org/apache/phoenix/end2end/CreateTableIT.java | 4 +-
.../apache/phoenix/end2end/End2EndTestDriver.java | 103 +++++--
.../apache/phoenix/end2end/OnDuplicateKey2IT.java | 180 ++++++++++-
.../apache/phoenix/end2end/OrphanViewToolIT.java | 31 +-
.../end2end/ParameterizedIndexUpgradeToolIT.java | 26 +-
.../apache/phoenix/end2end/PhoenixRuntimeIT.java | 27 +-
.../org/apache/phoenix/end2end/ServerPagingIT.java | 40 +++
.../end2end/TableSnapshotReadsMapReduceIT.java | 62 ++--
.../org/apache/phoenix/end2end/TableTTLIT.java | 42 +--
.../phoenix/monitoring/CountRowsScannedIT.java | 332 +++++++++++++++++++++
.../src/it/resources/scripts/execute_query.sh | 10 +-
.../java/org/apache/phoenix/SystemExitRule.java | 12 +-
.../hbase/index/covered/NonTxIndexBuilderTest.java | 5 +
pom.xml | 27 +-
56 files changed, 1424 insertions(+), 258 deletions(-)
create mode 100644
phoenix-core/src/it/java/org/apache/phoenix/monitoring/CountRowsScannedIT.java