Default factor for analysis size from 0.2 to 2

Change the default value for the factor of analysis tables size from 0.2
to 2. I also checked it is applied on the "nominal" user quota.
This commit is contained in:
Rafa de la Torre
2016-10-19 12:36:55 +02:00
parent 594543916d
commit 64fae71a37

View File

@@ -21,7 +21,7 @@ BEGIN
factor := _CDB_GetConfAnalysisQuotaFactor();
-- With a default value
IF factor IS NULL THEN
factor := 0.2;
factor := 2;
END IF;
RETURN factor;
END;