01ae7b8c10
Roles are not created anymore, previously private functions for table information extraction (CDB_UserTables, CDB_TableIndexes, CDB_ColumnNames, CDB_ColumnType) will now be callable by anyone while only returning information about tables over which the calling user has SELECT privilege. Closes #36
15 lines
394 B
PL/PgSQL
15 lines
394 B
PL/PgSQL
-- Function returning the type of a column
|
|
CREATE OR REPLACE FUNCTION CDB_ColumnType(REGCLASS, TEXT)
|
|
RETURNS information_schema.character_data
|
|
AS $$
|
|
|
|
SELECT data_type
|
|
FROM information_schema.columns
|
|
WHERE
|
|
table_name IN (SELECT CDB_UserTables())
|
|
AND table_name = '' || $1 || ''
|
|
AND column_name = '' || quote_ident($2) || '';
|
|
|
|
$$ LANGUAGE SQL;
|
|
|