fix: db-pre-config function failing with pg reserved words

When db-pre-config is accidentally set to a pg reserved word
like "true", it fails with a confusing error. The function
names should be properly quoted to avoid such errors. This commit
resolves this by quoting the pre-config function name.

Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
(cherry picked from commit a688878236)
This commit is contained in:
Taimoor Zaeem
2025-10-30 14:32:37 -05:00
committed by Steve Chavez
parent 939061baff
commit 4aa712b9d8
6 changed files with 58 additions and 2 deletions
+4
View File
@@ -256,3 +256,7 @@ select * from projects;
create or replace view infinite_recursion as
select * from infinite_recursion;
create or replace function "true"() returns boolean as $_$
select true;
$_$ language sql;