Tom Houlé
Tom Houlé
First of all thanks for this crate, I like it! The scoping of environment variable names by the name of the struct implementing `Configure` is nice in general, but sometimes...
When you use `prisma db pull --url` and provide an invalid URL, the error message is the following: ``` ✖ Introspecting Error: P1012 Introspection failed as your current Prisma schema...
MSSQL: https://docs.microsoft.com/en-us/sql/t-sql/statements/create-index-transact-sql?view=sql-server-ver16#include-column---n-- Postgres: https://www.postgresql.org/docs/14/sql-createindex.html Suggested PSL representation: ```prisma @@index([a, b], include: [c]) ``` ## Related issues - https://github.com/prisma/prisma-engines/pull/3108
See comments on https://github.com/prisma/language-tools/pull/898 - We do not know if/why the ignore pattern is needed - The glob expansion in the watch pattern: is it correct? is it harmful? Related:...
## Summary Provide "mid-level" bindings to the [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest) API. "mid-level" in this case would mean a callback-based API to cover the whole of XHR, mirroring `web_sys::XmlHttpRequest` with more idiomatic Rust...
I am working on improving the [graphql-client](https://github.com/tomhoule/graphql-client) crate and one place where it could use better ergonomics is query validation. Since it is [defined by the spec](https://github.com/facebook/graphql/blob/master/spec/Section%205%20--%20Validation.md) and already implemented...
In diagnoseMigrationsHistory. - Before this commit, we report every entry in the migrations table that has a different checksum than the corresponding migration local file as an edited migration. -...
From rust meeting.
Originally to fix https://github.com/prisma/language-tools/issues/1195, but that would also let us remove the native_types method on prisma-fmt.
The script should use the `UserFacingError` trait to get information about each user facing error and put that information in a JSON file for other tools to generate readable docs...