Upgrade camshaft to 0.46.0

This version of camshaft requires a CDB_CheckAnalysisQuota function
to check analysis cache quota.
This commit is contained in:
Javier Goizueta
2016-10-20 12:56:18 +02:00
parent 30a95b7da3
commit 9c6d7c0ff9
3 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
CREATE OR REPLACE FUNCTION CDB_CheckAnalysisQuota(table_name TEXT)
RETURNS void AS
$$
BEGIN
END;
$$ LANGUAGE PLPGSQL;