1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Reduce log level of picksplit-doesn't-support-secondary-split whining.

This was agreed to back in 2007, but never actually done.

Josh Hansen
This commit is contained in:
Tom Lane
2013-02-09 12:17:55 -05:00
parent 3a1f8cdfa9
commit a187c96d26

View File

@ -401,7 +401,7 @@ gistUserPicksplit(Relation r, GistEntryVector *entryvec, int attno, GistSplitVec
if (sv->spl_ldatum_exists || sv->spl_rdatum_exists) if (sv->spl_ldatum_exists || sv->spl_rdatum_exists)
{ {
elog(LOG, "picksplit method for column %d of index \"%s\" doesn't support secondary split", elog(DEBUG1, "picksplit method for column %d of index \"%s\" doesn't support secondary split",
attno + 1, RelationGetRelationName(r)); attno + 1, RelationGetRelationName(r));
supportSecondarySplit(r, giststate, attno, sv, v->spl_lattr[attno], v->spl_rattr[attno]); supportSecondarySplit(r, giststate, attno, sv, v->spl_lattr[attno], v->spl_rattr[attno]);