cartodb-postgresql/scripts-available/CDB_ColumnNames.sql

17 lines
638 B
MySQL
Raw Permalink Normal View History

-- Function returning the column names of a table
2019-05-31 21:29:28 +08:00
CREATE OR REPLACE FUNCTION @extschema@.CDB_ColumnNames(REGCLASS)
RETURNS SETOF information_schema.sql_identifier
AS $$
SELECT
a.attname::information_schema.sql_identifier column_name
FROM pg_class c
2016-04-25 22:30:58 +08:00
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
WHERE c.oid = $1::oid
2016-04-25 22:30:58 +08:00
AND a.attstattarget < 0 -- exclude system columns
ORDER BY a.attnum;
2017-10-24 20:16:56 +08:00
$$ LANGUAGE SQL STABLE PARALLEL SAFE;
-- This is to migrate from pre-0.2.0 version
-- See http://github.com/CartoDB/cartodb-postgresql/issues/36
2019-05-31 21:29:28 +08:00
GRANT EXECUTE ON FUNCTION @extschema@.CDB_ColumnNames(REGCLASS) TO PUBLIC;