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 unused field for ignoring invalidations #2762

Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/hypertable.c
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions src/hypertable.h
Expand Up @@ -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.
Expand Down