]> granicus.if.org Git - postgresql/commitdiff
Reduce log level of picksplit-doesn't-support-secondary-split whining.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 9 Feb 2013 17:17:55 +0000 (12:17 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 9 Feb 2013 17:17:55 +0000 (12:17 -0500)
This was agreed to back in 2007, but never actually done.

Josh Hansen

src/backend/access/gist/gistsplit.c

index fd35dd2e52d08d2922f84357913e7c1b8c464696..ff5318da61da3b7ef16529300ba29d3ab39ed506 100644 (file)
@@ -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]);