mirror of https://github.com/citusdata/citus.git
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
parent
ef2c6d51b2
commit
425ca713ff
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue