Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warning on MacOSx #6427

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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