Skip to content

Commit b5faf4f

Browse files
committed
docs: changelog for v1.17.0
1 parent cc06edc commit b5faf4f

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to the "PostgreSQL Hacker Helper" extension will be document
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.17.0]
9+
10+
### Added
11+
12+
Show values of attributes in TupleTableSlot. They are shown in `$attributes$` member and only `tts_nvalid` count.
13+
14+
### Changed
15+
16+
Do not perform any memory allocations and syscache usage if we are inside Bump memory context. Otherwise `pfree` will throw an ERROR.
17+
18+
### Fix
19+
20+
Added missing `await` for `checkCanAlloc`.
21+
822
## [1.16.1]
923

1024
### Changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Extension provides assistance with postgres variables:
1818
- View `Node *` variables with real type according to `NodeTag`
1919
- Get the contents of container types: `List *`, `HTAB *`, `Bitmapset *`
2020
- Render `Expr` nodes by the original expression
21-
- Show integer enums as enum values, not integers
21+
- Display integer enums as enum values, not integers
22+
- Show attribute values for `TupleTableSlot`
2223

2324
Extension creates separate view in debug section - `PG Variables`. It contains postgres variables - extended with knowledge of source code.
2425

@@ -39,6 +40,7 @@ Extension creates separate view in debug section - `PG Variables`. It contains p
3940
- `RangeTblEntry` - `alias` or `eref` value
4041
- `NameData` - string value directly
4142
- Enum values, which defined using preprocessor (`#define`) are shown as enum values, not integers.
43+
- `TupleTableSlot` attribute values are shown. Values are rendered using type's out functions.
4244

4345
### Formatting
4446

0 commit comments

Comments
 (0)