From 088c13eb1dce72065b438db82bc507d078aab007 Mon Sep 17 00:00:00 2001 From: Alexander Kuzmenkov <36882414+akuzm@users.noreply.github.com> Date: Mon, 3 Feb 2025 16:02:16 +0100 Subject: [PATCH] style checks --- sql/sparse_index.sql | 4 ++++ tsl/src/compression/create.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/sql/sparse_index.sql b/sql/sparse_index.sql index 5ca9831902f..d4447972ec8 100644 --- a/sql/sparse_index.sql +++ b/sql/sparse_index.sql @@ -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' diff --git a/tsl/src/compression/create.c b/tsl/src/compression/create.c index ace53a98c55..a22ec4a9b7e 100644 --- a/tsl/src/compression/create.c +++ b/tsl/src/compression/create.c @@ -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;