File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8478,7 +8478,7 @@ main(int argc, char **argv)
84788478 exit_nicely(conn);
84798479 }
84808480
8481- /* Set always-secure search path, so malicous users can't take control. */
8481+ /* Set always-secure search path, so malicious users can't take control. */
84828482 res = PQexec(conn,
84838483 "SELECT pg_catalog.set_config('search_path', '', false)");
84848484 if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8648,7 +8648,7 @@ main(int argc, char **argv)
86488648 exit_nicely(conn);
86498649 }
86508650
8651- /* Set always-secure search path, so malicous users can't take control. */
8651+ /* Set always-secure search path, so malicious users can't take control. */
86528652 res = PQexec(conn,
86538653 "SELECT pg_catalog.set_config('search_path', '', false)");
86548654 if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8875,7 +8875,7 @@ main(int argc, char **argv)
88758875 exit_nicely(conn);
88768876 }
88778877
8878- /* Set always-secure search path, so malicous users can't take control. */
8878+ /* Set always-secure search path, so malicious users can't take control. */
88798879 res = PQexec(conn, "SET search_path = testlibpq3");
88808880 if (PQresultStatus(res) != PGRES_COMMAND_OK)
88818881 {
Original file line number Diff line number Diff line change @@ -933,7 +933,7 @@ main(int argc, char **argv)
933933 exit_nicely(conn);
934934 }
935935
936- /* Set always-secure search path, so malicous users can't take control. */
936+ /* Set always-secure search path, so malicious users can't take control. */
937937 res = PQexec(conn,
938938 "SELECT pg_catalog.set_config('search_path', '', false)");
939939 if (PQresultStatus(res) != PGRES_TUPLES_OK)
Original file line number Diff line number Diff line change 377377 some care must be taken when truncating groups of tables connected by
378378 foreign keys. When replicating a truncate action, the subscriber will
379379 truncate the same group of tables that was truncated on the publisher,
380- either explictly specified or implicitly collected via
380+ either explicitly specified or implicitly collected via
381381 <literal>CASCADE</literal>, minus tables that are not part of the
382382 subscription. This will work correctly if all affected tables are part
383383 of the same subscription. But if some tables to be truncated on the
You can’t perform that action at this time.
0 commit comments