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
pull/5401/head
Jelte Fennema 2021-10-25 14:20:13 +02:00 committed by GitHub
parent fc00ddee4e
commit 3bdbfc3edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

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