Skip to content

Commit

Permalink
chore: interpolation call fixfrom target_schema to target_name
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatas authored and jgpruitt committed Nov 5, 2024
1 parent 627cf33 commit 227f955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/extension/sql/idempotent/013-vectorizer-api.sql
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ begin

-- make sure target table name is available
if pg_catalog.to_regclass(pg_catalog.format('%I.%I', target_schema, target_table)) is not null then
raise exception 'an object named %.% already exists. specify an alternate destination or target_table explicitly', target_schema, target_schema;
raise exception 'an object named %.% already exists. specify an alternate destination or target_table explicitly', target_schema, target_table;
end if;

-- make sure queue table name is available
Expand Down

0 comments on commit 227f955

Please sign in to comment.