We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a3f6de commit e4dc217Copy full SHA for e4dc217
test/lib/functions.ts
@@ -317,7 +317,11 @@ test('retrieve set-returning function', async () => {
317
args: [],
318
})
319
expect(res.data).toMatchInlineSnapshot(
320
- { id: expect.any(Number) },
+ {
321
+ id: expect.any(Number),
322
+ return_type_id: expect.any(Number),
323
+ return_type_relation_id: expect.any(Number),
324
+ },
325
`
326
{
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,
- "return_type_relation_id": 16390,
348
+ "return_type_id": Any<Number>,
349
+ "return_type_relation_id": Any<Number>,
350
"schema": "public",
351
"security_definer": false,
352
}
0 commit comments