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 @@ -8444,7 +8444,7 @@ main(int argc, char **argv)
8444
8444
exit_nicely(conn);
8445
8445
}
8446
8446
8447
- /* Set always-secure search path, so malicous users can't take control. */
8447
+ /* Set always-secure search path, so malicious users can't take control. */
8448
8448
res = PQexec(conn,
8449
8449
"SELECT pg_catalog.set_config('search_path', '', false)");
8450
8450
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8614,7 +8614,7 @@ main(int argc, char **argv)
8614
8614
exit_nicely(conn);
8615
8615
}
8616
8616
8617
- /* Set always-secure search path, so malicous users can't take control. */
8617
+ /* Set always-secure search path, so malicious users can't take control. */
8618
8618
res = PQexec(conn,
8619
8619
"SELECT pg_catalog.set_config('search_path', '', false)");
8620
8620
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8841,7 +8841,7 @@ main(int argc, char **argv)
8841
8841
exit_nicely(conn);
8842
8842
}
8843
8843
8844
- /* Set always-secure search path, so malicous users can't take control. */
8844
+ /* Set always-secure search path, so malicious users can't take control. */
8845
8845
res = PQexec(conn, "SET search_path = testlibpq3");
8846
8846
if (PQresultStatus(res) != PGRES_COMMAND_OK)
8847
8847
{
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