Add configurable migrationVerificationLevel to Gradle plugin #5818
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
SQLDelight 2.x changed the default schema introspection behavior during migration verification, causing performance issues reported in #4759:
standardmaximumThis change causes the
verifySqlDelightMigrationtask to hang indefinitely on complex schemas, with users reporting:Solution
This PR adds a
migrationVerificationLevelproperty to make schema introspection configurable:sqldelight { databases { create("Database") { packageName = "com.example" verifyMigrations.set(true) migrationVerificationLevel.set("standard") // Allows optionally reduce the verification level } } }Available Levels
"minimum"- Minimal schema information retrieval"standard"- Standard schema information retrieval (SQLDelight 1.5.5 default)"detailed"- More comprehensive schema information retrieval"maximum"- Most comprehensive schema information retrieval (current default)Impact
"maximum"for existing 2.x behaviorChanges
migrationVerificationLevelproperty toSqlDelightDatabaseCatalogDatabaseto accept configurable schema info levelVerifyMigrationTaskto pass the configuration throughFixes #4759