diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-02-09 12:17:55 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-02-09 12:17:55 -0500 |
commit | a187c96d26520695fc392edb1c8f38d86b16ef5b (patch) | |
tree | 4e234b58cc6fbb77f4dd278ba153453aff560ec2 /src/backend/access/gist/gistsplit.c | |
parent | 3a1f8cdfa90443117049c601364009b71eaad3d1 (diff) | |
download | postgresql-a187c96d26520695fc392edb1c8f38d86b16ef5b.tar.gz postgresql-a187c96d26520695fc392edb1c8f38d86b16ef5b.zip |
Reduce log level of picksplit-doesn't-support-secondary-split whining.
This was agreed to back in 2007, but never actually done.
Josh Hansen
Diffstat (limited to 'src/backend/access/gist/gistsplit.c')
-rw-r--r-- | src/backend/access/gist/gistsplit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gist/gistsplit.c b/src/backend/access/gist/gistsplit.c index fd35dd2e52d..ff5318da61d 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]); |