Skip to content

Commit

Permalink
Remove warning on MacOSx
Browse files Browse the repository at this point in the history
The -Werror,-Wunused-but-set-variable parameters while compiling on
MacOSx were causing compilation to fail on CI. Fixed that now.
  • Loading branch information
nikkhils committed Dec 14, 2023
1 parent 11df1dd commit 7d98613
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tsl/src/compression/compression.c
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,6 @@ row_compressor_init(CompressionSettings *settings, RowCompressor *row_compressor

memset(row_compressor->compressed_is_null, 1, sizeof(bool) * num_columns_in_compressed_table);

int col = 0;
for (int i = 0; i < uncompressed_tuple_desc->natts; i++)
{
Form_pg_attribute attr = TupleDescAttr(uncompressed_tuple_desc, i);
Expand Down Expand Up @@ -944,7 +943,6 @@ row_compressor_init(CompressionSettings *settings, RowCompressor *row_compressor
.max_metadata_attr_offset = -1,
};
}
col++;
}

row_compressor->index_oid =
Expand Down

0 comments on commit 7d98613

Please sign in to comment.