mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-19 12:13:24 +08:00
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.
This commit is contained in:
parent
3bd29da988
commit
ec82d16154
@ -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;
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user