From 11fc152ffa88cbf4e1809f1d9aa9ae1b3a592f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B6m?= Date: Sat, 19 Dec 2020 15:42:30 +0100 Subject: [PATCH] Remove unused field for ignoring invalidations Remove an unused field called `max_ignore_invalidation_older_than` that was left in the `Hypertable` struct after refactoring of continuous aggregates. --- src/hypertable.c | 1 - src/hypertable.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/hypertable.c b/src/hypertable.c index 90eff10da0a..b3752782945 100644 --- a/src/hypertable.c +++ b/src/hypertable.c @@ -249,7 +249,6 @@ ts_hypertable_from_tupleinfo(const TupleInfo *ti) h->chunk_cache = ts_subspace_store_init(h->space, ti->mctx, ts_guc_max_cached_chunks_per_hypertable); h->chunk_sizing_func = get_chunk_sizing_func_oid(&h->fd); - h->max_ignore_invalidation_older_than = -1; h->data_nodes = ts_hypertable_data_node_scan(h->fd.id, ti->mctx); return h; diff --git a/src/hypertable.h b/src/hypertable.h index fe7634dc5c4..4380ff0760f 100644 --- a/src/hypertable.h +++ b/src/hypertable.h @@ -51,8 +51,6 @@ typedef struct Hypertable Oid chunk_sizing_func; Hyperspace *space; SubspaceStore *chunk_cache; - int64 max_ignore_invalidation_older_than; /* lazy-loaded, do not access directly, use - ts_hypertable_get_ignore_invalidation_older_than */ /* * Allows restricting the data nodes to use for the hypertable. Default is to * use all available data nodes.