Commit d90ce7d
Sync repos: Release 170.121.2 (#168)
* Merged PR 1790439: Remove unused variable in Antlr grammar file TSql170
# Pull Request Template for ScriptDom
## Description
Remove unused local variable from _alterDbModifyAzureOptions_ grammar rule and ensure accurate token position tracking for WITH MANUAL_CUTOVER clause.
Details:
• Eliminated redundant _hasManualCutover_ variable.
• Improved maintainability and clarity.
• Ensured UpdateTokenInfo is called for position tracking.
## Code Change
- [x] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [x] Code changes are accompanied by appropriate unit tests
- [x] Identified and included SMEs needed to review code changes
- [x] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
## Testing
- [x] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
Re-ran all existing tests to ensure the code changes are not impacting anything. All tests are passing successfully:

## Documentation
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
## Additional Information
Please provide any additional information that might be helpful for the reviewers
N/A.
----
#### AI description (iteration 1)
#### PR Classification
This pull request is a code cleanup that removes an unused variable and refactors manual cutover token handling in the TSql170 Antlr grammar file.
#### PR Summary
The changes remove the unused boolean variable in `SqlScriptDom/Parser/TSql/TSql170.g` and replace its assignment with a call to `UpdateTokenInfo` when processing the manual cutover identifier.
- `SqlScriptDom/Parser/TSql/TSql170.g`: Removed the unnecessary declaration and assignment of the variable and added `UpdateTokenInfo` to update token information for manual cutover.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
Related work items: #4005325
* Merged PR 1790607: Remove Unused Parameter form External Model
# Pull Request Template for ScriptDom
## Description
#### AI description (iteration 1)
#### PR Classification
Code cleanup: Removing an unused parameter from external model parser definitions.
#### PR Summary
This PR streamlines the T-SQL grammar by removing the unused parameter "encounteredOptions" from external model statement rules.
- `SqlScriptDom/Parser/TSql/TSql170.g`: Removed `long encounteredOptions = 0;` from the `createExternalModelStatement` rule.
- `SqlScriptDom/Parser/TSql/TSql170.g`: Removed `long encounteredOptions = 0;` from the `alterExternalModelStatement` rule.
* Merged PR 1789319: Resend PR for vector type 2nd parameter
Resending PR !1780528 which was reverted to unblock release
Before submitting your pull request, please ensure you have completed the following:
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
Please provide any additional information that might be helpful for the reviewers
Reverting commit cd69b7806dfbd6a581dbe50779a07ac70047cee8 to unblock release
Before submitting your pull request, please ensure you have completed the following:
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
Please provide any additional information that might be helpful for the reviewers
Revert cd69b7806dfbd6a581dbe50779a07ac70047cee8
----
This PR temporarily reverts a previous commit to remove vector data type support.
The pull request reverses vector-related changes by deleting files and code modification...
* Merged PR 1792393: Add support for Optimized Locking database option
As a result of the new [Optimized Locking](https://learn.microsoft.com/en-us/sql/relational-databases/performance/optimized-locking?view=sql-server-ver17) feature, new DDL has been added: `ALTER DATABASE MyDb SET OPTIMIZED_LOCKING = ON/OFF`. This PR adds this DDL to the grammar.
- [X] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [X] Code changes are accompanied by appropriate unit tests
- [X] Identified and included SMEs needed to review code changes
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
- [X] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
Please provide any additional information that might be helpful for the reviewers
----
This pull request introduces a new feature by adding support for the Optimized Locking database option.
The pull request implements the support for the Optimized Locking option in ALTER DATABASE statements by extending both the parser and code generation components.
- `SqlScriptGeneratorVisitor.OptimizedLockingAlterDatabaseOption.cs`: Implements the visitor method to generate script text for the new option based on its state (ON/OFF).
- `TSql170.g` and `TSqlFabricDW.g`: Add new grammar rules to parse the Optimized Locking option and integrate it into the database option parsing logic.
- `Ast.xml`: Introduces a new AST class for the Optimized Locking database option.
- `DatabaseOptionKind.cs` and `CodeGenerationSupporter.cs`: Update the enumeration and constant definitions to include the Optimized Locking option.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
* Update .NET SDK to latest patch version (8.0.414)
* Merged PR 1792484: Updating .md files
Please provide a detailed description, include the link to the design specification or SQL feature document for the new TSQL syntaxes. Make sure to add links to the Github or DevDiv issue
Before submitting your pull request, please ensure you have completed the following:
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
Please provide any additional information that might be helpful for the reviewers
Updating .md files
----
Documentation update.
This pull request revises and expands the project’s documentation to clarify developer workflows and update build instructions for SqlScriptDOM.
- `/github/copilot-instructions.md` now features detailed sections on key points, build/test workflows, and common pitfalls.
- A new file, `/github/BUG_FIXING_GUIDE.md`, has been added to provide a step-by-step guide for bug fixing in SqlScriptDOM.
- `/README.md` and `/CONTRIBUTING.md` have been updated to use repository-relative paths and improve instructions for modifying the DOM, parser, and script generator.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
* Merged PR 1804708: [ai_generate_embeddings] PARAMETERS without parentheses
This PR fixes a bug for AI_GENERATE_EMBEDDINGS when PARAMETERS comes without parentheses
"SELECT AI_GENERATE_EMBEDDINGS(large_text USE MODEL MyAzureOpenAIModel PARAMETERS '{"dimensions" : 768 }')"
Current behavior only allows PARAMETERS with parentheses. This PR adds syntax change along with tests.
- [X] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [X] Code changes are accompanied by appropriate unit tests
- [X] Identified and included SMEs needed to review code changes
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
Please provide any additional information that might be helpful for the reviewers
First commit
----
Bug fix to correctly handle the ScriptDom PARAMETERS clause without parentheses.
This pull request fixes the handling of the PARAMETERS clause in the AI_GENERATE_EMBEDDINGS function by conditionally emitting parentheses only when needed.
- `SqlScriptGeneratorVisitor.AiGenerateEmbeddingsFunction.cs`: Modified the code to check if OptionalParameters is a StringLiteral and, if so, emit it without surrounding parentheses.
- `TSql170.g`: Updated the grammar rules for aiGenerateEmbeddingsFunctionCall to accept either a parenthesized expression or a direct string literal.
- Test files: Adjusted baseline and test scripts, including error expectations, to validate the new syntax support.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
Related work items: #4692491
* Merged PR 1808102: [AI_GENERATE_EMBEDDINGS] Additional Syntax Change
# Pull Request Template for ScriptDom
## Description
Please provide a detailed description, include the link to the design specification or SQL feature document for the new TSQL syntaxes. Make sure to add links to the Github or DevDiv issue
This PR updates the `aiGenerateEmbeddingsFunctionCall` grammar and the script generator to:
- **Constrain model names** after `USE MODEL` to a **single token** (either an `Identifier` or one `QuotedIdentifier` like `[dbo.MyDefaultModel]`).
Multi-part names (e.g., `dbo.MyDefaultModel`, `[dbo].[MyDefaultModel]`, `MyDb.dbo.Model`) now **fail at parse time**.
- **Refine `PARAMETERS`** parsing to accept an **expression** with or without parentheses, but **reject** a **bare JSON string literal** (e.g., `PARAMETERS '{"a":1}'`). This is because the optional PARAMETERS can only be a MSJSON not varchar/nvarchar.
## What changed
### Grammar (`TSql170.g`)
- **Model name**:
- Replaced `schemaObjectThreePartName` with a **single-part** alternative:
- `Identifier` **or** `QuotedIdentifier` (one token).
- This allows `[dbo.MyDefaultModel]` (single token), but rejects dotted multi-part forms.
- **PARAMETERS**:
- Accept as **keyword** *or* **identifier** matched to `"Parameters"`.
- Value can be either:
- `PARAMETERS ( <expr> )` → wraps `<expr>` in a `ParenthesisExpression` to preserve parens.
- `PARAMETERS <expr>` → **guarded** to **forbid** a leading ASCII/Unicode **string literal** (blocks `PARAMETERS '{...}'`).
- No support added for `=` (kept “same as before” by design).
### Script generator (`SqlScriptGeneratorVisitor.AIGenerateEmbeddingsFunction.cs`)
- **Do not force parentheses** for `OptionalParameters`. Emit:
- `PARAMETERS {space} <fragment>`
- If the AST contains a `ParenthesisExpression`, it prints its own `(`…`)`. Bare expressions print without parens.
Before submitting your pull request, please ensure you have completed the following:
## Code Change
- [X] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [X] Code changes are accompanied by appropriate unit tests
- [X] Identified and included SMEs needed to review code changes
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
## Testing
- [X] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
## Documentation
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
## Additional Information
Please ...
* Merged PR 1814233: add OPTIMIZE_FOR_ARRAY_SEARCH option for Json index
# Pull Request Template for ScriptDom
## Description
Please provide a detailed description, include the link to the design specification or SQL feature document for the new TSQL syntaxes. Make sure to add links to the Github or DevDiv issue
Before submitting your pull request, please ensure you have completed the following:
## Code Change
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
## Testing
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
## Documentation
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
## Additional Information
Please provide any additional information that might be helpful for the reviewers
This PR added OPTIMIZE_FOR_ARRAY_SEARCH option for Json index. A test case is added.
----
#### AI description (iteration 1)
#### PR Classification
This PR introduces a new feature by adding support for the OPTIMIZE_FOR_ARRAY_SEARCH option in JSON indexes.
#### PR Summary
The changes enable the OPTIMIZE_FOR_ARRAY_SEARCH option in ScriptDom by updating parser mappings, constants, and test cases to validate the new JSON index syntax.
- `SqlScriptDom/Parser/TSql/IndexOptionKind.cs`: Added a new enum value for OptimizeForArraySearch.
- `SqlScriptDom/Parser/TSql/CodeGenerationSupporter.cs`: Introduced a new constant for OPTIMIZE_FOR_ARRAY_SEARCH.
- `SqlScriptDom/Parser/TSql/IndexOptionHelper.cs`: Mapped the new index option to support the updated feature.
- Test files (`Test/SqlDom/TestScripts/JsonIndexTests170.sql`, `Test/SqlDom/Baselines170/JsonIndexTests170.sql`, `Test/SqlDom/Only170SyntaxTests.cs`): Updated to include and validate the new JSON index option.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
Related work items: #4709838
* Merged PR 1815158: Add test case for PAD_INDEX and DROP_EXISTING options for Json index
# Pull Request Template for ScriptDom
## Description
Please provide a detailed description, include the link to the design specification or SQL feature document for the new TSQL syntaxes. Make sure to add links to the Github or DevDiv issue
Before submitting your pull request, please ensure you have completed the following:
## Code Change
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
## Testing
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
## Documentation
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
## Additional Information
This PR added a test case for PAD_INDEX and DROP_EXISTING options for Json index. These options are shared options with other indexes, so only a test case is needed.
----
#### AI description (iteration 1)
#### PR Classification
This PR adds new test cases to validate the PAD_INDEX and DROP_EXISTING options for JSON indexes.
#### PR Summary
The changes extend the JSON index tests by including scenarios for the PAD_INDEX and DROP_EXISTING options.
- `Test/SqlDom/TestScripts/JsonIndexTests170.sql`: Adds a JSON index creation statement with PAD_INDEX and DROP_EXISTING options.
- `Test/SqlDom/Baselines170/JsonIndexTests170.sql`: Updates the baseline to include the new JSON index command with PAD_INDEX and DROP_EXISTING options.
- `Test/SqlDom/Only170SyntaxTests.cs`: Adjusts the expected error counts for JSON index tests to reflect the new options.
<!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
Related work items: #4711081
* fixing merge issues
* Merged PR 1815666: Release notes for 170.121.2
# Pull Request Template for ScriptDom
## Description
Please provide a detailed description, include the link to the design specification or SQL feature document for the new TSQL syntaxes. Make sure to add links to the Github or DevDiv issue
Before submitting your pull request, please ensure you have completed the following:
## Code Change
- [ ] The [Common checklist](https://msdata.visualstudio.com/SQLToolsAndLibraries/_git/Common?path=/Templates/PR%20Checklist%20for%20SQLToolsAndLibraries.md&version=GBmain&_a=preview) has been reviewed and followed
- [ ] Code changes are accompanied by appropriate unit tests
- [ ] Identified and included SMEs needed to review code changes
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=make-the-changes-in) here to make changes in the code
## Testing
- [ ] Follow the [steps](https://msdata.visualstudio.com/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki/33838/Adding-or-Extending-TSql-support-in-Sql-Dom?anchor=to-extend-the-tests-do-the-following%3A) here to add new tests for your feature
## Documentation
- [ ] Update relevant documentation in the [wiki](https://dev.azure.com/msdata/SQLToolsAndLibraries/_wiki/wikis/SQLToolsAndLibraries.wiki) and the README.md file
## Additional Information
Please provide any additional information that might be helpful for the reviewers
* replace smart apostrophe
---------
Co-authored-by: Mohit Agarwal <[email protected]>
Co-authored-by: Urvashi Raj <[email protected]>
Co-authored-by: Zi Chen <[email protected]>
Co-authored-by: Mateo Marenco <[email protected]>
Co-authored-by: GitOps (Git LowPriv) <GitOps (Git LowPriv)>
Co-authored-by: Sicong Liu <[email protected]>
Co-authored-by: Lijun Ji <[email protected]>
Co-authored-by: Drew Skwiers-Koballa <[email protected]>1 parent 52523ab commit d90ce7d
File tree
24 files changed
+388
-52
lines changed- SqlScriptDom
- Parser/TSql
- ScriptDom/SqlServer/ScriptGenerator
- Test/SqlDom
- Baselines170
- TestScripts
- release-notes/170
24 files changed
+388
-52
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
121 | | - | |
122 | | - | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
123 | 139 | | |
124 | 140 | | |
125 | | - | |
126 | | - | |
127 | | - | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
128 | 144 | | |
129 | | - | |
130 | | - | |
| 145 | + | |
131 | 146 | | |
132 | 147 | | |
133 | 148 | | |
134 | | - | |
135 | 149 | | |
136 | | - | |
| 150 | + | |
137 | 151 | | |
138 | 152 | | |
139 | 153 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
271 | 271 | | |
272 | 272 | | |
273 | 273 | | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
274 | 279 | | |
275 | 280 | | |
276 | 281 | | |
| |||
2520 | 2525 | | |
2521 | 2526 | | |
2522 | 2527 | | |
| 2528 | + | |
| 2529 | + | |
| 2530 | + | |
| 2531 | + | |
2523 | 2532 | | |
2524 | 2533 | | |
2525 | 2534 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
427 | 427 | | |
428 | 428 | | |
429 | 429 | | |
| 430 | + | |
| 431 | + | |
430 | 432 | | |
431 | 433 | | |
432 | 434 | | |
| |||
718 | 720 | | |
719 | 721 | | |
720 | 722 | | |
| 723 | + | |
| 724 | + | |
721 | 725 | | |
722 | 726 | | |
723 | 727 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
| 101 | + | |
| 102 | + | |
102 | 103 | | |
103 | 104 | | |
104 | 105 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| 49 | + | |
| 50 | + | |
49 | 51 | | |
50 | 52 | | |
51 | 53 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3064 | 3064 | | |
3065 | 3065 | | |
3066 | 3066 | | |
3067 | | - | |
3068 | | - | |
3069 | | - | |
3070 | 3067 | | |
3071 | 3068 | | |
3072 | 3069 | | |
3073 | 3070 | | |
3074 | 3071 | | |
3075 | 3072 | | |
3076 | | - | |
3077 | 3073 | | |
| 3074 | + | |
3078 | 3075 | | |
3079 | 3076 | | |
3080 | 3077 | | |
| |||
3247 | 3244 | | |
3248 | 3245 | | |
3249 | 3246 | | |
| 3247 | + | |
| 3248 | + | |
3250 | 3249 | | |
3251 | 3250 | | |
3252 | 3251 | | |
| |||
3560 | 3559 | | |
3561 | 3560 | | |
3562 | 3561 | | |
| 3562 | + | |
| 3563 | + | |
| 3564 | + | |
| 3565 | + | |
| 3566 | + | |
| 3567 | + | |
| 3568 | + | |
| 3569 | + | |
| 3570 | + | |
| 3571 | + | |
| 3572 | + | |
| 3573 | + | |
| 3574 | + | |
| 3575 | + | |
| 3576 | + | |
| 3577 | + | |
| 3578 | + | |
| 3579 | + | |
| 3580 | + | |
| 3581 | + | |
| 3582 | + | |
| 3583 | + | |
| 3584 | + | |
| 3585 | + | |
3563 | 3586 | | |
3564 | 3587 | | |
3565 | 3588 | | |
| |||
23930 | 23953 | | |
23931 | 23954 | | |
23932 | 23955 | | |
23933 | | - | |
23934 | 23956 | | |
23935 | 23957 | | |
23936 | 23958 | | |
| |||
24092 | 24114 | | |
24093 | 24115 | | |
24094 | 24116 | | |
24095 | | - | |
24096 | 24117 | | |
24097 | 24118 | | |
24098 | 24119 | | |
| |||
30680 | 30701 | | |
30681 | 30702 | | |
30682 | 30703 | | |
| 30704 | + | |
| 30705 | + | |
| 30706 | + | |
| 30707 | + | |
| 30708 | + | |
| 30709 | + | |
| 30710 | + | |
| 30711 | + | |
| 30712 | + | |
| 30713 | + | |
| 30714 | + | |
| 30715 | + | |
| 30716 | + | |
| 30717 | + | |
| 30718 | + | |
| 30719 | + | |
| 30720 | + | |
| 30721 | + | |
| 30722 | + | |
| 30723 | + | |
| 30724 | + | |
| 30725 | + | |
| 30726 | + | |
| 30727 | + | |
| 30728 | + | |
| 30729 | + | |
30683 | 30730 | | |
30684 | 30731 | | |
30685 | 30732 | | |
| |||
30700 | 30747 | | |
30701 | 30748 | | |
30702 | 30749 | | |
| 30750 | + | |
| 30751 | + | |
| 30752 | + | |
30703 | 30753 | | |
30704 | 30754 | | |
30705 | 30755 | | |
| |||
32103 | 32153 | | |
32104 | 32154 | | |
32105 | 32155 | | |
| 32156 | + | |
32106 | 32157 | | |
32107 | 32158 | | |
32108 | 32159 | | |
| |||
32114 | 32165 | | |
32115 | 32166 | | |
32116 | 32167 | | |
32117 | | - | |
32118 | | - | |
| 32168 | + | |
32119 | 32169 | | |
32120 | 32170 | | |
32121 | 32171 | | |
32122 | 32172 | | |
32123 | 32173 | | |
32124 | 32174 | | |
32125 | 32175 | | |
32126 | | - | |
32127 | | - | |
32128 | | - | |
32129 | | - | |
32130 | | - | |
32131 | | - | |
32132 | | - | |
32133 | | - | |
32134 | | - | |
| 32176 | + | |
| 32177 | + | |
| 32178 | + | |
| 32179 | + | |
| 32180 | + | |
| 32181 | + | |
| 32182 | + | |
| 32183 | + | |
| 32184 | + | |
| 32185 | + | |
| 32186 | + | |
| 32187 | + | |
| 32188 | + | |
| 32189 | + | |
| 32190 | + | |
| 32191 | + | |
| 32192 | + | |
| 32193 | + | |
| 32194 | + | |
| 32195 | + | |
| 32196 | + | |
| 32197 | + | |
| 32198 | + | |
| 32199 | + | |
| 32200 | + | |
| 32201 | + | |
| 32202 | + | |
| 32203 | + | |
| 32204 | + | |
| 32205 | + | |
| 32206 | + | |
32135 | 32207 | | |
32136 | | - | |
| 32208 | + | |
| 32209 | + | |
| 32210 | + | |
32137 | 32211 | | |
32138 | | - | |
| 32212 | + | |
| 32213 | + | |
| 32214 | + | |
| 32215 | + | |
| 32216 | + | |
| 32217 | + | |
| 32218 | + | |
| 32219 | + | |
| 32220 | + | |
| 32221 | + | |
| 32222 | + | |
| 32223 | + | |
| 32224 | + | |
| 32225 | + | |
| 32226 | + | |
| 32227 | + | |
| 32228 | + | |
| 32229 | + | |
| 32230 | + | |
| 32231 | + | |
| 32232 | + | |
| 32233 | + | |
| 32234 | + | |
| 32235 | + | |
| 32236 | + | |
| 32237 | + | |
| 32238 | + | |
| 32239 | + | |
| 32240 | + | |
| 32241 | + | |
| 32242 | + | |
| 32243 | + | |
| 32244 | + | |
| 32245 | + | |
| 32246 | + | |
| 32247 | + | |
| 32248 | + | |
| 32249 | + | |
| 32250 | + | |
| 32251 | + | |
| 32252 | + | |
| 32253 | + | |
| 32254 | + | |
| 32255 | + | |
| 32256 | + | |
| 32257 | + | |
| 32258 | + | |
| 32259 | + | |
| 32260 | + | |
| 32261 | + | |
| 32262 | + | |
| 32263 | + | |
| 32264 | + | |
32139 | 32265 | | |
32140 | | - | |
| 32266 | + | |
32141 | 32267 | | |
32142 | 32268 | | |
32143 | 32269 | | |
| |||
0 commit comments