Add a small bit of func doc about the quoting

This commit is contained in:
Rafa de la Torre 2016-02-12 11:27:26 +01:00
parent 56fed12392
commit a0fe55bd5d

View File

@ -148,6 +148,7 @@ $$ LANGUAGE SQL;
-- Return a set of (dbname, schema_name, table_name, updated_at)
-- It is aware of foreign tables
-- It assumes the local (schema_name, table_name) map to the remote ones with the same name
-- Note: dbname is never quoted whereas schema and table names are when needed.
CREATE OR REPLACE FUNCTION cartodb.CDB_QueryTables_Updated_At(query text)
RETURNS TABLE(dbname text, schema_name text, table_name text, updated_at timestamptz)
AS $$