File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,5 @@ alter table net._http_response drop constraint _http_response_pkey;
4
4
drop trigger ensure_worker_is_up on net .http_request_queue ;
5
5
alter function net ._check_worker_is_up () rename to check_worker_is_up;
6
6
drop index net ._http_response_created_idx ;
7
+ alter table net .http_request_queue set unlogged;
8
+ alter table net ._http_response set unlogged;
Original file line number Diff line number Diff line change 8
8
9
9
-- Store pending requests. The background worker reads from here
10
10
-- API: Private
11
- create table net .http_request_queue(
11
+ create unlogged table net .http_request_queue (
12
12
id bigserial ,
13
13
method net .http_method not null ,
14
14
url text not null ,
@@ -31,7 +31,7 @@ $$ language plpgsql;
31
31
32
32
-- Associates a response with a request
33
33
-- API: Private
34
- create table net ._http_response(
34
+ create unlogged table net ._http_response (
35
35
id bigint ,
36
36
status_code integer ,
37
37
content_type text ,
You can’t perform that action at this time.
0 commit comments