vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
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