mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 18:13:18 +08:00
Remove warning on MacOSx
The -Werror,-Wunused-but-set-variable parameters while compiling on MacOSx were causing compilation to fail on CI. Fixed that now.
This commit is contained in:
parent
11df1dd648
commit
7d98613f28
@ -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);
|
||||
@ -944,7 +943,6 @@ row_compressor_init(CompressionSettings *settings, RowCompressor *row_compressor
|
||||
.max_metadata_attr_offset = -1,
|
||||
};
|
||||
}
|
||||
col++;
|
||||
}
|
||||
|
||||
row_compressor->index_oid =
|
||||
|
Loading…
x
Reference in New Issue
Block a user