@@ -13673,41 +13673,40 @@ internal ulong PlpBytesTotalLength(TdsParserStateObject stateObj)
13673
13673
+ " _defaultCodePage = {6}\n\t"
13674
13674
+ " _defaultLCID = {7}\n\t"
13675
13675
+ " _defaultEncoding = {8}\n\t"
13676
- + " _encryptionOption = {10 }\n\t"
13677
- + " _currentTransaction = {11 }\n\t"
13678
- + " _pendingTransaction = {12 }\n\t"
13679
- + " _retainedTransactionId = {13 }\n\t"
13680
- + " _nonTransactedOpenResultCount = {14 }\n\t"
13681
- + " _connHandler = {15 }\n\t"
13682
- + " _fMARS = {16 }\n\t"
13683
- + " _sessionPool = {17 }\n\t"
13684
- + " _isShiloh = {18 }\n\t"
13685
- + " _isShilohSP1 = {19 }\n\t"
13686
- + " _isYukon = {20 }\n\t"
13687
- + " _sniSpnBuffer = {21 }\n\t"
13688
- + " _errors = {22 }\n\t"
13689
- + " _warnings = {23 }\n\t"
13690
- + " _attentionErrors = {24 }\n\t"
13691
- + " _attentionWarnings = {25 }\n\t"
13692
- + " _statistics = {26 }\n\t"
13693
- + " _statisticsIsInTransaction = {27 }\n\t"
13694
- + " _fPreserveTransaction = {28 }"
13695
- + " _fParallel = {29 }"
13676
+ + " _encryptionOption = {9 }\n\t"
13677
+ + " _currentTransaction = {10 }\n\t"
13678
+ + " _pendingTransaction = {11 }\n\t"
13679
+ + " _retainedTransactionId = {12 }\n\t"
13680
+ + " _nonTransactedOpenResultCount = {13 }\n\t"
13681
+ + " _connHandler = {14 }\n\t"
13682
+ + " _fMARS = {15 }\n\t"
13683
+ + " _sessionPool = {16 }\n\t"
13684
+ + " _isShiloh = {17 }\n\t"
13685
+ + " _isShilohSP1 = {18 }\n\t"
13686
+ + " _isYukon = {19 }\n\t"
13687
+ + " _sniSpnBuffer = {20 }\n\t"
13688
+ + " _errors = {21 }\n\t"
13689
+ + " _warnings = {22 }\n\t"
13690
+ + " _attentionErrors = {23 }\n\t"
13691
+ + " _attentionWarnings = {24 }\n\t"
13692
+ + " _statistics = {25 }\n\t"
13693
+ + " _statisticsIsInTransaction = {26 }\n\t"
13694
+ + " _fPreserveTransaction = {27 }"
13695
+ + " _fParallel = {28 }"
13696
13696
;
13697
13697
internal string TraceString()
13698
13698
{
13699
13699
return string.Format(/*IFormatProvider*/ null,
13700
13700
StateTraceFormatString,
13701
- null == _physicalStateObj ? bool.TrueString : bool.FalseString ,
13702
- null == _pMarsPhysicalConObj ? bool.TrueString : bool.FalseString ,
13701
+ null == _physicalStateObj ? "(null)" : _physicalStateObj.ObjectID.ToString((IFormatProvider)null) ,
13702
+ null == _pMarsPhysicalConObj ? "(null)" : _pMarsPhysicalConObj.ObjectID.ToString((IFormatProvider)null) ,
13703
13703
_state,
13704
13704
_server,
13705
13705
_fResetConnection ? bool.TrueString : bool.FalseString,
13706
13706
null == _defaultCollation ? "(null)" : _defaultCollation.TraceString(),
13707
13707
_defaultCodePage,
13708
13708
_defaultLCID,
13709
13709
TraceObjectClass(_defaultEncoding),
13710
- "",
13711
13710
_encryptionOption,
13712
13711
null == _currentTransaction ? "(null)" : _currentTransaction.TraceString(),
13713
13712
null == _pendingTransaction ? "(null)" : _pendingTransaction.TraceString(),
0 commit comments