Set tolerance to 1 pixel

This commit is contained in:
Carla 2016-04-14 11:13:59 +02:00
parent e68d5eca45
commit 1a571c8a9c

View File

@ -693,7 +693,7 @@ DECLARE
tolerance_px FLOAT8; tolerance_px FLOAT8;
BEGIN BEGIN
-- Use the default tolerance -- Use the default tolerance
tolerance_px := 2.0; tolerance_px := 1.0;
RETURN CDB_CreateOverviewsWithToleranceInPixels(reloid, tolerance_px, refscale_strategy, reduce_strategy); RETURN CDB_CreateOverviewsWithToleranceInPixels(reloid, tolerance_px, refscale_strategy, reduce_strategy);
END; END;
$$ LANGUAGE PLPGSQL; $$ LANGUAGE PLPGSQL;