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