From 6cf81194a30d9c13572d79ada79d5a8a489e5beb Mon Sep 17 00:00:00 2001 From: Cylance <11178036+cylance@user.noreply.gitee.com> Date: Thu, 29 May 2025 14:31:44 +0800 Subject: [PATCH] modify x_ps_schema_statistics_io.sql --- .../sys_schema/views/p_s/x_ps_schema_table_statistics_io.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sys_schema/views/p_s/x_ps_schema_table_statistics_io.sql b/scripts/sys_schema/views/p_s/x_ps_schema_table_statistics_io.sql index 8269ef8cc..b079d0f7d 100644 --- a/scripts/sys_schema/views/p_s/x_ps_schema_table_statistics_io.sql +++ b/scripts/sys_schema/views/p_s/x_ps_schema_table_statistics_io.sql @@ -50,8 +50,8 @@ VIEW x$ps_schema_table_statistics_io ( count_misc, sum_timer_misc ) AS -SELECT extract_schema_from_file_name(file_name) AS table_schema, - extract_table_from_file_name(file_name) AS table_name, +SELECT sys.extract_schema_from_file_name(file_name) AS table_schema, + sys.extract_table_from_file_name(file_name) AS table_name, SUM(count_read) AS count_read, SUM(sum_number_of_bytes_read) AS sum_number_of_bytes_read, SUM(sum_timer_read) AS sum_timer_read, -- Gitee