File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,20 @@ All notable changes to the "PostgreSQL Hacker Helper" extension will be document
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
Original file line number Diff line number Diff 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
2324Extension 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
You can’t perform that action at this time.
0 commit comments