Aurele Ferotin
Aurele Ferotin
So there was quite a lot of things I had overlooked when testing on my machine..! I squashed all the fixes and we now have a mostly green test suite...
So the two additional queries breaking the tests are due to: `CREATE EXTENSION IF NOT EXISTS postgis` https://github.com/Oreilles/prisma-engines/blob/a588e1296288b79df0204397a441f2b3d891b9d9/query-engine/connector-test-kit-rs/qe-setup/src/postgres.rs#L42 and `SELECT PostGIS_version()` https://github.com/Oreilles/prisma-engines/blob/a588e1296288b79df0204397a441f2b3d891b9d9/schema-engine/connectors/sql-schema-connector/src/flavour/postgres.rs#L628-L630 Both are needed to run the tests, I...
Interesting, as far as I can remember (almost) all tests were succeeding the last time we discussed the PR, and we did have tests for all MySQL versions... though I...
Should be good now: - SQLite tests were failing due to an unsuccesfull initialization of Spatialite, which I had unwrapped - it's now oked instead. Tests involving Spatialite will be...
Merged `main` again and had to solve quite a lot of conflicts: there apparently was some pretty big change in the code base recently (I'd be interested in knowing what...
Turns out it was a much smaller issue that I thought! I squashed the `main` merge to avoid polluting this PR so for reference, this line was the culprit (the...
I rebased the branch on main so there shouldn't be any more conflicts for now. I also managed to add the Spatialite tests to the CI 👍 There's a failing...
The failing test on MySQL 5.7 and 8 isn't caused by this PR, as you can see it's also failing on your PR adding those versions to the query engine...
As a temporary solution for SvelteKit users facing this issue, rather than (which currently breaks): ```js export async load = ({ params }) => { const module = await import(`./index.${params.foo}.js`);...