Skip to content

Commit

Permalink
Revert a6dc060
Browse files Browse the repository at this point in the history
  • Loading branch information
lucajoos committed Mar 4, 2022
1 parent 6c20928 commit dd53b34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http--1.0--1.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ CREATE OR REPLACE FUNCTION http_put(uri VARCHAR, content VARCHAR, content_type V
AS $$ SELECT http(('PUT', $1, NULL, $3, $2)::http_request) $$
LANGUAGE 'sql';

CREATE OR REPLACE FUNCTION http_delete(uri VARCHAR, content VARCHAR, content_type VARCHAR)
CREATE OR REPLACE FUNCTION http_delete(uri VARCHAR)
RETURNS http_response
AS $$ SELECT http(('DELETE', $1, NULL, $3, $2)::http_request) $$
AS $$ SELECT http(('DELETE', $1, NULL, NULL, NULL)::http_request) $$
LANGUAGE 'sql';

CREATE OR REPLACE FUNCTION urlencode(string VARCHAR)
Expand Down

0 comments on commit dd53b34

Please sign in to comment.