I have the following code to create a function that truncates all rows from the table web_channel2
if the table is not empty:
create or replace function truncate_if_exists(tablename text)
returns void language plpgsql as $$
begin
select
from information_schema.tables
where table_name = tablename;
if found then
execute format('truncate %I', tablename);
end if;
end $$;
Unfortunately I don't know how should I continue ... How to execute the function?
TLDR
To execute a Postgres function (returning void), call it with
SELECT
:Proper solution
Delete the function again.
It does not offer any way to schema-qualify the table. Using it might truncate the wrong table ...
Looks like you are trying to avoid an exception if the table is not there.
And you only want to truncate ...
To that end, I might use a safe function like this:
To execute, call it with
SELECT
:If no schema is provided, the function falls back to traversing the
search_path
- like your original did. If that's unreliable, or generally, to be safe (which seems prudent when truncating tables!) provide the schema explicitly:db<>fiddle here
When providing identifiers as strings, you need to use exact capitalization.
Why the custom variable
_row_found
instead ofFOUND
? See:Basics:
Table name as a PostgreSQL function parameter
How to check if a table exists in a given schema
PL/pgSQL checking if a row exists
How does the search_path influence identifier resolution and the "current schema"
Are PostgreSQL column names case-sensitive?