File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1069,7 +1069,7 @@ describe('12. resultSet1.js', function() {
10691069
10701070 var createTab = function ( size ) {
10711071 var buffer = new StringBuffer ( ) ;
1072- buffer . append ( "CREATE TABLE nodb_manycolumns ( " ) ;
1072+ buffer . append ( "CREATE TABLE nodb_tab_manycolumns ( " ) ;
10731073
10741074 for ( var i = 0 ; i < size - 1 ; i ++ ) {
10751075 buffer . append ( "c" + i + " NUMBER, " ) ;
@@ -1095,7 +1095,7 @@ describe('12. resultSet1.js', function() {
10951095 } ,
10961096 function ( callback ) {
10971097 connection . execute (
1098- "SELECT * FROM nodb_manycolumns " ,
1098+ "SELECT * FROM nodb_tab_manycolumns " ,
10991099 [ ] ,
11001100 { resultSet : true } ,
11011101 function ( err , result ) {
@@ -1110,7 +1110,7 @@ describe('12. resultSet1.js', function() {
11101110 } ,
11111111 function ( callback ) {
11121112 connection . execute (
1113- "DROP TABLE nodb_manycolumns PURGE" ,
1113+ "DROP TABLE nodb_tab_manycolumns PURGE" ,
11141114 function ( err ) {
11151115 should . not . exist ( err ) ;
11161116 callback ( ) ;
You can’t perform that action at this time.
0 commit comments