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
9292
9393## Developers
9494
95- 1 . Start the database using ` docker-compose up `
95+ 1 . Start the database using ` docker-compose -f test/db/docker-compose.yml up `
96962 . Run ` npm run dev `
97973 . Run ` npm test ` while you work
9898
Original file line number Diff line number Diff line change @@ -168,7 +168,9 @@ export default class PostgresMetaFunctions {
168168 IF (
169169 SELECT id
170170 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 ) }
172174 ) != ${ id } THEN
173175 RAISE EXCEPTION 'Cannot find function "${ currentFunc ! . schema } "."${
174176 currentFunc ! . name
You can’t perform that action at this time.
0 commit comments