mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-22 13:40:56 +08:00
7 lines
141 B
SQL
7 lines
141 B
SQL
CREATE OR REPLACE FUNCTION get_hostname()
|
|
RETURNS TEXT LANGUAGE SQL STABLE AS
|
|
$BODY$
|
|
SELECT current_setting('iobeam.hostname');
|
|
$BODY$;
|
|
|