Steff Missot
Steff Missot
@adelf That helped, thanks!
> @stemis Quick check: you are running the tests in a seperate process, is that correct? > In order to pass the provided data from the orchestrating PHPUnit process to...
I had the same. When I ran: `SELECT COUNT(*) FROM queries WHERE query = '';` it returned 1 query. I removed that one from visualization table and queries table using...
We have the same happening to us on MariaDB with ints: Prisma version: `2.22.1` ``` const nonExistingId = 1234; this._prisma.someModel.delete({ where: { someId: nonExistingId, }, }) ``` ``` driver_1 |...
@janpio Yes this is the full error message. I do have to note that we are running the promise returned from delete via `prisma.$transaction()`. The delete should function as delete...