File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ None. Please don't use this as a standalone server. This should be used behind a
92
92
93
93
## Developers
94
94
95
- 1 . Start the database using ` docker-compose up `
95
+ 1 . Start the database using ` docker-compose -f test/db/docker-compose.yml up `
96
96
2 . Run ` npm run dev `
97
97
3 . Run ` npm test ` while you work
98
98
Original file line number Diff line number Diff line change @@ -168,7 +168,9 @@ export default class PostgresMetaFunctions {
168
168
IF (
169
169
SELECT id
170
170
FROM (${ functionsSql } ) AS f
171
- WHERE f.identity_argument_types = ${ literal ( identityArgs ) }
171
+ WHERE f.schema = ${ literal ( currentFunc ! . schema ) }
172
+ AND f.name = ${ literal ( currentFunc ! . name ) }
173
+ AND f.identity_argument_types = ${ literal ( identityArgs ) }
172
174
) != ${ id } THEN
173
175
RAISE EXCEPTION 'Cannot find function "${ currentFunc ! . schema } "."${
174
176
currentFunc ! . name
You can’t perform that action at this time.
0 commit comments