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

Use commit date in get_git_commit() #3101

Merged
merged 1 commit into from
Apr 13, 2021

Conversation

svenklemm
Copy link
Member

get_git_commit used the author date instead of the commit date
when showing information about the commit. For the purpose of
the function the author date is not that significant and when
the commit to the branch actually happened is much more relevant.

@svenklemm svenklemm requested a review from a team as a code owner April 10, 2021 16:45
@svenklemm svenklemm requested review from pmwkaa, k-rus and gayyappan and removed request for a team April 10, 2021 16:45
@codecov
Copy link

codecov bot commented Apr 10, 2021

Codecov Report

Merging #3101 (25986b8) into master (102064a) will increase coverage by 0.06%.
The diff coverage is 96.16%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #3101      +/-   ##
==========================================
+ Coverage   90.24%   90.31%   +0.06%     
==========================================
  Files         213      215       +2     
  Lines       34827    35251     +424     
==========================================
+ Hits        31431    31836     +405     
- Misses       3396     3415      +19     
Impacted Files Coverage Δ
src/catalog.h 100.00% <ø> (ø)
src/chunk.h 100.00% <ø> (ø)
src/chunk_index.h 100.00% <ø> (ø)
src/compat.h 100.00% <ø> (ø)
src/chunk_index.c 94.72% <91.66%> (+0.02%) ⬆️
tsl/src/nodes/skip_scan/planner.c 94.44% <94.44%> (ø)
tsl/src/nodes/skip_scan/exec.c 95.34% <95.34%> (ø)
src/catalog.c 84.61% <100.00%> (ø)
src/chunk.c 95.81% <100.00%> (+0.09%) ⬆️
src/chunk_append/chunk_append.c 97.45% <100.00%> (+0.06%) ⬆️
... and 24 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b1143de...25986b8. Read the comment docs.

get_git_commit used the author date instead of the commit date
when showing information about the commit. For the purpose of
the function the author date is not that significant and when
the commit to the branch actually happened is much more relevant.
@svenklemm svenklemm merged commit f1e78b8 into timescale:master Apr 13, 2021
@svenklemm svenklemm deleted the commit_date_fix branch April 18, 2021 14:00
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request Apr 28, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release adds support for Skip Scan on multinode by enabling the
pushdown of `DISTINCT` to data nodes and also fixes a number of bugs
in the implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on DELETE
* timescale#3155 Inherit CFLAGS from PostgreSQL
* timescale#3109 Copy recreated object permissions on update
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3102 Fix REINDEX TABLE for distributed hypertables
* timescale#3118 Fix use after free in cache
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
@mkindahl mkindahl mentioned this pull request Apr 28, 2021
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request Apr 28, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release adds support for Skip Scan on multinode by enabling the
pushdown of `DISTINCT` to data nodes and also fixes a number of bugs
in the implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on DELETE
* timescale#3155 Inherit CFLAGS from PostgreSQL
* timescale#3109 Copy recreated object permissions on update
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3102 Fix REINDEX TABLE for distributed hypertables
* timescale#3118 Fix use after free in cache
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request Apr 29, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release adds support for Skip Scan on multinode by enabling the
pushdown of `DISTINCT` to data nodes and also fixes a number of bugs
in the implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on DELETE
* timescale#3155 Inherit CFLAGS from PostgreSQL
* timescale#3109 Copy recreated object permissions on update
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3102 Fix REINDEX TABLE for distributed hypertables
* timescale#3118 Fix use after free in cache
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request Apr 29, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release adds support for Skip Scan on multinode by enabling the
pushdown of `DISTINCT` to data nodes and also fixes a number of bugs
in the implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on DELETE
* timescale#3155 Inherit CFLAGS from PostgreSQL
* timescale#3109 Copy recreated object permissions on update
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3102 Fix REINDEX TABLE for distributed hypertables
* timescale#3118 Fix use after free in cache
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request Apr 30, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release adds support for Skip Scan on multinode by enabling the
pushdown of `DISTINCT` to data nodes and also fixes a number of bugs
in the implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on DELETE
* timescale#3155 Inherit CFLAGS from PostgreSQL
* timescale#3109 Copy recreated object permissions on update
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3102 Fix REINDEX TABLE for distributed hypertables
* timescale#3118 Fix use after free in cache
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request May 3, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3102 Fix `REINDEX TABLE` for distributed hypertables
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3109 Copy recreated object permissions on update
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3118 Fix use after free in cache
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* timescale#3155 Inherit `CFLAGS` from PostgreSQL
* timescale#3169 Fix incorrect type cast in compression policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request May 3, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3102 Fix `REINDEX TABLE` for distributed hypertables
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3109 Copy recreated object permissions on update
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3118 Fix use after free in cache
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* timescale#3155 Inherit `CFLAGS` from PostgreSQL
* timescale#3169 Fix incorrect type cast in compression policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request May 4, 2021
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan, in distributed hypertables, in creation
of indexes, in compression, and in policies.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3102 Fix `REINDEX TABLE` for distributed hypertables
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3109 Copy recreated object permissions on update
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3118 Fix use after free in cache
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries with
  expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* timescale#3155 Inherit `CFLAGS` from PostgreSQL
