mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 18:13:18 +08:00
Release 0.3.0
This commit is contained in:
parent
2200010ddb
commit
d1f66c5af4
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,5 +1,17 @@
|
||||
# TimescaleDB Changelog
|
||||
|
||||
## 0.3.0 (2017-07-31)
|
||||
|
||||
**High-level changes**
|
||||
* "Upserts" are now supported via normal `ON CONFLICT DO UPDATE`/`ON CONFLICT DO NOTHING` syntax. However, `ON CONFLICT ON CONSTRAINT` is not yet supported.
|
||||
* Improved support for user-defined triggers on hypertables. Now handles both INSERT BEFORE and INSERT AFTER triggers, and triggers can be named arbitrarily (before, a \_0\_ prefix was required to ensure correct execution priority).
|
||||
* `TRUNCATE` on a hypertable now deletes empty chunks.
|
||||
|
||||
**Notable commits**
|
||||
* [23f9d3c] Add support for upserts (`ON CONFLICT DO UPDATE`)
|
||||
* [1f3dcd8] Make `INSERT`s use a custom plan instead of triggers
|
||||
* [f23bf58] Remove empty chunks on `TRUNCATE` hypertable.
|
||||
|
||||
## 0.2.0 (2017-07-12)
|
||||
|
||||
**High-level changes**
|
||||
|
@ -1,2 +1 @@
|
||||
sql/timescaledb--0.1.0--0.2.0.sql
|
||||
|
||||
|
2446
sql/timescaledb--0.2.0--0.3.0.sql
Normal file
2446
sql/timescaledb--0.2.0--0.3.0.sql
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
# timescaledb extension
|
||||
comment = 'Enables scalable inserts and complex queries for time-series data'
|
||||
default_version = '0.2.1-dev'
|
||||
default_version = '0.3.0'
|
||||
module_pathname = '$libdir/timescaledb'
|
||||
relocatable = true
|
||||
|
Loading…
x
Reference in New Issue
Block a user