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 #5404pull/5401/head
parent
fc00ddee4e
commit
3bdbfc3edf
|
@ -85,7 +85,6 @@ typedef struct ColumnarScanDescData
|
|||
List *scanQual;
|
||||
} ColumnarScanDescData;
|
||||
|
||||
typedef struct ColumnarScanDescData *ColumnarScanDesc;
|
||||
|
||||
/*
|
||||
* IndexFetchColumnarData is the scan state passed between index_fetch_begin,
|
||||
|
|
Loading…
Reference in New Issue