@@ -45,19 +45,19 @@ class MySQLFrameDecoder(charset: Charset, connectionId : String) extends ByteToM
45
45
private final val rowDecoder = new ResultSetRowDecoder (charset)
46
46
private final val preparedStatementPrepareDecoder = new PreparedStatementPrepareResponseDecoder ()
47
47
48
- @ volatile private [codec] var processingColumns = false
49
- @ volatile private [codec] var processingParams = false
50
- @ volatile private [codec] var isInQuery = false
51
- @ volatile private [codec] var isPreparedStatementPrepare = false
52
- @ volatile private [codec] var isPreparedStatementExecute = false
53
- @ volatile private [codec] var isPreparedStatementExecuteRows = false
54
-
55
- @ volatile private [codec] var totalParams = 0L
56
- @ volatile private [codec] var processedParams = 0L
57
- @ volatile private [codec] var totalColumns = 0L
58
- @ volatile private [codec] var processedColumns = 0L
59
-
60
- @ volatile private var hasReadColumnsCount = false
48
+ private [codec] var processingColumns = false
49
+ private [codec] var processingParams = false
50
+ private [codec] var isInQuery = false
51
+ private [codec] var isPreparedStatementPrepare = false
52
+ private [codec] var isPreparedStatementExecute = false
53
+ private [codec] var isPreparedStatementExecuteRows = false
54
+
55
+ private [codec] var totalParams = 0L
56
+ private [codec] var processedParams = 0L
57
+ private [codec] var totalColumns = 0L
58
+ private [codec] var processedColumns = 0L
59
+
60
+ private var hasReadColumnsCount = false
61
61
62
62
def decode (ctx : ChannelHandlerContext , buffer : ByteBuf , out : java.util.List [Object ]): Unit = {
63
63
if (buffer.readableBytes() > 4 ) {
0 commit comments