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 @@ -149,9 +149,9 @@ IntVar.prototype.dump = function () {
149149} ;
150150
151151/**
152- * This evenement describe the structure of a table.
153- * It's send before a change append on a table.
154- * A end user of the lib should have no usage of this
152+ * This event describes the structure of a table.
153+ * It's sent before a change append on a table.
154+ * An end user of the lib should have no usage of this
155155 *
156156 * see http://dev.mysql.com/doc/internals/en/table-map-event.html
157157 **/
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const parseUInt64 = (exports.parseUInt64 = function (parser) {
5050
5151 if ( high >>> 21 ) {
5252 // using bigint here
53- return bigInt ( TWO_TO_POWER_THIRTY_TWO ) . multiply ( high ) . add ( low ) . toString ( ) ;
53+ return bigInt ( TWO_TO_POWER_THIRTY_TWO ) . multiply ( high ) . add ( low ) ;
5454 }
5555
5656 return high * Math . pow ( 2 , 32 ) + low ;
You can’t perform that action at this time.
0 commit comments