mirror of https://github.com/postgres/postgres
Improve description of keys in tsvector
If all the bits of a key in a tsvector are true (marked with ALLISTRUE), gtsvectorout() would show the following description: "0 true bits, 0 false bits" This is confusing, as all the bits are true, but this would be equivalent to the information if siglen is 0. This commit improves the output so as "all true bits" show instead in this case. Alexander has proposed a regression test for pageinspect, not included here as it is rather expensive compared to its coverage value. Author: Alexander Lakhin Discussion: https://postgr.es/m/17950-6c80a8d2b94ec695@postgresql.org
This commit is contained in:
parent
ae10dbb0c5
commit
aa0d350456
|
@ -115,10 +115,15 @@ gtsvectorout(PG_FUNCTION_ARGS)
|
||||||
sprintf(outbuf, ARROUTSTR, (int) ARRNELEM(key));
|
sprintf(outbuf, ARROUTSTR, (int) ARRNELEM(key));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int siglen = GETSIGLEN(key);
|
if (ISALLTRUE(key))
|
||||||
int cnttrue = (ISALLTRUE(key)) ? SIGLENBIT(siglen) : sizebitvec(GETSIGN(key), siglen);
|
sprintf(outbuf, "all true bits");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int siglen = GETSIGLEN(key);
|
||||||
|
int cnttrue = sizebitvec(GETSIGN(key), siglen);
|
||||||
|
|
||||||
sprintf(outbuf, SINGOUTSTR, cnttrue, (int) SIGLENBIT(siglen) - cnttrue);
|
sprintf(outbuf, SINGOUTSTR, cnttrue, (int) SIGLENBIT(siglen) - cnttrue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PG_FREE_IF_COPY(key, 0);
|
PG_FREE_IF_COPY(key, 0);
|
||||||
|
|
Loading…
Reference in New Issue