Skip to content
New issue

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

ci(mysql): Remove --lower_case_table_names=1 #22221

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix snapshots
  • Loading branch information
janpio committed Dec 3, 2023
commit 343ba8246841a2d9fa7ba6b3374c25b592c03f7b
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 85,7 @@ exports[`interactive-transactions (provider=mysql) batching raw rollback 1`] = `
Invalid \`prisma.$executeRaw()\` invocation:


Raw query failed. Code: \`1062\`. Message: \`Duplicate entry '1' for key 'user.PRIMARY'\`
Raw query failed. Code: \`1062\`. Message: \`Duplicate entry '1' for key 'User.PRIMARY'\`
`;

exports[`interactive-transactions (provider=mysql) batching rollback 1`] = `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 595,7 @@ testMatrix.setupTestSuite(
state: \"23000\" })) })
*/
// Note: in CI we run with --lower_case_table_names=1
`Foreign key constraint for table 'useronetoone', record '2' would lead to a duplicate entry in table 'profileonetoone'`,
`Foreign key constraint for table 'UserOneToOne', record '2' would lead to a duplicate entry in table 'ProfileOneToOne'`,
[Providers.SQLSERVER]: 'Unique constraint failed on the constraint: `dbo.UserOneToOne`',
[Providers.SQLITE]: 'Unique constraint failed on the fields: (`id`)',
},
Expand Down
Loading