pg-qualstats (2.0.4-2) [PTS] [DDPO]
OLD: VCS is behind the version in the archive: 2.0.4-1 < 2.0.4-2.Hint: This git repository uses http. You might need to run git update-server-info to update the auxiliary info files.
- Git: https://github.com/powa-team/pg_qualstats.git
- Branch: master
- Path: debian/changelog
- Repo size: 1122304
- Browser: https://github.com/powa-team/pg_qualstats
- Last scan: 2023-03-27 20:22:08+00
- Next scan: 2023-03-28 22:27:00+00
- Debian changelog in Git:
pg-qualstats (2.0.4-1) unstable; urgency=medium * New upstream version with support for PostgreSQL 15. -- Julien Rouhaud <rjuju123@gmail.com> Mon, 16 May 2022 14:44:30 +0800
- This branch is 8 commits ahead of tag debian/2.0.4-1
- Git log:
commit 64caea703e93b685f3f22ae63be0793f290457bc Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Sat Jan 14 10:02:57 2023 +0800 Update copyright year. commit c0b6ca06db307ed9ddd53b3facb0bc0c22b655b3 Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Tue Aug 23 22:32:24 2022 +0800 Make sure that pg_qualstats_index_advisor always returns arrays Thanks to github user romanstingler for the report. commit 66b3037fd978e8197783e420343f37a37c277997 Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Sun May 22 18:28:24 2022 +0800 Add forgotten change in upgrade script. commit d203b05c4e53012d599191e702d7c8d6fe3c8222 Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Sun May 22 11:10:27 2022 +0800 advisor: attach queryids to each unoptimised qual. Unoptimised quals are also important as they require manual inspection, so it's better to be more precise about them. The returns json now looks like: { "indexes": [ { "ddl": "CREATE INDEX ...", "queryids": [...] }, ... ], "unoptimised": [ { "qual": ["tbl.col OP ?"], "queryids": [...] }, ... ] } commit 72e84f1f451b7cb2818c64177970babc6918d5be Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Sat May 21 12:34:52 2022 +0800 Teach the advisor about queryid. The advisor now returns the list of queryid, if any, with each possible index and the list of optimisable quals. The structure of the returned json changed, so this is an API break. The returned json now looks like: { "indexes": [ { "ddl": "CREATE INDEX ...", "queryids": [...] }, ... ], "unoptimised": { "quals": ["tbl.col OP ?", ...], "queryids": [...] } } Per request from Zhihong Yu. commit 0129cf4598dd8b71f8f332aee259e44ff031a003 Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Fri May 20 16:13:34 2022 +0800 Fix extension relocability. This extension isn't fully relocatable. It internally needs to reference the target schema explicitly, so a custom schema can only be set as installation time. Mark it as not relocatable in the control file and properly handle the schema qualification in the install script. Regression tests are updated to validate that the extension work when installed in a custom and not visible schema. commit 9632a7e99106542e35beaa98b86300984103d279 Author: Julien Rouhaud <julien.rouhaud@free.fr> Date: Fri May 20 16:03:15 2022 +0800 Start working on 2.1.0 commit 1e2323195bb6b2c008bbf9c592e95dbab44be2e6 Author: Ted Yu <yuzhihong@gmail.com> Date: Wed May 18 18:59:29 2022 -0700 Minor code refactoring