-
Notifications
You must be signed in to change notification settings - Fork 24
wait_stats_capture_mode query store option #110
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 4 out of 11 changed files in this pull request and generated no comments.
Files not reviewed (7)
- SqlScriptDom/Parser/TSql/Ast.xml: Language not supported
- SqlScriptDom/Parser/TSql/TSql140.g: Language not supported
- SqlScriptDom/Parser/TSql/TSql150.g: Language not supported
- SqlScriptDom/Parser/TSql/TSql160.g: Language not supported
- SqlScriptDom/Parser/TSql/TSql170.g: Language not supported
- Test/SqlDom/Baselines140/AlterDatabaseOptionsTests140.sql: Language not supported
- Test/SqlDom/TestScripts/AlterDatabaseOptionsTests140.sql: Language not supported
@@ -1263,7 +1264,7 @@ internal static class CodeGenerationSupporter | |||
internal const string Russian = "RUSSIAN"; | |||
internal const string Romanian = "ROMANIAN"; | |||
internal const string Brazilian = "BRAZILIAN"; | |||
internal const string NorwegianBokmal = "NORWEGIAN (BOKM�L)"; | |||
internal const string NorwegianBokmal = "NORWEGIAN (BOKM�L)"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change expected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope, investigating the git setting that caused this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file encoding was utf8, which is sensitive to messing up the combined bytes of some characters. the most definitive fix was to convert the file to utf8 bom file encoding, which is used by a number of other c# files in the project already
applies to 140+ and Azure SQL DB
https://learn.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-set-options?view=sql-server-ver16#wait_stats_capture_mode--on--off-
fixes #100