* fix(efcore): terminate raw SQL statements in the PostgreSQL and SQLite Runtime V3_6 migrations The V3_6 Runtime migration's two DROP INDEX statements were emitted without a trailing semicolon on PostgreSQL and SQLite, so `dotnet ef migrations script` produced syntactically invalid SQL (an unterminated statement inside the idempotent DO $EF$ block, and unseparated statements in the plain script). MigrateAsync() was unaffected because EF executes each Sql() call individually. Add the missing terminators and a regression test that generates the Runtime migration script offline for both providers (idempotent and plain forms) and asserts the DROP INDEX statements are properly terminated. Refs #7912 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> * test(efcore): share migration-script setup and cover the schema-prefixed statements Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> * test(efcore): cover schema-prefixed migration statements without static state Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| component | ||
| integration | ||
| performance | ||
| TlsSmoke | ||
| unit | ||
| Directory.Build.props | ||
| Directory.Build.targets | ||