File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 26
26
endif
27
27
28
28
EXTENSION = pg_net
29
- EXTVERSION = 0.19.6
29
+ EXTVERSION = 0.19.7
30
30
31
31
DATA = $(wildcard sql/* --* .sql)
32
32
Original file line number Diff line number Diff line change
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' ;
You can’t perform that action at this time.
0 commit comments