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() {
1069
1069
1070
1070
var createTab = function ( size ) {
1071
1071
var buffer = new StringBuffer ( ) ;
1072
- buffer . append ( "CREATE TABLE nodb_manycolumns ( " ) ;
1072
+ buffer . append ( "CREATE TABLE nodb_tab_manycolumns ( " ) ;
1073
1073
1074
1074
for ( var i = 0 ; i < size - 1 ; i ++ ) {
1075
1075
buffer . append ( "c" + i + " NUMBER, " ) ;
@@ -1095,7 +1095,7 @@ describe('12. resultSet1.js', function() {
1095
1095
} ,
1096
1096
function ( callback ) {
1097
1097
connection . execute (
1098
- "SELECT * FROM nodb_manycolumns " ,
1098
+ "SELECT * FROM nodb_tab_manycolumns " ,
1099
1099
[ ] ,
1100
1100
{ resultSet : true } ,
1101
1101
function ( err , result ) {
@@ -1110,7 +1110,7 @@ describe('12. resultSet1.js', function() {
1110
1110
} ,
1111
1111
function ( callback ) {
1112
1112
connection . execute (
1113
- "DROP TABLE nodb_manycolumns PURGE" ,
1113
+ "DROP TABLE nodb_tab_manycolumns PURGE" ,
1114
1114
function ( err ) {
1115
1115
should . not . exist ( err ) ;
1116
1116
callback ( ) ;
You can’t perform that action at this time.
0 commit comments