Re: Information schema sql_identifier

Поиск
Список
Период
Сортировка
От Laurenz Albe
Тема Re: Information schema sql_identifier
Дата
Msg-id 612fdeaf511c9eca2ccfff50e605461213890604.camel@cybertec.at
обсуждение исходный текст
Ответ на Information schema sql_identifier  (Adrian Klaver <adrian.klaver@aklaver.com>)
Ответы Re: Information schema sql_identifier
Список pgsql-general
On Tue, 2020-12-22 at 16:07 -0800, Adrian Klaver wrote:
> This came up in this SO question:
> 
> https://stackoverflow.com/questions/65416748/postgres-12-4-gives-function-does-not-exists-error
> 
> Where the query is:
> 
> SELECT (TABLE_SCHEMA || '"."' || TABLE_NAME) as table_name,
>         pg_size_pretty(pg_table_size(table_name)) as table_size,
>         pg_size_pretty(pg_indexes_size(table_name)) AS indexes_size,
>         pg_size_pretty(pg_total_relation_size(table_name)) as total_size
> from information_schema.TABLES nowait
> where TABLE_SCHEMA='myschema'
> order by pg_total_relation_size(table_name) desc;
> 
> And the error is:
> 
> "ERROR:  function pg_table_size(information_schema.sql_identifier) does not exist
> LINE 1: ..."."' || TABLE_NAME) as table_name, pg_size_pretty(pg_table_s..."

I don't see the problem.

Cast "table_name" and "table_schema" to "text" wherever it occurs.

Yours,
Laurenz Albe
-- 
Cybertec | https://www.cybertec-postgresql.com




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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Information schema sql_identifier
Следующее
От: Lars Vonk
Дата:
Сообщение: Re: Missing rows after migrating from postgres 11 to 12 with logical replication