Skip to content

Commit 314d00e

Browse files
committed
bump to 0.19.7
1 parent fcfec1f commit 314d00e

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ else
2626
endif
2727

2828
EXTENSION = pg_net
29-
EXTVERSION = 0.19.6
29+
EXTVERSION = 0.19.7
3030

3131
DATA = $(wildcard sql/*--*.sql)
3232

sql/pg_net--0.19.6--0.19.7.sql

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
create or replace function net._urlencode_string(string varchar)
2+
-- url encoded string
3+
returns text
4+
language 'c'
5+
immutable
6+
as 'MODULE_PATHNAME';
7+
8+
create or replace function net._encode_url_with_params_array(url text, params_array text[])
9+
-- url encoded string
10+
returns text
11+
language 'c'
12+
immutable
13+
as 'MODULE_PATHNAME';
14+
15+
create or replace function net.worker_restart()
16+
returns bool
17+
language 'c'
18+
as 'MODULE_PATHNAME';
19+
20+
create or replace function net.wait_until_running()
21+
returns void
22+
language 'c'
23+
as 'MODULE_PATHNAME';
24+
comment on function net.wait_until_running() is 'waits until the worker is running';
25+
26+
create or replace function net.wake()
27+
returns void
28+
language 'c'
29+
as 'MODULE_PATHNAME';

0 commit comments

Comments
 (0)