File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ Connection.prototype.parseZ = function(buffer, length) {
460
460
return msg ;
461
461
} ;
462
462
463
- ROW_DESCRIPTION = 'rowDescription' ;
463
+ var ROW_DESCRIPTION = 'rowDescription' ;
464
464
Connection . prototype . parseT = function ( buffer , length ) {
465
465
var msg = new Message ( ROW_DESCRIPTION , length ) ;
466
466
msg . fieldCount = this . parseInt16 ( buffer ) ;
@@ -482,8 +482,8 @@ var Field = function() {
482
482
this . format = null ;
483
483
} ;
484
484
485
- FORMAT_TEXT = 'text' ;
486
- FORMAT_BINARY = 'binary' ;
485
+ var FORMAT_TEXT = 'text' ;
486
+ var FORMAT_BINARY = 'binary' ;
487
487
Connection . prototype . parseField = function ( buffer ) {
488
488
var field = new Field ( ) ;
489
489
field . name = this . parseCString ( buffer ) ;
@@ -502,7 +502,7 @@ Connection.prototype.parseField = function(buffer) {
502
502
return field ;
503
503
} ;
504
504
505
- DATA_ROW = 'dataRow' ;
505
+ var DATA_ROW = 'dataRow' ;
506
506
var DataRowMessage = function ( name , length , fieldCount ) {
507
507
this . name = DATA_ROW ;
508
508
this . length = length ;
You can’t perform that action at this time.
0 commit comments