1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-26 09:41:40 +03:00

Fix some typos across the board

Found while browsing the code.
This commit is contained in:
Michael Paquier
2026-01-11 08:16:46 +09:00
parent e5a5e0a907
commit 1c0f6c3879
3 changed files with 3 additions and 3 deletions

View File

@@ -144,7 +144,7 @@ psql_command(
err_like => [qr/You are welcome/]);
# Try to login as allowed Alice. We don't check the Mallory login, because
# FATAL error could cause a timing-dependant panic of IPC::Run.
# FATAL error could cause a timing-dependent panic of IPC::Run.
psql_command(
$node, 'SELECT 1;', 0, 'try regress_alice',
connstr => 'user=regress_alice',

View File

@@ -29,7 +29,7 @@ select type, name, ident, level, total_bytes >= free_bytes
(1 row)
-- We can exercise some MemoryContext type stats functions. Most of the
-- column values are too platform-dependant to display.
-- column values are too platform-dependent to display.
-- Ensure stats from the bump allocator look sane. Bump isn't a commonly
-- used context, but it is used in tuplesort.c, so open a cursor to keep
-- the tuplesort alive long enough for us to query the context stats.

View File

@@ -18,7 +18,7 @@ select type, name, ident, level, total_bytes >= free_bytes
from pg_backend_memory_contexts where level = 1;
-- We can exercise some MemoryContext type stats functions. Most of the
-- column values are too platform-dependant to display.
-- column values are too platform-dependent to display.
-- Ensure stats from the bump allocator look sane. Bump isn't a commonly
-- used context, but it is used in tuplesort.c, so open a cursor to keep