mirror of
https://github.com/HypoPG/hypopg
synced 2026-05-24 09:38:21 +00:00
Release 1.1.0
This commit is contained in:
parent
e75145cb74
commit
7a3c36ff76
3 changed files with 18 additions and 5 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -1,26 +1,35 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
WIP version 1.1.0:
|
||||
New features
|
||||
2017-10-04 version 1.1.0:
|
||||
-------------------------
|
||||
|
||||
**New features**:
|
||||
|
||||
- add support for hypothetical indexes on expression
|
||||
- add a hypopg_get_indexdef() function to get definition of a stored
|
||||
hypothetical index
|
||||
Bug fixes:
|
||||
|
||||
**Bug fixes**:
|
||||
|
||||
- don't allow hypothetical unique or multi-column index if the AM doesn't
|
||||
support it
|
||||
- disallow hypothetical indexes on system columns (except OID)
|
||||
- fix indexes using DESC clause and default NULLS ordering, thanks to
|
||||
Andrew Kane for the report and test case.
|
||||
- fix PostgreSQL 9.6+ support, thanks to Rob Stolarz for the report
|
||||
Miscellaneous:
|
||||
|
||||
**Miscellaneous**:
|
||||
|
||||
- add support for PostgreSQL 10
|
||||
|
||||
2016-10-24 version 1.0.0:
|
||||
-------------------------
|
||||
|
||||
- fix memory leak in hypopg() function
|
||||
|
||||
2016-07-07 version 0.0.5:
|
||||
-------------------------
|
||||
|
||||
- add support for PostgreSQL 9.6, thanks to Konstantin Mosolov for fixing some
|
||||
issues
|
||||
|
|
@ -30,6 +39,7 @@ WIP version 1.1.0:
|
|||
- fix possible crash in hypothetical index size estimation
|
||||
|
||||
2015-11-06 version 0.0.4:
|
||||
-------------------------
|
||||
|
||||
- remove the simplified "hypopg_add_index()" function
|
||||
- free memory when hypothetical index creation fails
|
||||
|
|
@ -42,6 +52,7 @@ WIP version 1.1.0:
|
|||
- safer handling of locks.
|
||||
|
||||
2015-08-08 version 0.0.3:
|
||||
-------------------------
|
||||
|
||||
- fix a bug when a regular query could fail after a hypothetical index have
|
||||
been created, and tested with explain.
|
||||
|
|
@ -51,10 +62,12 @@ WIP version 1.1.0:
|
|||
backend. Thanks to Ronan Dunklau for the patch.
|
||||
|
||||
2015-07-08 version 0.0.2:
|
||||
-------------------------
|
||||
|
||||
- fix crash when building hypothetical index on expression, thanks to Thom
|
||||
Brown for the report.
|
||||
|
||||
2015-06-24 version 0.0.1:
|
||||
-------------------------
|
||||
|
||||
- First version of HypoPG.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# hypopg extension
|
||||
comment = 'Hypothetical indexes for PostgreSQL'
|
||||
default_version = '1.1.0dev'
|
||||
default_version = '1.1.0'
|
||||
module_pathname = '$libdir/hypopg'
|
||||
relocatable = true
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue