You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by du...@apache.org on 2023/04/12 12:37:12 UTC

[shardingsphere] branch master updated (01c0e89bf2b -> f55ec7ad644)

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

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


    from 01c0e89bf2b Fix like query bug in PostgreSQLStatementSQLVisitor.java and OpenGaussStatementSQLVisitor.java (#25033)
     add f55ec7ad644 Add more mysql performance_schema tables (#25143)

No new revisions were added by this update.

Summary of changes:
 .../schema/builder/SystemSchemaBuilderRule.java    |   5 +-
 .../events_transactions_current.yaml               | 211 +++++++++++++++++++++
 .../events_transactions_history.yaml               | 211 +++++++++++++++++++++
 .../events_transactions_history_long.yaml          | 211 +++++++++++++++++++++
 ...nsactions_summary_by_account_by_event_name.yaml | 163 ++++++++++++++++
 ...transactions_summary_by_host_by_event_name.yaml | 155 +++++++++++++++
 ...ansactions_summary_by_thread_by_event_name.yaml | 155 +++++++++++++++
 ...transactions_summary_by_user_by_event_name.yaml | 155 +++++++++++++++
 ..._transactions_summary_global_by_event_name.yaml | 147 ++++++++++++++
 .../performance_schema/events_waits_current.yaml   | 171 +++++++++++++++++
 .../performance_schema/events_waits_history.yaml   | 171 +++++++++++++++++
 .../builder/SystemSchemaBuilderRuleTest.java       |   2 +-
 .../schema/builder/SystemSchemaBuilderTest.java    |   2 +-
 ...formance_schema_events_transactions_current.xml |  45 +++++
 ...formance_schema_events_transactions_history.xml |  45 +++++
 ...nce_schema_events_transactions_history_long.xml |  45 +++++
 ...ansactions_summary_by_account_by_event_name.xml |  39 ++++
 ..._transactions_summary_by_host_by_event_name.xml |  38 ++++
 ...ransactions_summary_by_thread_by_event_name.xml |  38 ++++
 ..._transactions_summary_by_user_by_event_name.xml |  38 ++++
 ...s_transactions_summary_global_by_event_name.xml |  37 ++++
 ...sql_performance_schema_events_waits_current.xml |  40 ++++
 ...sql_performance_schema_events_waits_history.xml |  40 ++++
 .../dql/dql-integration-select-system-schema.xml   |  40 ++++
 24 files changed, 2201 insertions(+), 3 deletions(-)
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_current.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_history.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_history_long.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_summary_by_account_by_event_name.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_summary_by_host_by_event_name.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_summary_by_thread_by_event_name.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_summary_by_user_by_event_name.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_transactions_summary_global_by_event_name.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_waits_current.yaml
 create mode 100644 infra/common/src/main/resources/schema/mysql/performance_schema/events_waits_history.yaml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_current.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_history.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_history_long.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_summary_by_account_by_event_name.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_summary_by_host_by_event_name.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_summary_by_thread_by_event_name.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_summary_by_user_by_event_name.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_transactions_summary_global_by_event_name.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_waits_current.xml
 create mode 100644 test/e2e/sql/src/test/resources/cases/dql/dataset/db/select_mysql_performance_schema_events_waits_history.xml