File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
lib/thin/protocol/messages Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,6 @@ class MessageWithData extends Message {
156156 if ( statement . numQueryVars > 0 ) {
157157 buf . skipUB1 ( ) ;
158158 }
159- resultSet . metadata = [ ] ;
160159 const metadata = [ ] ;
161160 const queryVars = [ ] ;
162161 for ( let i = 0 ; i < statement . numQueryVars ; i ++ ) {
@@ -185,7 +184,7 @@ class MessageWithData extends Message {
185184 * at end of the DescribeInfo function so that an OutOfPacketsError
186185 * won't cause partial information state to be stored.
187186 */
188- resultSet . metadata = metadata ;
187+ resultSet . metaData = metadata ;
189188 statement . queryVars = queryVars ;
190189 this . resultSetsToSetup . push ( resultSet ) ;
191190 }
@@ -629,7 +628,7 @@ class MessageWithData extends Message {
629628 }
630629 await this . connection . _populatePartialDbObjectTypes ( ) ;
631630 for ( const resultSet of this . resultSetsToSetup ) {
632- resultSet . _setup ( this . options , resultSet . metadata ) ;
631+ resultSet . _setup ( this . options , resultSet . metaData ) ;
633632 // LOBs always require define and they change the type that is actually
634633 // returned by the server
635634 for ( const variable of resultSet . statement . queryVars ) {
You can’t perform that action at this time.
0 commit comments