pg_relation_size関数でエラー
text型を引数に指定すると、こんなエラーが出ます。
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
テーブルサイズを知りたいときは、regclassに型キャストしてあげましょう。
pg_relation_size(tablename::regclass)
カテゴリ:
PostgreSQL