cartodb-postgresql/scripts-available/CDB_Username.sql

7 lines
281 B
MySQL
Raw Normal View History

-- Returns the cartodb username of the current PostgreSQL session
2019-05-31 21:29:28 +08:00
CREATE OR REPLACE FUNCTION @extschema@.CDB_Username()
2019-02-20 17:38:00 +08:00
RETURNS text
AS $$
2019-05-31 21:29:28 +08:00
SELECT @extschema@.CDB_Conf_GetConf(CONCAT('api_keys_', session_user))->>'username';
$$ LANGUAGE SQL STABLE PARALLEL SAFE SECURITY DEFINER;