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:47 UTC

[phoenix] branch PHOENIX-6978-feature updated (dc7d628f51 -> 61180892c2)

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

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


    from dc7d628f51 PHOENIX-6907 Explain Plan should output region locations with servers (#1598)
     add 61180892c2 PHOENIX-6141 : Ensure consistency between SYSTEM.CATALOG and SYSTEM.CHILD_LINK (#1575)

No new revisions were added by this update.

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