diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2021-10-18 17:02:01 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2021-10-18 17:02:01 +0300 |
commit | aa3ac6453b28049b3198433b75228271b7612d4a (patch) | |
tree | b88daa5f01e81c09a0efb9e6858f2c67bb604b7d /src | |
parent | 0bd65a3905706927cdd6b3158b6457c1c854471b (diff) | |
download | postgresql-aa3ac6453b28049b3198433b75228271b7612d4a.tar.gz postgresql-aa3ac6453b28049b3198433b75228271b7612d4a.zip |
Fix duplicate typedef LogicalTape.
To make buildfarm member locust happy.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/sort/logtape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/sort/logtape.c b/src/backend/utils/sort/logtape.c index 6d7f862fb5c..48baccd6a21 100644 --- a/src/backend/utils/sort/logtape.c +++ b/src/backend/utils/sort/logtape.c @@ -134,7 +134,7 @@ typedef struct TapeBlockTrailer * buffer. The buffer therefore contains one large contiguous chunk of data * from the tape. */ -typedef struct LogicalTape +struct LogicalTape { LogicalTapeSet *tapeSet; /* tape set this tape is part of */ @@ -175,7 +175,7 @@ typedef struct LogicalTape long *prealloc; int nprealloc; /* number of elements in list */ int prealloc_size; /* number of elements list can hold */ -} LogicalTape; +}; /* * This data structure represents a set of related "logical tapes" sharing |