This is an automated email from the ASF dual-hosted git repository.
gokcen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git.
from 7419f9d PHOENIX-6420 Wrong result when conditional and regular
upserts are passed in the same commit batch
new 8644dab PHOENIX-6247 Separating logical and physical table names
new 82d346c Add more tests for PHOENIX-6247
The 2 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:
.../apache/phoenix/end2end/CsvBulkLoadToolIT.java | 78 ++-
.../phoenix/end2end/IndexScrutinyToolBaseIT.java | 13 +-
.../phoenix/end2end/LogicalTableNameBaseIT.java | 550 +++++++++++++++++++++
.../end2end/LogicalTableNameExtendedIT.java | 276 +++++++++++
.../apache/phoenix/end2end/LogicalTableNameIT.java | 444 +++++++++++++++++
.../java/org/apache/phoenix/end2end/ViewTTLIT.java | 28 +-
.../apache/phoenix/end2end/join/HashJoinIT.java | 39 +-
.../phoenix/coprocessor/MetaDataEndpointImpl.java | 97 +++-
.../phoenix/jdbc/PhoenixDatabaseMetaData.java | 3 +
.../mapreduce/index/IndexScrutinyMapper.java | 2 +-
.../phoenix/query/ConnectionQueryServicesImpl.java | 32 +-
.../org/apache/phoenix/query/QueryConstants.java | 2 +
.../org/apache/phoenix/schema/DelegateTable.java | 10 +
.../org/apache/phoenix/schema/MetaDataClient.java | 96 +++-
.../org/apache/phoenix/schema/PMetaDataImpl.java | 13 +
.../java/org/apache/phoenix/schema/PTable.java | 15 +
.../java/org/apache/phoenix/schema/PTableImpl.java | 299 +++++++----
.../org/apache/phoenix/schema/TableProperty.java | 6 +
.../java/org/apache/phoenix/util/MetaDataUtil.java | 19 +-
.../java/org/apache/phoenix/util/SchemaUtil.java | 4 +
.../java/org/apache/phoenix/util/UpgradeUtil.java | 4 +-
.../java/org/apache/phoenix/util/ViewUtil.java | 1 +
phoenix-core/src/main/protobuf/PTable.proto | 2 +
23 files changed, 1858 insertions(+), 175 deletions(-)
create mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/LogicalTableNameBaseIT.java
create mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/LogicalTableNameExtendedIT.java
create mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/LogicalTableNameIT.java