We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drizzle-orm
0.38.0
drizzle-kit
drizzle-valibot@0.3.0
After upgrading to drizzle 0.38.0, all of my uses of db.transaction(async tx => {}) throw a TS error during typechecking.
db.transaction(async tx => {})
Example,
src/app/actions.ts:382:16 - error TS2589: Type instantiation is excessively deep and possibly infinite. 382 return await db.transaction(async tx => { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 383 const [createdResource] = await tx ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ... 425 }; ~~~~~~ 426 }); ~~~~
The text was updated successfully, but these errors were encountered:
Type instantiation is excessively deep and possibly infinite.
Assuming this is related to #3751, I'll be closing this issue in favor of that one.
Sorry, something went wrong.
No branches or pull requests
Report hasn't been filed before.
What version of
drizzle-orm
are you using?0.38.0
What version of
drizzle-kit
are you using?0.38.0
Other packages
drizzle-valibot@0.3.0
Describe the Bug
After upgrading to drizzle 0.38.0, all of my uses of
db.transaction(async tx => {})
throw a TS error during typechecking.Example,
The text was updated successfully, but these errors were encountered: