Skip to content

Commit

Permalink
Update aocsam.c: fix safeFSWriteSize arg type (#540)
Browse files Browse the repository at this point in the history
The goal is to achieve consistent coding with https://github.com/cloudberrydb/cloudberrydb/blob/main/src/backend/access/aocs/aocsam.c#L174

Problem tracks down to commit 6b0e52b
No behavior change is expected, just a nit-pick
  • Loading branch information
reshke authored Jul 31, 2024
1 parent a5d00de commit 057f9d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/access/aocs/aocsam.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ open_ds_read(Relation rel, DatumStreamRead **ds, TupleDesc relationTupleDesc,
ds[attno] = create_datumstreamread(ct,
clvl,
checksum,
/* safeFSWriteSize */ false, /* UNDONE:Need to wire
/* safeFSWriteSize */ 0, /* UNDONE:Need to wire
* down pg_appendonly
* column */
blksz,
Expand Down Expand Up @@ -1561,7 +1561,7 @@ aocs_fetch_init(Relation relation,
create_datumstreamread(ct,
clvl,
checksum,
/* safeFSWriteSize */ false, /* UNDONE:Need to wire
/* safeFSWriteSize */ 0, /* UNDONE:Need to wire
* down pg_appendonly
* column */
blksz,
Expand Down

0 comments on commit 057f9d2

Please sign in to comment.