File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,11 @@ test('retrieve set-returning function', async () => {
317317 args : [ ] ,
318318 } )
319319 expect ( res . data ) . toMatchInlineSnapshot (
320- { id : expect . any ( Number ) } ,
320+ {
321+ id : expect . any ( Number ) ,
322+ return_type_id : expect . any ( Number ) ,
323+ return_type_relation_id : expect . any ( Number ) ,
324+ } ,
321325 `
322326 {
323327 "args": [],
@@ -341,8 +345,8 @@ test('retrieve set-returning function', async () => {
341345 "language": "sql",
342346 "name": "function_returning_set_of_rows",
343347 "return_type": "SETOF users",
344- "return_type_id": 16392 ,
345- "return_type_relation_id": 16390 ,
348+ "return_type_id": Any<Number> ,
349+ "return_type_relation_id": Any<Number> ,
346350 "schema": "public",
347351 "security_definer": false,
348352 }
You can’t perform that action at this time.
0 commit comments