Closed soedirgo closed 1 year ago
::regclass already escapes identifier names, no need to %I it. E.g. auth.users would be double-escaped into "auth.users" instead of "auth"."users"
::regclass
%I
auth.users
"auth.users"
"auth"."users"
::regclass
already escapes identifier names, no need to%I
it. E.g.auth.users
would be double-escaped into"auth.users"
instead of"auth"."users"