Re: [pgAdmin 4 - Bug #1523] Messages pane showing incomplete info

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: [pgAdmin 4 - Bug #1523] Messages pane showing incomplete info
Дата
Msg-id CA+OCxozbWzp5+OaFiZT=gRZwA93L7jfznKA_ixf6xZydc-x1Tw@mail.gmail.com
обсуждение исходный текст
Список pgadmin-hackers
Hi

Not sure if I'm missing an email with this patch - I only seem to have
received the Redmine notification....

Anyway; I don't believe this is the best way to fix this (and making
the notices unique is most definitely wrong). First, I was thinking of
something like the following, to auto-clear the messages from the
driver. That way, we know that we're never getting duplicates that
shouldn't be there:

Index: web/pgadmin/utils/driver/psycopg2/__init__.py
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- web/pgadmin/utils/driver/psycopg2/__init__.py (revision
a43f053a10327fae02c259ce0f791f8c57e9ec09)
+++ web/pgadmin/utils/driver/psycopg2/__init__.py (revision )
@@ -1094,7 +1094,13 @@
         """
         Returns the list of the messages/notices send from the database server.
         """
-        return self.conn.notices if self.conn else []
+        notices = []
+
+        if self.conn:
+            notices = self.conn.notices[:]
+            del self.conn.notices[:]
+
+        return notices

     def _formatted_exception_msg(self, exception_obj, formatted_msg):

Then in the SQL editor, all we need to do is grab all the messages
each time we poll, and send them to the client. The client then
appends them to the Messages div and scrolls to the end automatically,
to give a scrolling display).

Finally, when we find execution is complete, we send the last of the
messages, and add the "Query returned successfully with no result in
6.4 secs." message.

Thoughts?

In related news, please see: https://github.com/psycopg/psycopg2/issues/464

