Skip to content

Commit c75617a

Browse files
committed
drop is not needed
1 parent 0c4f0f7 commit c75617a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

spec/mysql2/statement_spec.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
int64_min = -(1 << 63)
6666
result = stmt.execute(int64_max, int64_min)
6767
expect(result.to_a).to eq(['max' => int64_max, 'min' => int64_min])
68-
@client.query 'DROP TABLE IF EXISTS mysql2_stmt_q'
6968
end
7069

7170
it "should handle bignum but beyond int64_t" do
@@ -74,7 +73,6 @@
7473
int64_min1 = -(1 << 63) - 1
7574
result = stmt.execute(int64_max1, int64_min1)
7675
expect(result.to_a).to eq(['max1' => "9223372036854775808", 'min1' => "-9223372036854775809"])
77-
@client.query 'DROP TABLE IF EXISTS mysql2_stmt_q'
7876
end
7977

8078
it "should keep its result after other query" do

0 commit comments

Comments
 (0)