Fully qualify function names

This commit is contained in:
Rafa de la Torre
2016-04-19 14:59:33 +02:00
parent 67ae37fb67
commit b1b69113a2
3 changed files with 30 additions and 30 deletions

View File

@@ -123,7 +123,7 @@ CREATE OR REPLACE FUNCTION cdb_observatory._TestArea()
AS $$
BEGIN
-- Buffer NYC point by 500 meters
RETURN ST_Buffer(_TestPoint()::geography, 500)::geometry;
RETURN ST_Buffer(cdb_observatory._TestPoint()::geography, 500)::geometry;
END;
$$ LANGUAGE plpgsql;