mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
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.
This commit is contained in:
parent
dea4343535
commit
77dedeb2c4
@ -1955,9 +1955,9 @@ check_publications_origin(WalReceiverConn *wrconn, List *publications,
|
||||
appendStringInfoString(&cmd,
|
||||
"SELECT DISTINCT P.pubname AS pubname\n"
|
||||
"FROM pg_publication P,\n"
|
||||
" LATERAL pg_get_publication_tables(P.pubname) GPT\n"
|
||||
" JOIN pg_subscription_rel PS ON (GPT.relid = PS.srrelid),\n"
|
||||
" pg_class C JOIN pg_namespace N ON (N.oid = C.relnamespace)\n"
|
||||
" LATERAL pg_get_publication_tables(P.pubname) GPT\n"
|
||||
" JOIN pg_subscription_rel PS ON (GPT.relid = PS.srrelid),\n"
|
||||
" pg_class C JOIN pg_namespace N ON (N.oid = C.relnamespace)\n"
|
||||
"WHERE C.oid = GPT.relid AND P.pubname IN (");
|
||||
get_publications_str(publications, &cmd, true);
|
||||
appendStringInfoString(&cmd, ")\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user