On Fri, Aug 5, 2016 at 4:16 PM,  <redmine@postgresql.org> wrote:
> Issue #1523 has been updated by Murtuza Zabuawala.
>
> File fetch_staus_msgs.patch added
>
> Hi Ashesh,
>
> I tried but as due to small queue size we missed most of notices from
> psycopg2 driver during polling.
> Attach is the patch but it's not working properly.
>
> ________________________________
>
> Bug #1523: Messages pane showing incomplete info
>
> Author: Dave Page
> Status: New
> Priority: Immediate
> Assignee:
> Category:
> Target version: 1.0 Beta 4
> Platform:
> Area:
>
> I suspect this is a combination of a) the timing message at the end being
> forgotten (though pgAdmin 4 does now show that in the popup - but it should
> be here too), and b) we're only displaying the messages received during the
> last poll. It's essential that we display everything, as this tool is used
> for debugging and testing, and missing output notices etc. is a serious
> problem.
>
> Example; running "VACUUM FULL FREEZE ANALYZE VERBOSE" on a PEM database in
> pgAdmin 4 results in the following output:
>
> ====
> INFO: "memory_usage": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> VACUUM ====
>
> On pgAdmin 3, we get:
>
> ====
> INFO: vacuuming "pg_catalog.pg_type"
> INFO: "pg_type": found 0 removable, 962 nonremovable row versions in 22
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_type"
> INFO: "pg_type": scanned 22 of 22 pages, containing 960 live rows and 2 dead
> rows; 960 rows in sample, 960 estimated total rows
> INFO: vacuuming "pg_catalog.pg_proc"
> INFO: "pg_proc": found 0 removable, 2916 nonremovable row versions in 98
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pg_catalog.pg_proc"
> INFO: "pg_proc": scanned 98 of 98 pages, containing 2916 live rows and 0
> dead rows; 2916 rows in sample, 2916 estimated total rows
> INFO: vacuuming "pg_catalog.pg_user_mapping"
> INFO: "pg_user_mapping": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_user_mapping"
> INFO: "pg_user_mapping": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_attrdef"
> INFO: "pg_attrdef": found 0 removable, 317 nonremovable row versions in 11
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_attrdef"
> INFO: "pg_attrdef": scanned 11 of 11 pages, containing 317 live rows and 0
> dead rows; 317 rows in sample, 317 estimated total rows
> INFO: vacuuming "pg_catalog.pg_index"
> INFO: "pg_index": found 1 removable, 551 nonremovable row versions in 13
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_index"
> INFO: "pg_index": scanned 13 of 13 pages, containing 551 live rows and 0
> dead rows; 551 rows in sample, 551 estimated total rows
> INFO: vacuuming "pg_catalog.pg_operator"
> INFO: "pg_operator": found 0 removable, 765 nonremovable row versions in 14
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_operator"
> INFO: "pg_operator": scanned 14 of 14 pages, containing 765 live rows and 0
> dead rows; 765 rows in sample, 765 estimated total rows
> INFO: vacuuming "pg_catalog.pg_opfamily"
> INFO: "pg_opfamily": found 0 removable, 86 nonremovable row versions in 2
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_opfamily"
> INFO: "pg_opfamily": scanned 2 of 2 pages, containing 86 live rows and 0
> dead rows; 86 rows in sample, 86 estimated total rows
> INFO: vacuuming "pg_catalog.pg_opclass"
> INFO: "pg_opclass": found 0 removable, 128 nonremovable row versions in 3
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_opclass"
> INFO: "pg_opclass": scanned 3 of 3 pages, containing 128 live rows and 0
> dead rows; 128 rows in sample, 128 estimated total rows
> INFO: vacuuming "pg_catalog.pg_am"
> INFO: "pg_am": found 0 removable, 5 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_am"
> INFO: "pg_am": scanned 1 of 1 pages, containing 5 live rows and 0 dead rows;
> 5 rows in sample, 5 estimated total rows
> INFO: vacuuming "pg_catalog.pg_amop"
> INFO: "pg_amop": found 0 removable, 436 nonremovable row versions in 4 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_amop"
> INFO: "pg_amop": scanned 4 of 4 pages, containing 436 live rows and 0 dead
> rows; 436 rows in sample, 436 estimated total rows
> INFO: vacuuming "pg_catalog.pg_amproc"
> INFO: "pg_amproc": found 0 removable, 344 nonremovable row versions in 3
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_amproc"
> INFO: "pg_amproc": scanned 3 of 3 pages, containing 344 live rows and 0 dead
> rows; 344 rows in sample, 344 estimated total rows
> INFO: vacuuming "pg_catalog.pg_language"
> INFO: "pg_language": found 0 removable, 4 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_language"
> INFO: "pg_language": scanned 1 of 1 pages, containing 4 live rows and 0 dead
> rows; 4 rows in sample, 4 estimated total rows
> INFO: vacuuming "pg_catalog.pg_aggregate"
> INFO: "pg_aggregate": found 0 removable, 133 nonremovable row versions in 2
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_aggregate"
> INFO: "pg_aggregate": scanned 2 of 2 pages, containing 133 live rows and 0
> dead rows; 133 rows in sample, 133 estimated total rows
> INFO: vacuuming "pg_catalog.pg_statistic"
> INFO: "pg_statistic": found 112 removable, 641 nonremovable row versions in
> 41 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: vacuuming "pg_catalog.pg_rewrite"
> INFO: "pg_rewrite": found 0 removable, 114 nonremovable row versions in 11
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pg_catalog.pg_rewrite"
> INFO: "pg_rewrite": scanned 11 of 11 pages, containing 114 live rows and 0
> dead rows; 114 rows in sample, 114 estimated total rows
> INFO: vacuuming "pg_catalog.pg_trigger"
> INFO: "pg_trigger": found 0 removable, 868 nonremovable row versions in 17
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_trigger"
> INFO: "pg_trigger": scanned 17 of 17 pages, containing 868 live rows and 0
> dead rows; 868 rows in sample, 868 estimated total rows
> INFO: vacuuming "pg_catalog.pg_event_trigger"
> INFO: "pg_event_trigger": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_event_trigger"
> INFO: "pg_event_trigger": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_description"
> INFO: "pg_description": found 0 removable, 3967 nonremovable row versions in
> 35 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_description"
> INFO: "pg_description": scanned 35 of 35 pages, containing 3967 live rows
> and 0 dead rows; 3967 rows in sample, 3967 estimated total rows
> INFO: vacuuming "pg_catalog.pg_cast"
> INFO: "pg_cast": found 0 removable, 198 nonremovable row versions in 2 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_cast"
> INFO: "pg_cast": scanned 2 of 2 pages, containing 198 live rows and 0 dead
> rows; 198 rows in sample, 198 estimated total rows
> INFO: vacuuming "pg_catalog.pg_enum"
> INFO: "pg_enum": found 0 removable, 41 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_enum"
> INFO: "pg_enum": scanned 1 of 1 pages, containing 41 live rows and 0 dead
> rows; 41 rows in sample, 41 estimated total rows
> INFO: vacuuming "pg_catalog.pg_namespace"
> INFO: "pg_namespace": found 0 removable, 9 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_namespace"
> INFO: "pg_namespace": scanned 1 of 1 pages, containing 9 live rows and 0
> dead rows; 9 rows in sample, 9 estimated total rows
> INFO: vacuuming "pg_catalog.pg_conversion"
> INFO: "pg_conversion": found 0 removable, 132 nonremovable row versions in 3
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_conversion"
> INFO: "pg_conversion": scanned 3 of 3 pages, containing 132 live rows and 0
> dead rows; 132 rows in sample, 132 estimated total rows
> INFO: vacuuming "pg_catalog.pg_depend"
> INFO: "pg_depend": found 113 removable, 11409 nonremovable row versions in
> 89 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pg_catalog.pg_depend"
> INFO: "pg_depend": scanned 84 of 84 pages, containing 11407 live rows and 2
> dead rows; 11407 rows in sample, 11407 estimated total rows
> INFO: vacuuming "pg_catalog.pg_db_role_setting"
> INFO: "pg_db_role_setting": found 0 removable, 3 nonremovable row versions
> in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_db_role_setting"
> INFO: "pg_db_role_setting": scanned 1 of 1 pages, containing 3 live rows and
> 0 dead rows; 3 rows in sample, 3 estimated total rows
> INFO: vacuuming "pg_catalog.pg_tablespace"
> INFO: "pg_tablespace": found 0 removable, 2 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_tablespace"
> INFO: "pg_tablespace": scanned 1 of 1 pages, containing 2 live rows and 0
> dead rows; 2 rows in sample, 2 estimated total rows
> INFO: vacuuming "pg_catalog.pg_auth_members"
> INFO: "pg_auth_members": found 0 removable, 4 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_auth_members"
> INFO: "pg_auth_members": scanned 1 of 1 pages, containing 4 live rows and 0
> dead rows; 4 rows in sample, 4 estimated total rows
> INFO: vacuuming "pg_catalog.pg_shdepend"
> INFO: "pg_shdepend": found 0 removable, 4107 nonremovable row versions in 31
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_shdepend"
> INFO: "pg_shdepend": scanned 31 of 31 pages, containing 4107 live rows and 0
> dead rows; 4107 rows in sample, 4107 estimated total rows
> INFO: vacuuming "pg_catalog.pg_shdescription"
> INFO: "pg_shdescription": found 0 removable, 3 nonremovable row versions in
> 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pg_catalog.pg_shdescription"
> INFO: "pg_shdescription": scanned 1 of 1 pages, containing 3 live rows and 0
> dead rows; 3 rows in sample, 3 estimated total rows
> INFO: vacuuming "pg_catalog.pg_ts_config"
> INFO: "pg_ts_config": found 0 removable, 16 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_ts_config"
> INFO: "pg_ts_config": scanned 1 of 1 pages, containing 16 live rows and 0
> dead rows; 16 rows in sample, 16 estimated total rows
> INFO: vacuuming "pg_catalog.pg_ts_config_map"
> INFO: "pg_ts_config_map": found 0 removable, 304 nonremovable row versions
> in 2 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_ts_config_map"
> INFO: "pg_ts_config_map": scanned 2 of 2 pages, containing 304 live rows and
> 0 dead rows; 304 rows in sample, 304 estimated total rows
> INFO: vacuuming "pg_catalog.pg_ts_dict"
> INFO: "pg_ts_dict": found 0 removable, 16 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_ts_dict"
> INFO: "pg_ts_dict": scanned 1 of 1 pages, containing 16 live rows and 0 dead
> rows; 16 rows in sample, 16 estimated total rows
> INFO: vacuuming "pg_catalog.pg_ts_parser"
> INFO: "pg_ts_parser": found 0 removable, 1 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_ts_parser"
> INFO: "pg_ts_parser": scanned 1 of 1 pages, containing 1 live rows and 0
> dead rows; 1 rows in sample, 1 estimated total rows
> INFO: vacuuming "pg_catalog.pg_ts_template"
> INFO: "pg_ts_template": found 0 removable, 5 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_ts_template"
> INFO: "pg_ts_template": scanned 1 of 1 pages, containing 5 live rows and 0
> dead rows; 5 rows in sample, 5 estimated total rows
> INFO: vacuuming "pg_catalog.pg_extension"
> INFO: "pg_extension": found 0 removable, 1 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_extension"
> INFO: "pg_extension": scanned 1 of 1 pages, containing 1 live rows and 0
> dead rows; 1 rows in sample, 1 estimated total rows
> INFO: vacuuming "pg_catalog.pg_foreign_data_wrapper"
> INFO: "pg_foreign_data_wrapper": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_foreign_data_wrapper"
> INFO: "pg_foreign_data_wrapper": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_foreign_server"
> INFO: "pg_foreign_server": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_foreign_server"
> INFO: "pg_foreign_server": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_foreign_table"
> INFO: "pg_foreign_table": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_foreign_table"
> INFO: "pg_foreign_table": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_default_acl"
> INFO: "pg_default_acl": found 0 removable, 9 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_default_acl"
> INFO: "pg_default_acl": scanned 1 of 1 pages, containing 9 live rows and 0
> dead rows; 9 rows in sample, 9 estimated total rows
> INFO: vacuuming "pg_catalog.pg_seclabel"
> INFO: "pg_seclabel": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_seclabel"
> INFO: "pg_seclabel": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_shseclabel"
> INFO: "pg_shseclabel": found 0 removable, 1 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_shseclabel"
> INFO: "pg_shseclabel": scanned 1 of 1 pages, containing 1 live rows and 0
> dead rows; 1 rows in sample, 1 estimated total rows
> INFO: vacuuming "pg_catalog.pg_collation"
> INFO: "pg_collation": found 0 removable, 269 nonremovable row versions in 9
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_collation"
> INFO: "pg_collation": scanned 9 of 9 pages, containing 269 live rows and 0
> dead rows; 269 rows in sample, 269 estimated total rows
> INFO: vacuuming "pg_catalog.pg_range"
> INFO: "pg_range": found 0 removable, 6 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_range"
> INFO: "pg_range": scanned 1 of 1 pages, containing 6 live rows and 0 dead
> rows; 6 rows in sample, 6 estimated total rows
> INFO: vacuuming "pg_catalog.pg_largeobject"
> INFO: "pg_largeobject": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_largeobject"
> INFO: "pg_largeobject": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "information_schema.sql_implementation_info"
> INFO: "sql_implementation_info": found 0 removable, 12 nonremovable row
> versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_implementation_info"
> INFO: "sql_implementation_info": scanned 1 of 1 pages, containing 12 live
> rows and 0 dead rows; 12 rows in sample, 12 estimated total rows
> INFO: vacuuming "information_schema.sql_languages"
> INFO: "sql_languages": found 0 removable, 4 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_languages"
> INFO: "sql_languages": scanned 1 of 1 pages, containing 4 live rows and 0
> dead rows; 4 rows in sample, 4 estimated total rows
> INFO: vacuuming "information_schema.sql_packages"
> INFO: "sql_packages": found 0 removable, 10 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_packages"
> INFO: "sql_packages": scanned 1 of 1 pages, containing 10 live rows and 0
> dead rows; 10 rows in sample, 10 estimated total rows
> INFO: vacuuming "information_schema.sql_sizing"
> INFO: "sql_sizing": found 0 removable, 23 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_sizing"
> INFO: "sql_sizing": scanned 1 of 1 pages, containing 23 live rows and 0 dead
> rows; 23 rows in sample, 23 estimated total rows
> INFO: vacuuming "information_schema.sql_sizing_profiles"
> INFO: "sql_sizing_profiles": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_sizing_profiles"
> INFO: "sql_sizing_profiles": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_authid"
> INFO: "pg_authid": found 0 removable, 13 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_authid"
> INFO: "pg_authid": scanned 1 of 1 pages, containing 13 live rows and 0 dead
> rows; 13 rows in sample, 13 estimated total rows
> INFO: vacuuming "pg_catalog.pg_attribute"
> INFO: "pg_attribute": found 165 removable, 8268 nonremovable row versions in
> 162 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pg_catalog.pg_attribute"
> INFO: "pg_attribute": scanned 151 of 151 pages, containing 8241 live rows
> and 27 dead rows; 8241 rows in sample, 8241 estimated total rows
> INFO: vacuuming "pg_catalog.pg_largeobject_metadata"
> INFO: "pg_largeobject_metadata": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_largeobject_metadata"
> INFO: "pg_largeobject_metadata": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_inherits"
> INFO: "pg_inherits": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_inherits"
> INFO: "pg_inherits": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_database"
> INFO: "pg_database": found 0 removable, 16 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_database"
> INFO: "pg_database": scanned 1 of 1 pages, containing 16 live rows and 0
> dead rows; 16 rows in sample, 16 estimated total rows
> INFO: vacuuming "information_schema.sql_parts"
> INFO: "sql_parts": found 0 removable, 9 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_parts"
> INFO: "sql_parts": scanned 1 of 1 pages, containing 9 live rows and 0 dead
> rows; 9 rows in sample, 9 estimated total rows
> INFO: vacuuming "pg_catalog.pg_constraint"
> INFO: "pg_constraint": found 0 removable, 392 nonremovable row versions in
> 17 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_constraint"
> INFO: "pg_constraint": scanned 17 of 17 pages, containing 392 live rows and
> 0 dead rows; 392 rows in sample, 392 estimated total rows
> INFO: vacuuming "pg_catalog.pg_pltemplate"
> INFO: "pg_pltemplate": found 0 removable, 8 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_pltemplate"
> INFO: "pg_pltemplate": scanned 1 of 1 pages, containing 8 live rows and 0
> dead rows; 8 rows in sample, 8 estimated total rows
> INFO: vacuuming "pemhistory.network_statistics"
> INFO: "network_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.network_statistics"
> INFO: "network_statistics": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.io_analysis"
> INFO: "io_analysis": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.io_analysis"
> INFO: "io_analysis": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.data_log_file_analysis"
> INFO: "data_log_file_analysis": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.data_log_file_analysis"
> INFO: "data_log_file_analysis": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.os_statistics"
> INFO: "os_statistics": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.os_statistics"
> INFO: "os_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.os_info"
> INFO: "os_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.os_info"
> INFO: "os_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.audit_configuration"
> INFO: "audit_configuration": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.audit_configuration"
> INFO: "audit_configuration": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.log_configuration"
> INFO: "log_configuration": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.log_configuration"
> INFO: "log_configuration": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.sql_protect"
> INFO: "sql_protect": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.sql_protect"
> INFO: "sql_protect": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.streaming_replication"
> INFO: "streaming_replication": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.streaming_replication"
> INFO: "streaming_replication": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.xdb_smr_mmr_replication"
> INFO: "xdb_smr_mmr_replication": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.xdb_smr_mmr_replication"
> INFO: "xdb_smr_mmr_replication": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_views"
> INFO: "oc_views": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_views"
> INFO: "oc_views": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.mview_bloat"
> INFO: "mview_bloat": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.mview_bloat"
> INFO: "mview_bloat": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.mview_frozenxid"
> INFO: "mview_frozenxid": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.mview_frozenxid"
> INFO: "mview_frozenxid": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.mview_size"
> INFO: "mview_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.mview_size"
> INFO: "mview_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.streaming_replication_lag_time"
> INFO: "streaming_replication_lag_time": found 0 removable, 0 nonremovable
> row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.streaming_replication_lag_time"
> INFO: "streaming_replication_lag_time": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.wal_archive_status"
> INFO: "wal_archive_status": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.wal_archive_status"
> INFO: "wal_archive_status": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.efm_cluster_node_status"
> INFO: "efm_cluster_node_status": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.efm_cluster_node_status"
> INFO: "efm_cluster_node_status": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.efm_cluster_info"
> INFO: "efm_cluster_info": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.efm_cluster_info"
> INFO: "efm_cluster_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_database"
> INFO: "probe_config_database": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_database"
> INFO: "probe_config_database": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.pe_experts"
> INFO: "pe_experts": found 0 removable, 3 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.pe_experts"
> INFO: "pe_experts": scanned 1 of 1 pages, containing 3 live rows and 0 dead
> rows; 3 rows in sample, 3 estimated total rows
> INFO: vacuuming "information_schema.sql_features"
> INFO: "sql_features": found 0 removable, 672 nonremovable row versions in 7
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "information_schema.sql_features"
> INFO: "sql_features": scanned 7 of 7 pages, containing 672 live rows and 0
> dead rows; 672 rows in sample, 672 estimated total rows
> INFO: vacuuming "pem.pe_rules_text"
> INFO: "pe_rules_text": found 0 removable, 31 nonremovable row versions in 4
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.pe_rules_text"
> INFO: "pe_rules_text": scanned 4 of 4 pages, containing 31 live rows and 0
> dead rows; 31 rows in sample, 31 estimated total rows
> INFO: vacuuming "pem.config"
> INFO: "config": found 0 removable, 127 nonremovable row versions in 2 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.config"
> INFO: "config": scanned 2 of 2 pages, containing 127 live rows and 0 dead
> rows; 127 rows in sample, 127 estimated total rows
> INFO: vacuuming "pem.server_version"
> INFO: "server_version": found 0 removable, 17 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.server_version"
> INFO: "server_version": scanned 1 of 1 pages, containing 17 live rows and 0
> dead rows; 17 rows in sample, 17 estimated total rows
> INFO: vacuuming "pem.probe_column"
> INFO: "probe_column": found 0 removable, 360 nonremovable row versions in 4
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_column"
> INFO: "probe_column": scanned 4 of 4 pages, containing 360 live rows and 0
> dead rows; 360 rows in sample, 360 estimated total rows
> INFO: vacuuming "pem.probe_server_version"
> INFO: "probe_server_version": found 0 removable, 272 nonremovable row
> versions in 8 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_server_version"
> INFO: "probe_server_version": scanned 8 of 8 pages, containing 272 live rows
> and 0 dead rows; 272 rows in sample, 272 estimated total rows
> INFO: vacuuming "pem.probe_config_agent"
> INFO: "probe_config_agent": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_agent"
> INFO: "probe_config_agent": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_schema"
> INFO: "probe_config_schema": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_schema"
> INFO: "probe_config_schema": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_table"
> INFO: "probe_config_table": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_table"
> INFO: "probe_config_table": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_view"
> INFO: "probe_config_view": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_view"
> INFO: "probe_config_view": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe"
> INFO: "probe": found 0 removable, 59 nonremovable row versions in 3 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe"
> INFO: "probe": scanned 3 of 3 pages, containing 59 live rows and 0 dead
> rows; 59 rows in sample, 59 estimated total rows
> INFO: vacuuming "pem.dashboard_chart"
> INFO: "dashboard_chart": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.dashboard_chart"
> INFO: "dashboard_chart": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.server_option"
> INFO: "server_option": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.server_option"
> INFO: "server_option": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_index"
> INFO: "probe_config_index": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_index"
> INFO: "probe_config_index": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_function"
> INFO: "probe_config_function": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_function"
> INFO: "probe_config_function": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_sequence"
> INFO: "probe_config_sequence": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_sequence"
> INFO: "probe_config_sequence": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.schedule"
> INFO: "schedule": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.schedule"
> INFO: "schedule": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.exception"
> INFO: "exception": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.exception"
> INFO: "exception": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.sr_master"
> INFO: "sr_master": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.sr_master"
> INFO: "sr_master": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.sr_standby"
> INFO: "sr_standby": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.sr_standby"
> INFO: "sr_standby": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.email_group_option"
> INFO: "email_group_option": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.email_group_option"
> INFO: "email_group_option": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.email_template"
> INFO: "email_template": found 0 removable, 5 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.email_template"
> INFO: "email_template": scanned 1 of 1 pages, containing 5 live rows and 0
> dead rows; 5 rows in sample, 5 estimated total rows
> INFO: vacuuming "pem.probe_target_type"
> INFO: "probe_target_type": found 0 removable, 10 nonremovable row versions
> in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_target_type"
> INFO: "probe_target_type": scanned 1 of 1 pages, containing 10 live rows and
> 0 dead rows; 10 rows in sample, 10 estimated total rows
> INFO: vacuuming "pem.alert_template"
> INFO: "alert_template": found 0 removable, 238 nonremovable row versions in
> 16 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.alert_template"
> INFO: "alert_template": scanned 16 of 16 pages, containing 238 live rows and
> 0 dead rows; 238 rows in sample, 238 estimated total rows
> INFO: vacuuming "pem.email_group"
> INFO: "email_group": found 0 removable, 1 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.email_group"
> INFO: "email_group": scanned 1 of 1 pages, containing 1 live rows and 0 dead
> rows; 1 rows in sample, 1 estimated total rows
> INFO: vacuuming "pem.cm_template"
> INFO: "cm_template": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.cm_template"
> INFO: "cm_template": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.cm_template_path"
> INFO: "cm_template_path": found 0 removable, 1 nonremovable row versions in
> 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.cm_template_path"
> INFO: "cm_template_path": scanned 1 of 1 pages, containing 1 live rows and 0
> dead rows; 1 rows in sample, 1 estimated total rows
> INFO: vacuuming "pem.cm_template_metrics"
> INFO: "cm_template_metrics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.cm_template_metrics"
> INFO: "cm_template_metrics": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.package_options"
> INFO: "package_options": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.package_options"
> INFO: "package_options": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.chart_func"
> INFO: "chart_func": found 0 removable, 61 nonremovable row versions in 4
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.chart_func"
> INFO: "chart_func": scanned 4 of 4 pages, containing 61 live rows and 0 dead
> rows; 61 rows in sample, 61 estimated total rows
> INFO: vacuuming "pem.chart_category"
> INFO: "chart_category": found 0 removable, 15 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.chart_category"
> INFO: "chart_category": scanned 1 of 1 pages, containing 15 live rows and 0
> dead rows; 15 rows in sample, 15 estimated total rows
> INFO: vacuuming "pem.bar_chart"
> INFO: "bar_chart": found 0 removable, 7 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.bar_chart"
> INFO: "bar_chart": scanned 1 of 1 pages, containing 7 live rows and 0 dead
> rows; 7 rows in sample, 7 estimated total rows
> INFO: vacuuming "pem.tbl_chart"
> INFO: "tbl_chart": found 0 removable, 12 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.tbl_chart"
> INFO: "tbl_chart": scanned 1 of 1 pages, containing 12 live rows and 0 dead
> rows; 12 rows in sample, 12 estimated total rows
> INFO: vacuuming "pem.pie_chart"
> INFO: "pie_chart": found 0 removable, 12 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.pie_chart"
> INFO: "pie_chart": scanned 1 of 1 pages, containing 12 live rows and 0 dead
> rows; 12 rows in sample, 12 estimated total rows
> INFO: vacuuming "pem.data_chart"
> INFO: "data_chart": found 0 removable, 2 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.01 sec.
> INFO: analyzing "pem.data_chart"
> INFO: "data_chart": scanned 1 of 1 pages, containing 2 live rows and 0 dead
> rows; 2 rows in sample, 2 estimated total rows
> INFO: vacuuming "pem.history_chart"
> INFO: "history_chart": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.history_chart"
> INFO: "history_chart": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.metrices_chart"
> INFO: "metrices_chart": found 0 removable, 26 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.metrices_chart"
> INFO: "metrices_chart": scanned 1 of 1 pages, containing 26 live rows and 0
> dead rows; 26 rows in sample, 26 estimated total rows
> INFO: vacuuming "pem.chart_metric"
> INFO: "chart_metric": found 0 removable, 19 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.chart_metric"
> INFO: "chart_metric": scanned 1 of 1 pages, containing 19 live rows and 0
> dead rows; 19 rows in sample, 19 estimated total rows
> INFO: vacuuming "pem.line_chart"
> INFO: "line_chart": found 0 removable, 26 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.line_chart"
> INFO: "line_chart": scanned 1 of 1 pages, containing 26 live rows and 0 dead
> rows; 26 rows in sample, 26 estimated total rows
> INFO: vacuuming "pem.capacity_report_chart"
> INFO: "capacity_report_chart": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.capacity_report_chart"
> INFO: "capacity_report_chart": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.user_info"
> INFO: "user_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.user_info"
> INFO: "user_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.load_average"
> INFO: "load_average": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.load_average"
> INFO: "load_average": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_schema"
> INFO: "oc_schema": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_schema"
> INFO: "oc_schema": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_foreign_key"
> INFO: "oc_foreign_key": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_foreign_key"
> INFO: "oc_foreign_key": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.memory_usage"
> INFO: "memory_usage": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.memory_usage"
> INFO: "memory_usage": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.chart_config"
> INFO: "chart_config": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.chart_config"
> INFO: "chart_config": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.dashboard"
> INFO: "dashboard": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.dashboard"
> INFO: "dashboard": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.dashboard_section"
> INFO: "dashboard_section": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.dashboard_section"
> INFO: "dashboard_section": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.chart"
> INFO: "chart": found 0 removable, 80 nonremovable row versions in 3 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.chart"
> INFO: "chart": scanned 3 of 3 pages, containing 80 live rows and 0 dead
> rows; 80 rows in sample, 80 estimated total rows
> INFO: vacuuming "pem.logexp_tagbasecharts"
> INFO: "logexp_tagbasecharts": found 0 removable, 4 nonremovable row versions
> in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.logexp_tagbasecharts"
> INFO: "logexp_tagbasecharts": scanned 1 of 1 pages, containing 4 live rows
> and 0 dead rows; 4 rows in sample, 4 estimated total rows
> INFO: vacuuming "pem.logexp_charts"
> INFO: "logexp_charts": found 0 removable, 18 nonremovable row versions in 1
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.logexp_charts"
> INFO: "logexp_charts": scanned 1 of 1 pages, containing 18 live rows and 0
> dead rows; 18 rows in sample, 18 estimated total rows
> INFO: vacuuming "pem.database_option"
> INFO: "database_option": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.database_option"
> INFO: "database_option": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.agent_heartbeat"
> INFO: "agent_heartbeat": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.agent_heartbeat"
> INFO: "agent_heartbeat": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.agent"
> INFO: "agent": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.agent"
> INFO: "agent": scanned 0 of 0 pages, containing 0 live rows and 0 dead rows;
> 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.alert"
> INFO: "alert": found 0 removable, 3 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.alert"
> INFO: "alert": scanned 1 of 1 pages, containing 3 live rows and 0 dead rows;
> 3 rows in sample, 3 estimated total rows
> INFO: vacuuming "pem.alert_status"
> INFO: "alert_status": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.alert_status"
> INFO: "alert_status": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.alert_history"
> INFO: "alert_history": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.alert_history"
> INFO: "alert_history": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.job"
> INFO: "job": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.job"
> INFO: "job": scanned 0 of 0 pages, containing 0 live rows and 0 dead rows; 0
> rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.jobstep"
> INFO: "jobstep": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.jobstep"
> INFO: "jobstep": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.jobagent"
> INFO: "jobagent": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.jobagent"
> INFO: "jobagent": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.joblog"
> INFO: "joblog": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.joblog"
> INFO: "joblog": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.jobsteplog"
> INFO: "jobsteplog": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.jobsteplog"
> INFO: "jobsteplog": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.nagios_spool"
> INFO: "nagios_spool": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.nagios_spool"
> INFO: "nagios_spool": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_log"
> INFO: "probe_log": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_log"
> INFO: "probe_log": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_schedule"
> INFO: "probe_schedule": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_schedule"
> INFO: "probe_schedule": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.server"
> INFO: "server": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.server"
> INFO: "server": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.server_heartbeat"
> INFO: "server_heartbeat": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.server_heartbeat"
> INFO: "server_heartbeat": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.log_configuration"
> INFO: "log_configuration": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.log_configuration"
> INFO: "log_configuration": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.smtp_spool"
> INFO: "smtp_spool": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.smtp_spool"
> INFO: "smtp_spool": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.snmp_spool"
> INFO: "snmp_spool": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.snmp_spool"
> INFO: "snmp_spool": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.agent_server_binding"
> INFO: "agent_server_binding": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.agent_server_binding"
> INFO: "agent_server_binding": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.audit_configuration"
> INFO: "audit_configuration": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.audit_configuration"
> INFO: "audit_configuration": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.package_installation"
> INFO: "package_installation": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.package_installation"
> INFO: "package_installation": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.probe_config_server"
> INFO: "probe_config_server": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.probe_config_server"
> INFO: "probe_config_server": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pem.sr_existing_replication"
> INFO: "sr_existing_replication": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.sr_existing_replication"
> INFO: "sr_existing_replication": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.server_logs"
> INFO: "server_logs": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.server_logs"
> INFO: "server_logs": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_schema"
> INFO: "oc_schema": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_schema"
> INFO: "oc_schema": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_tablespace"
> INFO: "oc_tablespace": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_tablespace"
> INFO: "oc_tablespace": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_database"
> INFO: "oc_database": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_database"
> INFO: "oc_database": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_table"
> INFO: "oc_table": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_table"
> INFO: "oc_table": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_sequence"
> INFO: "oc_sequence": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_sequence"
> INFO: "oc_sequence": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_index"
> INFO: "oc_index": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_index"
> INFO: "oc_index": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_foreign_key"
> INFO: "oc_foreign_key": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_foreign_key"
> INFO: "oc_foreign_key": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_function"
> INFO: "oc_function": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_function"
> INFO: "oc_function": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_extension"
> INFO: "oc_extension": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_extension"
> INFO: "oc_extension": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.slony_replication"
> INFO: "slony_replication": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.slony_replication"
> INFO: "slony_replication": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.function_statistics"
> INFO: "function_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.function_statistics"
> INFO: "function_statistics": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.database_statistics"
> INFO: "database_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.database_statistics"
> INFO: "database_statistics": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.tablespace_size"
> INFO: "tablespace_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.tablespace_size"
> INFO: "tablespace_size": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.database_size"
> INFO: "database_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.database_size"
> INFO: "database_size": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.table_statistics"
> INFO: "table_statistics": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.table_statistics"
> INFO: "table_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.index_statistics"
> INFO: "index_statistics": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.index_statistics"
> INFO: "index_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.database_frozenxid"
> INFO: "database_frozenxid": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.database_frozenxid"
> INFO: "database_frozenxid": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.background_writer_statistics"
> INFO: "background_writer_statistics": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.background_writer_statistics"
> INFO: "background_writer_statistics": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.table_frozenxid"
> INFO: "table_frozenxid": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.table_frozenxid"
> INFO: "table_frozenxid": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.table_bloat"
> INFO: "table_bloat": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.table_bloat"
> INFO: "table_bloat": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.table_size"
> INFO: "table_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.table_size"
> INFO: "table_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.index_size"
> INFO: "index_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.index_size"
> INFO: "index_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.number_of_wal_files"
> INFO: "number_of_wal_files": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.number_of_wal_files"
> INFO: "number_of_wal_files": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.number_of_prepared_transactions"
> INFO: "number_of_prepared_transactions": found 0 removable, 0 nonremovable
> row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.number_of_prepared_transactions"
> INFO: "number_of_prepared_transactions": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.settings"
> INFO: "settings": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.settings"
> INFO: "settings": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.session_info"
> INFO: "session_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.session_info"
> INFO: "session_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.system_waits"
> INFO: "system_waits": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.system_waits"
> INFO: "system_waits": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.lock_info"
> INFO: "lock_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.lock_info"
> INFO: "lock_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.session_waits"
> INFO: "session_waits": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.session_waits"
> INFO: "session_waits": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.streaming_replication_db_conflicts"
> INFO: "streaming_replication_db_conflicts": found 0 removable, 0
> nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.streaming_replication_db_conflicts"
> INFO: "streaming_replication_db_conflicts": scanned 0 of 0 pages, containing
> 0 live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.disk_space"
> INFO: "disk_space": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.disk_space"
> INFO: "disk_space": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.disk_busy_info"
> INFO: "disk_busy_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.disk_busy_info"
> INFO: "disk_busy_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.memory_usage"
> INFO: "memory_usage": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.memory_usage"
> INFO: "memory_usage": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.cpu_usage"
> INFO: "cpu_usage": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.cpu_usage"
> INFO: "cpu_usage": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.pg_hba_conf"
> INFO: "pg_hba_conf": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.pg_hba_conf"
> INFO: "pg_hba_conf": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.network_statistics"
> INFO: "network_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.network_statistics"
> INFO: "network_statistics": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.data_log_file_analysis"
> INFO: "data_log_file_analysis": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.data_log_file_analysis"
> INFO: "data_log_file_analysis": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.io_analysis"
> INFO: "io_analysis": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.io_analysis"
> INFO: "io_analysis": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.os_statistics"
> INFO: "os_statistics": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.os_statistics"
> INFO: "os_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.os_info"
> INFO: "os_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.os_info"
> INFO: "os_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.audit_configuration"
> INFO: "audit_configuration": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.audit_configuration"
> INFO: "audit_configuration": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.log_configuration"
> INFO: "log_configuration": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.log_configuration"
> INFO: "log_configuration": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.sql_protect"
> INFO: "sql_protect": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.sql_protect"
> INFO: "sql_protect": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.streaming_replication"
> INFO: "streaming_replication": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.streaming_replication"
> INFO: "streaming_replication": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.xdb_smr_mmr_replication"
> INFO: "xdb_smr_mmr_replication": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.xdb_smr_mmr_replication"
> INFO: "xdb_smr_mmr_replication": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.installed_packages"
> INFO: "installed_packages": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.installed_packages"
> INFO: "installed_packages": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.oc_views"
> INFO: "oc_views": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.oc_views"
> INFO: "oc_views": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.wal_archive_status"
> INFO: "wal_archive_status": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.wal_archive_status"
> INFO: "wal_archive_status": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.mview_bloat"
> INFO: "mview_bloat": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.mview_bloat"
> INFO: "mview_bloat": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.mview_frozenxid"
> INFO: "mview_frozenxid": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.mview_frozenxid"
> INFO: "mview_frozenxid": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.mview_size"
> INFO: "mview_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.mview_size"
> INFO: "mview_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.auto_discover_servers"
> INFO: "auto_discover_servers": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.auto_discover_servers"
> INFO: "auto_discover_servers": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.streaming_replication_lag_time"
> INFO: "streaming_replication_lag_time": found 0 removable, 0 nonremovable
> row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.streaming_replication_lag_time"
> INFO: "streaming_replication_lag_time": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.efm_cluster_node_status"
> INFO: "efm_cluster_node_status": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.efm_cluster_node_status"
> INFO: "efm_cluster_node_status": scanned 0 of 0 pages, containing 0 live
> rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.efm_cluster_info"
> INFO: "efm_cluster_info": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.efm_cluster_info"
> INFO: "efm_cluster_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.server_info"
> INFO: "server_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.server_info"
> INFO: "server_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemdata.package_catalog"
> INFO: "package_catalog": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.package_catalog"
> INFO: "package_catalog": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_tablespace"
> INFO: "oc_tablespace": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_tablespace"
> INFO: "oc_tablespace": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_database"
> INFO: "oc_database": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_database"
> INFO: "oc_database": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_table"
> INFO: "oc_table": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_table"
> INFO: "oc_table": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_index"
> INFO: "oc_index": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_index"
> INFO: "oc_index": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_sequence"
> INFO: "oc_sequence": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_sequence"
> INFO: "oc_sequence": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_extension"
> INFO: "oc_extension": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_extension"
> INFO: "oc_extension": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.oc_function"
> INFO: "oc_function": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.oc_function"
> INFO: "oc_function": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.function_statistics"
> INFO: "function_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.function_statistics"
> INFO: "function_statistics": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.slony_replication"
> INFO: "slony_replication": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.slony_replication"
> INFO: "slony_replication": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.server_info"
> INFO: "server_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.server_info"
> INFO: "server_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.database_statistics"
> INFO: "database_statistics": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.database_statistics"
> INFO: "database_statistics": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.tablespace_size"
> INFO: "tablespace_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.tablespace_size"
> INFO: "tablespace_size": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.database_size"
> INFO: "database_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.database_size"
> INFO: "database_size": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.table_statistics"
> INFO: "table_statistics": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.table_statistics"
> INFO: "table_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.index_statistics"
> INFO: "index_statistics": found 0 removable, 0 nonremovable row versions in
> 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.index_statistics"
> INFO: "index_statistics": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.database_frozenxid"
> INFO: "database_frozenxid": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.database_frozenxid"
> INFO: "database_frozenxid": scanned 0 of 0 pages, containing 0 live rows and
> 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.table_frozenxid"
> INFO: "table_frozenxid": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.table_frozenxid"
> INFO: "table_frozenxid": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.index_size"
> INFO: "index_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.index_size"
> INFO: "index_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.table_bloat"
> INFO: "table_bloat": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.table_bloat"
> INFO: "table_bloat": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.table_size"
> INFO: "table_size": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.table_size"
> INFO: "table_size": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.background_writer_statistics"
> INFO: "background_writer_statistics": found 0 removable, 0 nonremovable row
> versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.background_writer_statistics"
> INFO: "background_writer_statistics": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.number_of_wal_files"
> INFO: "number_of_wal_files": found 0 removable, 0 nonremovable row versions
> in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.number_of_wal_files"
> INFO: "number_of_wal_files": scanned 0 of 0 pages, containing 0 live rows
> and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.number_of_prepared_transactions"
> INFO: "number_of_prepared_transactions": found 0 removable, 0 nonremovable
> row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.number_of_prepared_transactions"
> INFO: "number_of_prepared_transactions": scanned 0 of 0 pages, containing 0
> live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.session_info"
> INFO: "session_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.session_info"
> INFO: "session_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.settings"
> INFO: "settings": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.settings"
> INFO: "settings": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.system_waits"
> INFO: "system_waits": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.system_waits"
> INFO: "system_waits": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.session_waits"
> INFO: "session_waits": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.session_waits"
> INFO: "session_waits": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.user_info"
> INFO: "user_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.user_info"
> INFO: "user_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.streaming_replication_db_conflicts"
> INFO: "streaming_replication_db_conflicts": found 0 removable, 0
> nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.streaming_replication_db_conflicts"
> INFO: "streaming_replication_db_conflicts": scanned 0 of 0 pages, containing
> 0 live rows and 0 dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.lock_info"
> INFO: "lock_info": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.lock_info"
> INFO: "lock_info": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.disk_space"
> INFO: "disk_space": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.disk_space"
> INFO: "disk_space": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.load_average"
> INFO: "load_average": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.load_average"
> INFO: "load_average": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.disk_busy_info"
> INFO: "disk_busy_info": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.disk_busy_info"
> INFO: "disk_busy_info": scanned 0 of 0 pages, containing 0 live rows and 0
> dead rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.cpu_usage"
> INFO: "cpu_usage": found 0 removable, 0 nonremovable row versions in 0 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.cpu_usage"
> INFO: "cpu_usage": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pemhistory.pg_hba_conf"
> INFO: "pg_hba_conf": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemhistory.pg_hba_conf"
> INFO: "pg_hba_conf": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
> INFO: vacuuming "pg_catalog.pg_class"
> INFO: "pg_class": found 35 removable, 1134 nonremovable row versions in 33
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pg_catalog.pg_class"
> INFO: "pg_class": scanned 27 of 27 pages, containing 1133 live rows and 5
> dead rows; 1133 rows in sample, 1133 estimated total rows
> INFO: vacuuming "pem.pe_rules"
> INFO: "pe_rules": found 0 removable, 31 nonremovable row versions in 1 pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pem.pe_rules"
> INFO: "pe_rules": scanned 1 of 1 pages, containing 31 live rows and 0 dead
> rows; 31 rows in sample, 31 estimated total rows
> INFO: vacuuming "pemdata.audit_logs"
> INFO: "audit_logs": found 0 removable, 0 nonremovable row versions in 0
> pages
> DETAIL: 0 dead row versions cannot be removed yet.
> CPU 0.00s/0.00u sec elapsed 0.00 sec.
> INFO: analyzing "pemdata.audit_logs"
> INFO: "audit_logs": scanned 0 of 0 pages, containing 0 live rows and 0 dead
> rows; 0 rows in sample, 0 estimated total rows
>
> Query returned successfully with no result in 6.4 secs. ====
>
> Files Screen Shot 2016-08-04 at 13.18.01.png (372 KB)
> Screen Shot 2016-08-04 at 13.19.13.png (159 KB)
> fetch_staus_msgs.patch (2.99 KB)
> ________________________________
>
> You have received this notification because you have either subscribed to
> it, or are involved in it.
> To change your notification preferences, please click here:
> https://redmine.postgresql.org/my/account



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Surinder Kumar
Дата:
Сообщение: [pgAdmin4][Patch]: RM1119 - Add proper validations in fields before processing
Следующее
От: Akshay Joshi
Дата:
Сообщение: RM #1250 Collection node counts