Skip to content

Commit 0ec47a2

Browse files
committed
Update table name
1 parent 811c170 commit 0ec47a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/resultSet1.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)