File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public enum Key : uint
17
17
Username = 0x23 ,
18
18
Expression = 0x27 ,
19
19
Ops = 0x28 ,
20
- FieldName = 0x29 ,
20
+ FieldName = 0x00 ,
21
21
22
22
// Response keys
23
23
Data = 0x30 ,
@@ -28,8 +28,8 @@ public enum Key : uint
28
28
SqlQueryText = 0x40 ,
29
29
SqlParameters = 0x41 ,
30
30
SqlOptions = 0x42 ,
31
- SqlInfo = 0x43 ,
32
- SqlRowCount = 0x44 ,
31
+ SqlInfo = 0x42 ,
32
+ SqlRowCount = 0x00 ,
33
33
34
34
// Replication keys
35
35
ServerId = 0x02 ,
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ private void MatchResult(byte[] result)
234
234
else
235
235
{
236
236
_clientOptions . LogWriter ? . WriteLine ( $ "Match for request with id { header . RequestId } found.") ;
237
- tcs . SetResult ( resultStream ) ;
237
+ Task . Run ( ( ) => tcs . SetResult ( resultStream ) ) ;
238
238
}
239
239
}
240
240
You can’t perform that action at this time.
0 commit comments