Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 77dedeb

Browse files
committed
Remove some tabs in SQL code in C string literals
This is not handled uniformly throughout the code, but at least nearby code can be consistent.
1 parent dea4343 commit 77dedeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/commands/subscriptioncmds.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1955,9 +1955,9 @@ check_publications_origin(WalReceiverConn *wrconn, List *publications,
19551955
appendStringInfoString(&cmd,
19561956
"SELECT DISTINCT P.pubname AS pubname\n"
19571957
"FROM pg_publication P,\n"
1958-
" LATERAL pg_get_publication_tables(P.pubname) GPT\n"
1959-
" JOIN pg_subscription_rel PS ON (GPT.relid = PS.srrelid),\n"
1960-
" pg_class C JOIN pg_namespace N ON (N.oid = C.relnamespace)\n"
1958+
" LATERAL pg_get_publication_tables(P.pubname) GPT\n"
1959+
" JOIN pg_subscription_rel PS ON (GPT.relid = PS.srrelid),\n"
1960+
" pg_class C JOIN pg_namespace N ON (N.oid = C.relnamespace)\n"
19611961
"WHERE C.oid = GPT.relid AND P.pubname IN (");
19621962
get_publications_str(publications, &cmd, true);
19631963
appendStringInfoString(&cmd, ")\n");

0 commit comments

Comments
 (0)