File tree 3 files changed +5
-5
lines changed
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)
8478
8478
exit_nicely(conn);
8479
8479
}
8480
8480
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. */
8482
8482
res = PQexec(conn,
8483
8483
"SELECT pg_catalog.set_config('search_path', '', false)");
8484
8484
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8648,7 +8648,7 @@ main(int argc, char **argv)
8648
8648
exit_nicely(conn);
8649
8649
}
8650
8650
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. */
8652
8652
res = PQexec(conn,
8653
8653
"SELECT pg_catalog.set_config('search_path', '', false)");
8654
8654
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8875,7 +8875,7 @@ main(int argc, char **argv)
8875
8875
exit_nicely(conn);
8876
8876
}
8877
8877
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. */
8879
8879
res = PQexec(conn, "SET search_path = testlibpq3");
8880
8880
if (PQresultStatus(res) != PGRES_COMMAND_OK)
8881
8881
{
Original file line number Diff line number Diff line change @@ -933,7 +933,7 @@ main(int argc, char **argv)
933
933
exit_nicely(conn);
934
934
}
935
935
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. */
937
937
res = PQexec(conn,
938
938
"SELECT pg_catalog.set_config('search_path', '', false)");
939
939
if (PQresultStatus(res) != PGRES_TUPLES_OK)
Original file line number Diff line number Diff line change 377
377
some care must be taken when truncating groups of tables connected by
378
378
foreign keys. When replicating a truncate action, the subscriber will
379
379
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
381
381
<literal>CASCADE</literal>, minus tables that are not part of the
382
382
subscription. This will work correctly if all affected tables are part
383
383
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