* timescale#3169 Fix incorrect type cast in compression policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request May 4, 2021
This maintenance release contains bugfixes since the 2.2.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan, in distributed hypertables, in creation
of indexes, in compression, and in policies.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3102 Fix `REINDEX TABLE` for distributed hypertables
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3109 Copy recreated object permissions on update
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3118 Fix use after free in cache
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries
  with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* timescale#3155 Inherit `CFLAGS` from PostgreSQL
* timescale#3169 Fix incorrect type cast in compression policy
* timescale#3183 Fix segfault in calculate_chunk_interval
* timescale#3185 Fix wrong datatype in integer based retention policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit that referenced this pull request May 5, 2021
This maintenance release contains bugfixes since the 2.2.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan, in distributed hypertables, in creation
of indexes, in compression, and in policies.

**Features**
* #3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* #3101 Use commit date in `get_git_commit()`
* #3102 Fix `REINDEX TABLE` for distributed hypertables
* #3104 Fix use after free in `add_reorder_policy`
* #3106 Fix use after free in `chunk_api_get_chunk_stats`
* #3109 Copy recreated object permissions on update
* #3111 Fix `CMAKE_BUILD_TYPE` check
* #3112 Use `%u` to format Oid instead of `%d`
* #3118 Fix use after free in cache
* #3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* #3135 Fix SkipScan path generation in `DISTINCT` queries
  with expressions
* #3146 Fix SkipScan for IndexPaths without pathkeys
* #3147 Skip ChunkAppend if AppendPath has no children
* #3148 Make `SELECT DISTINCT` handle non-var targetlists
* #3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* #3155 Inherit `CFLAGS` from PostgreSQL
* #3169 Fix incorrect type cast in compression policy
* #3183 Fix segfault in calculate_chunk_interval
* #3185 Fix wrong datatype in integer based retention policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit to mkindahl/timescaledb that referenced this pull request May 5, 2021
This maintenance release contains bugfixes since the 2.2.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan, in distributed hypertables, in creation
of indexes, in compression, and in policies.

**Features**
* timescale#3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* timescale#3101 Use commit date in `get_git_commit()`
* timescale#3102 Fix `REINDEX TABLE` for distributed hypertables
* timescale#3104 Fix use after free in `add_reorder_policy`
* timescale#3106 Fix use after free in `chunk_api_get_chunk_stats`
* timescale#3109 Copy recreated object permissions on update
* timescale#3111 Fix `CMAKE_BUILD_TYPE` check
* timescale#3112 Use `%u` to format Oid instead of `%d`
* timescale#3118 Fix use after free in cache
* timescale#3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* timescale#3135 Fix SkipScan path generation in `DISTINCT` queries
  with expressions
* timescale#3146 Fix SkipScan for IndexPaths without pathkeys
* timescale#3147 Skip ChunkAppend if AppendPath has no children
* timescale#3148 Make `SELECT DISTINCT` handle non-var targetlists
* timescale#3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* timescale#3155 Inherit `CFLAGS` from PostgreSQL
* timescale#3169 Fix incorrect type cast in compression policy
* timescale#3183 Fix segfault in calculate_chunk_interval
* timescale#3185 Fix wrong datatype in integer based retention policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
mkindahl added a commit that referenced this pull request May 5, 2021
This maintenance release contains bugfixes since the 2.2.0 release. We
deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown
of `DISTINCT` to data nodes. It also fixes a number of bugs in the
implementation of Skip Scan, in distributed hypertables, in creation
of indexes, in compression, and in policies.

**Features**
* #3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip
  Scan

**Bugfixes**
* #3101 Use commit date in `get_git_commit()`
* #3102 Fix `REINDEX TABLE` for distributed hypertables
* #3104 Fix use after free in `add_reorder_policy`
* #3106 Fix use after free in `chunk_api_get_chunk_stats`
* #3109 Copy recreated object permissions on update
* #3111 Fix `CMAKE_BUILD_TYPE` check
* #3112 Use `%u` to format Oid instead of `%d`
* #3118 Fix use after free in cache
* #3123 Fix crash while using `REINDEX TABLE CONCURRENTLY`
* #3135 Fix SkipScan path generation in `DISTINCT` queries
  with expressions
* #3146 Fix SkipScan for IndexPaths without pathkeys
* #3147 Skip ChunkAppend if AppendPath has no children
* #3148 Make `SELECT DISTINCT` handle non-var targetlists
* #3151 Fix `fdw_relinfo_get` assertion failure on `DELETE`
* #3155 Inherit `CFLAGS` from PostgreSQL
* #3169 Fix incorrect type cast in compression policy
* #3183 Fix segfault in calculate_chunk_interval
* #3185 Fix wrong datatype in integer based retention policy

**Thanks**
* @Dead2, @dv8472 and @einsibjarni for reporting an issue with
  multinode queries and views
* @hperez75 for reporting an issue with Skip Scan
* @nathanloisel for reporting an issue with compression on hypertables
  with integer-based timestamps
* @xin-hedera for fixing an issue with compression on hypertables with
  integer-based timestamps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants