We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4f0f7 commit c75617aCopy full SHA for c75617a
spec/mysql2/statement_spec.rb
@@ -65,7 +65,6 @@
65
int64_min = -(1 << 63)
66
result = stmt.execute(int64_max, int64_min)
67
expect(result.to_a).to eq(['max' => int64_max, 'min' => int64_min])
68
- @client.query 'DROP TABLE IF EXISTS mysql2_stmt_q'
69
end
70
71
it "should handle bignum but beyond int64_t" do
@@ -74,7 +73,6 @@
74
73
int64_min1 = -(1 << 63) - 1
75
result = stmt.execute(int64_max1, int64_min1)
76
expect(result.to_a).to eq(['max1' => "9223372036854775808", 'min1' => "-9223372036854775809"])
77
78
79
80
it "should keep its result after other query" do
0 commit comments