Skip to content

Commit f81c926

Browse files
committed
Add missing psql function domain (thanks sjuxax)
1 parent 7c8ea0b commit f81c926

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sql/functions.sql

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@ create or replace function ip_network(ip text) returns text as $$
3636
select substring($1 from E'[\\d]+\.[\\d]+\.[\\d]+')
3737
$$ language sql immutable;
3838

39-
create or replace function base_url(url texT) returns text as $$
39+
create or replace function base_url(url text) returns text as $$
4040
select substring($1 from E'(?i)(?:.+?://)?(?:www[\\d]*\\.)?([^#]*[^#/])/?')
4141
$$ language sql immutable;
4242

43+
create or replace function domain(url text) returns text as $$
44+
select substring($1 from E'(?i)(?:.+?://)?(?:www[\\d]*\\.)?([^#/]*)/?')
45+
$$ language sql immutable;
46+
4347
create view active as
4448
select pg_stat_activity.procpid, (now() - pg_stat_activity.query_start) as t, pg_stat_activity.current_query from pg_stat_activity where (pg_stat_activity.current_query <> '<IDLE>'::text) order by (now() - pg_stat_activity.query_start);

0 commit comments

Comments
 (0)