mirror of https://github.com/citusdata/citus.git
remove double declaration of stripeMetadata (#20)
Compilers seem to behave differently with variable shadowing as both I and the marlin deployment have segfaults when querying a cstore table today, however, CI seem to not care :D This removes a double declaration that was not caught in #10merge-cstore-pykello
parent
434275d46b
commit
9b9b9e2cf0
|
@ -138,7 +138,6 @@ CStoreReadNextRow(TableReadState *readState, Datum *columnValues, bool *columnNu
|
|||
while (readState->stripeBuffers == NULL)
|
||||
{
|
||||
StripeBuffers *stripeBuffers = NULL;
|
||||
StripeMetadata *stripeMetadata = NULL;
|
||||
List *stripeMetadataList = readState->datafileMetadata->stripeMetadataList;
|
||||
uint32 stripeCount = list_length(stripeMetadataList);
|
||||
|
||||
|
|
Loading…
Reference in New Issue