Fix duplicate typedef which can cause compile failures (#5406)

ColumnarScanDesc is already defined in columnar_tableam.h. Redifining it
again causes a compiler error on some C compilers.

Useful reference: https://bugzilla.redhat.com/show_bug.cgi?id=767538

Fixes #5404

(cherry picked from commit 3bdbfc3edf)
10_2_onder_locks
Jelte Fennema 2021-10-25 14:20:13 +02:00
parent ef2c6d51b2
commit 425ca713ff
1 changed files with 0 additions and 1 deletions

View File

@ -85,7 +85,6 @@ typedef struct ColumnarScanDescData
List *scanQual; List *scanQual;
} ColumnarScanDescData; } ColumnarScanDescData;
typedef struct ColumnarScanDescData *ColumnarScanDesc;
/* /*
* IndexFetchColumnarData is the scan state passed between index_fetch_begin, * IndexFetchColumnarData is the scan state passed between index_fetch_begin,