-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add admin protocol for DAC #110
Conversation
Note that I added a test but a full test run against the |
@@ -1,3 +1,4 @@ | |||
//go:build go1.10 |
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.
Should we remove one of these? #Resolved
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.
no, the go tooling auto-injected the second one
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.
Codecov Report
@@ Coverage Diff @@
## main #110 +/- ##
==========================================
- Coverage 74.53% 74.06% -0.48%
==========================================
Files 29 29
Lines 5592 5613 +21
==========================================
- Hits 4168 4157 -11
- Misses 1179 1208 +29
- Partials 245 248 +3
|
Fixes #108
I've attempted to adhere to this spec for DAC: https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/diagnostic-connection-for-database-administrators?view=sql-server-ver15
The doc confuses me a bit. I don't know how an app is supposed to tell the difference between
admin:<instance_name>
andadmin:<server_name>
The driver requires the full
admin:server\instance
syntax or separate parameters forserver
andprotocol
.