]> granicus.if.org Git - postgis/commitdiff
#2342, demote join type message to debug
authorPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 30 Jun 2015 12:45:48 +0000 (12:45 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 30 Jun 2015 12:45:48 +0000 (12:45 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13755 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/gserialized_estimate.c

index 841fffb7ee8cae087da7629c4482ef74db34e3f9..df46fc055690666a33315e634dfa950a503aed50 100644 (file)
@@ -1161,7 +1161,7 @@ Datum gserialized_gist_joinsel(PG_FUNCTION_ARGS)
        /* Only respond to an inner join/unknown context join */
        if (jointype != JOIN_INNER)
        {
-               elog(NOTICE, "gserialized_gist_joinsel: jointype %d not supported", jointype);
+               elog(DEBUG1, "%s: jointype %d not supported", __func__, jointype);
                PG_RETURN_FLOAT8(DEFAULT_ND_JOINSEL);
        }
 
@@ -1175,7 +1175,7 @@ Datum gserialized_gist_joinsel(PG_FUNCTION_ARGS)
        /* TODO: handle g1 && ST_Expand(g2) */
        if (!IsA(arg1, Var) || !IsA(arg2, Var))
        {
-               elog(DEBUG1, "gserialized_gist_joinsel called with arguments that are not column references");
+               elog(DEBUG1, "%s called with arguments that are not column references", __func__);
                PG_RETURN_FLOAT8(DEFAULT_ND_JOINSEL);
        }