Skip to content

Commit a234177

Browse files
author
Amit Kapila
committed
1 parent 08f8af9 commit a234177

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

doc/src/sgml/runtime.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2204,7 +2204,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
22042204
With <acronym>SSL</acronym> support compiled in, the
22052205
<productname>PostgreSQL</productname> server can be started with
22062206
support for encrypted connections using <acronym>TLS</acronym> protocols
2207-
enabled by by setting the parameter
2207+
enabled by setting the parameter
22082208
<xref linkend="guc-ssl"/> to <literal>on</literal> in
22092209
<filename>postgresql.conf</filename>. The server will listen for both normal
22102210
and <acronym>SSL</acronym> connections on the same TCP port, and will negotiate

src/backend/catalog/pg_attrdef.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ RemoveAttrDefaultById(Oid attrdefId)
331331

332332
/*
333333
* Get the pg_attrdef OID of the default expression for a column
334-
* identified by relation OID and and column number.
334+
* identified by relation OID and column number.
335335
*
336336
* Returns InvalidOid if there is no such pg_attrdef entry.
337337
*/

src/backend/replication/logical/decode.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ LogicalDecodingProcessRecord(LogicalDecodingContext *ctx, XLogReaderState *recor
126126
}
127127

128128
/*
129-
* Handle rmgr XLOG_ID records for DecodeRecordIntoReorderBuffer().
129+
* Handle rmgr XLOG_ID records for LogicalDecodingProcessRecord().
130130
*/
131131
void
132132
xlog_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
@@ -169,7 +169,7 @@ xlog_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
169169
}
170170

171171
/*
172-
* Handle rmgr XACT_ID records for DecodeRecordIntoReorderBuffer().
172+
* Handle rmgr XACT_ID records for LogicalDecodingProcessRecord().
173173
*/
174174
void
175175
xact_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
@@ -326,7 +326,7 @@ xact_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
326326
}
327327

328328
/*
329-
* Handle rmgr STANDBY_ID records for DecodeRecordIntoReorderBuffer().
329+
* Handle rmgr STANDBY_ID records for LogicalDecodingProcessRecord().
330330
*/
331331
void
332332
standby_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
@@ -372,7 +372,7 @@ standby_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
372372
}
373373

374374
/*
375-
* Handle rmgr HEAP2_ID records for DecodeRecordIntoReorderBuffer().
375+
* Handle rmgr HEAP2_ID records for LogicalDecodingProcessRecord().
376376
*/
377377
void
378378
heap2_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
@@ -432,7 +432,7 @@ heap2_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
432432
}
433433

434434
/*
435-
* Handle rmgr HEAP_ID records for DecodeRecordIntoReorderBuffer().
435+
* Handle rmgr HEAP_ID records for LogicalDecodingProcessRecord().
436436
*/
437437
void
438438
heap_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
@@ -554,7 +554,7 @@ FilterByOrigin(LogicalDecodingContext *ctx, RepOriginId origin_id)
554554
}
555555

556556
/*
557-
* Handle rmgr LOGICALMSG_ID records for DecodeRecordIntoReorderBuffer().
557+
* Handle rmgr LOGICALMSG_ID records for LogicalDecodingProcessRecord().
558558
*/
559559
void
560560
logicalmsg_decode(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)

src/test/regress/expected/foreign_key.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2440,7 +2440,7 @@ DELETE FROM pt;
24402440
DELETE FROM ref;
24412441
ABORT;
24422442
DROP TABLE pt, ref;
2443-
-- Multi-level partitioning at at referenced end
2443+
-- Multi-level partitioning at referenced end
24442444
CREATE TABLE pt(f1 int, f2 int, f3 int, PRIMARY KEY(f1,f2))
24452445
PARTITION BY LIST(f1);
24462446
CREATE TABLE pt1_2 PARTITION OF pt FOR VALUES IN (1, 2) PARTITION BY LIST (f1);

src/test/regress/sql/foreign_key.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,7 @@ DELETE FROM pt;
17421742
DELETE FROM ref;
17431743
ABORT;
17441744
DROP TABLE pt, ref;
1745-
-- Multi-level partitioning at at referenced end
1745+
-- Multi-level partitioning at referenced end
17461746
CREATE TABLE pt(f1 int, f2 int, f3 int, PRIMARY KEY(f1,f2))
17471747
PARTITION BY LIST(f1);
17481748
CREATE TABLE pt1_2 PARTITION OF pt FOR VALUES IN (1, 2) PARTITION BY LIST (f1);

0 commit comments

Comments
 (0)