Skip to content

Commit

Permalink
style checks
Browse files Browse the repository at this point in the history
  • Loading branch information
akuzm committed Feb 3, 2025
1 parent 2998d65 commit 088c13e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions sql/sparse_index.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
-- This file and its contents are licensed under the Apache License 2.0.
-- Please see the included NOTICE for copyright information and
-- LICENSE-APACHE for a copy of the license.

CREATE OR REPLACE FUNCTION _timescaledb_functions.ts_bloom1_matches(bytea, anyelement)
RETURNS bool
AS '@MODULE_PATHNAME@', 'ts_bloom1_matches'
Expand Down
3 changes: 2 additions & 1 deletion tsl/src/compression/create.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,9 +322,10 @@ build_columndefs(CompressionSettings *settings, Oid src_relid)
BYTEAOID,
/* typmod = */ -1,
/* collation = */ 0);

/*
* We have our internal compression for bloom filters, and the
* result is almost uncompressible with lz4 (~2%), so disable it.
* result is almost incompressible with lz4 (~2%), so disable it.
*/
bloom_column_def->storage = TYPSTORAGE_EXTERNAL;

Expand Down

0 comments on commit 088c13e

Please sign in to comment.