You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by vj...@apache.org on 2023/07/15 17:50:09 UTC

[phoenix] branch PHOENIX-6883-feature updated (68693129d1 -> 3a4630bf21)

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

vjasani pushed a change to branch PHOENIX-6883-feature
in repository https://gitbox.apache.org/repos/asf/phoenix.git


    from 68693129d1 PHOENIX-6943 Add MetadataCache on each region server. (#1637)
     add 61180892c2 PHOENIX-6141 : Ensure consistency between SYSTEM.CATALOG and SYSTEM.CHILD_LINK (#1575)
     new 3a4630bf21 Merge branch 'master' into PHOENIX-6883-feature

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:
 .../end2end/ConnectionQueryServicesTestImpl.java   |  19 +-
 .../phoenix/end2end/OrphanChildLinkRowsIT.java     | 270 +++++++++++++++++++++
 .../org/apache/phoenix/end2end/ViewMetadataIT.java |  19 +-
 .../coprocessor/ChildLinkMetaDataEndpoint.java     | 227 ++++++++++++++++-
 .../phoenix/coprocessor/ReadRepairScanner.java     | 180 ++++++++++++++
 .../phoenix/coprocessor/TaskRegionObserver.java    |   1 +
 .../coprocessor/tasks/ChildLinkScanTask.java       |  76 ++++++
 .../phoenix/query/ConnectionQueryServicesImpl.java | 114 +++++++--
 .../org/apache/phoenix/query/QueryServices.java    |   2 +
 .../apache/phoenix/query/QueryServicesOptions.java |   2 +
 .../java/org/apache/phoenix/schema/PTable.java     |   3 +-
 .../java/org/apache/phoenix/util/ScanUtil.java     |  13 +
 12 files changed, 892 insertions(+), 34 deletions(-)
 create mode 100644 phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanChildLinkRowsIT.java
 create mode 100644 phoenix-core/src/main/java/org/apache/phoenix/coprocessor/ReadRepairScanner.java
 create mode 100644 phoenix-core/src/main/java/org/apache/phoenix/coprocessor/tasks/ChildLinkScanTask.java


[phoenix] 01/01: Merge branch 'master' into PHOENIX-6883-feature

Posted by vj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vjasani pushed a commit to branch PHOENIX-6883-feature
in repository https://gitbox.apache.org/repos/asf/phoenix.git

commit 3a4630bf219ba92a9e40afb7e8db6b9edf95374f
Merge: 68693129d1 61180892c2
Author: Viraj Jasani <vj...@apache.org>
AuthorDate: Sat Jul 15 10:49:54 2023 -0700

    Merge branch 'master' into PHOENIX-6883-feature

 .../end2end/ConnectionQueryServicesTestImpl.java   |  19 +-
 .../phoenix/end2end/OrphanChildLinkRowsIT.java     | 270 +++++++++++++++++++++
 .../org/apache/phoenix/end2end/ViewMetadataIT.java |  19 +-
 .../coprocessor/ChildLinkMetaDataEndpoint.java     | 227 ++++++++++++++++-
 .../phoenix/coprocessor/ReadRepairScanner.java     | 180 ++++++++++++++
 .../phoenix/coprocessor/TaskRegionObserver.java    |   1 +
 .../coprocessor/tasks/ChildLinkScanTask.java       |  76 ++++++
 .../phoenix/query/ConnectionQueryServicesImpl.java | 114 +++++++--
 .../org/apache/phoenix/query/QueryServices.java    |   2 +
 .../apache/phoenix/query/QueryServicesOptions.java |   2 +
 .../java/org/apache/phoenix/schema/PTable.java     |   3 +-
 .../java/org/apache/phoenix/util/ScanUtil.java     |  13 +
 12 files changed, 892 insertions(+), 34 deletions(-)