From a187c96d26520695fc392edb1c8f38d86b16ef5b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 9 Feb 2013 12:17:55 -0500 Subject: [PATCH] Reduce log level of picksplit-doesn't-support-secondary-split whining. This was agreed to back in 2007, but never actually done. Josh Hansen --- src/backend/access/gist/gistsplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/gist/gistsplit.c b/src/backend/access/gist/gistsplit.c index fd35dd2e52..ff5318da61 100644 --- a/src/backend/access/gist/gistsplit.c +++ b/src/backend/access/gist/gistsplit.c @@ -401,7 +401,7 @@ gistUserPicksplit(Relation r, GistEntryVector *entryvec, int attno, GistSplitVec 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)); supportSecondarySplit(r, giststate, attno, sv, v->spl_lattr[attno], v->spl_rattr[attno]); -- 2.40.0