Skip to content

Commit

Permalink
Interversion json parsing issues in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Sep 11, 2024
1 parent 550822e commit ab709e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/http.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ FROM http_get('https://httpbin.org/anything', jsonb_build_object('this', 'that')
-- GET with data
SELECT status,
content::json->'args' as args,
content::json->>'data' as data,
(content::json)->>'data' as data,
content::json->'url' as url,
content::json->'method' as method
from http(('GET', 'https://httpbin.org/anything', NULL, 'application/json', '{"search": "toto"}'));
FROM http(('GET', 'https://httpbin.org/anything', NULL, 'application/json', '{"search": "toto"}'));

-- DELETE
SELECT status,
Expand Down

0 comments on commit ab709e0

Please sign in to comment.