Skip to content

Commit a95ee7a

Browse files
committed
fixup! WIP2
1 parent b867c4a commit a95ee7a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/smgr/pg_tde_smgr.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ tde_mdwritev(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
284284

285285
static void
286286
tde_mdwrite(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
287-
const void *buffer, bool skipFsync)
287+
const void *buffer, bool skipFsync)
288288
{
289289
TDESMgrRelation *tdereln = (TDESMgrRelation *) reln;
290290

@@ -433,10 +433,10 @@ tde_mdread(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
433433
* Detect unencrypted all-zero pages written by smgrzeroextend() by
434434
* looking at the first 32 bytes of the page.
435435
*
436-
* Not encrypting all-zero pages is safe because they are only written
437-
* at the end of the file when extending a table on disk so they tend
438-
* to be short lived plus they only leak a slightly more accurate
439-
* table size than one can glean from just the file size.
436+
* Not encrypting all-zero pages is safe because they are only written at
437+
* the end of the file when extending a table on disk so they tend to be
438+
* short lived plus they only leak a slightly more accurate table size
439+
* than one can glean from just the file size.
440440
*/
441441
for (int j = 0; j < 32; ++j)
442442
{

0 commit comments

Comments
 (0)