Cosmetic fix: s/INT8/bigint #279

This commit is contained in:
Rafa de la Torre 2016-10-17 17:16:04 +02:00
parent 066c574709
commit 529b12af20

View File

@ -38,7 +38,7 @@ CREATE OR REPLACE FUNCTION _CDB_AnalysisDataSize(schema_name TEXT DEFAULT NULL)
RETURNS bigint AS
$$
DECLARE
total_size INT8;
total_size bigint;
BEGIN
WITH analysis_tables AS (
SELECT t.schema_name, t.table_name FROM _CDB_AnalysisTablesInSchema(schema_name) t