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 () => {
317
317
args : [ ] ,
318
318
} )
319
319
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
+ } ,
321
325
`
322
326
{
323
327
"args": [],
@@ -341,8 +345,8 @@ test('retrieve set-returning function', async () => {
341
345
"language": "sql",
342
346
"name": "function_returning_set_of_rows",
343
347
"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> ,
346
350
"schema": "public",
347
351
"security_definer": false,
348
352
}
You can’t perform that action at this time.
0 commit comments