Add parser features and enable 6 more tests#20
Merged
kyleconroy merged 4 commits intomainfrom Dec 20, 2025
Merged
Conversation
Add support for: - CREATE/ALTER WORKLOAD GROUP with parameters - CREATE/ALTER SEQUENCE with options - DBCC statements with commands and options - WorkloadGroupImportanceParameter for importance values Enable 6 workload group tests: - CreateAlterWorkloadGroupStatementTests110 - Baselines110_CreateAlterWorkloadGroupStatementTests110 - CreateAlterDropWorkloadGroupStatementTests - Baselines100_CreateAlterDropWorkloadGroupStatementTests - CreateWorkloadGroupStatementTests130 - Baselines130_CreateWorkloadGroupStatementTests130
- Fix DBCC statement parsing to distinguish known commands from DLLs - Add DllName as string (not Identifier) for user-defined DBCC commands - Fix ParenthesisRequired to only be true for empty parentheses () - Add more DBCC option mappings (AllConstraints, StatsStream, Histogram) - Add DataTypeSequenceOption type for AS clause in sequence statements - Add START WITH option for CREATE/ALTER SEQUENCE - Fix CYCLE to use SequenceOption (not ScalarExpressionSequenceOption) - Enable 4 tests: DbccStatementsTests, BaselinesCommon_DbccStatementsTests, AlterSequenceStatementTests, Baselines110_AlterSequenceStatementTests
- Add getSqlDataTypeOption() to check if type is a known SQL type - Return UserDataTypeReference for unknown types (e.g., sysname, INTALIAS) - Add more SQL types: JSON, CONNECTION, DATETIMEOFFSET, SMALLDATETIME - Add UserDataTypeReference type and marshal function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add support for:
Enable 6 workload group tests: