mysql2 0.3.12b5 → 0.3.12b6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +1 -1
- data/ext/mysql2/client.c +1 -1
- data/lib/mysql2/version.rb +1 -1
- data/spec/mysql2/client_spec.rb +5 -5
- metadata +2 -3
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
3
|
## 0.3.12 (not yet released)
|
4
|
-
## 0.3.12b5 (
|
4
|
+
## 0.3.12b5 (December 14, 2012)
|
5
5
|
* builds on Ruby 2.0-head and Rubinius 2.0-dev
|
6
6
|
* encoding names now stored in a Gperf lookup rather than an array
|
7
7
|
* long-standing bug fix: options set on a single query must not be applied to subsequent queries
|
data/ext/mysql2/client.c
CHANGED
@@ -177,7 +177,6 @@ static VALUE nogvl_close(void *ptr) {
|
|
177
177
|
#endif
|
178
178
|
|
179
179
|
mysql_close(wrapper->client);
|
180
|
-
xfree(wrapper->client);
|
181
180
|
}
|
182
181
|
|
183
182
|
return Qnil;
|
@@ -188,6 +187,7 @@ static void rb_mysql_client_free(void * ptr) {
|
|
188
187
|
|
189
188
|
nogvl_close(wrapper);
|
190
189
|
|
190
|
+
xfree(wrapper->client);
|
191
191
|
xfree(ptr);
|
192
192
|
}
|
193
193
|
|
data/lib/mysql2/version.rb
CHANGED
data/spec/mysql2/client_spec.rb
CHANGED
@@ -17,17 +17,17 @@ describe Mysql2::Client do
|
|
17
17
|
if defined? Encoding
|
18
18
|
it "should raise an exception on create for invalid encodings" do
|
19
19
|
lambda {
|
20
|
-
c = Mysql2::Client.new(:encoding => "fake")
|
20
|
+
c = Mysql2::Client.new(DatabaseCredentials['root'].merge(:encoding => "fake"))
|
21
21
|
}.should raise_error(Mysql2::Error)
|
22
22
|
end
|
23
23
|
|
24
24
|
it "should not raise an exception on create for a valid encoding" do
|
25
25
|
lambda {
|
26
|
-
c = Mysql2::Client.new(:encoding => "utf8")
|
26
|
+
c = Mysql2::Client.new(DatabaseCredentials['root'].merge(:encoding => "utf8"))
|
27
27
|
}.should_not raise_error(Mysql2::Error)
|
28
28
|
|
29
29
|
lambda {
|
30
|
-
c = Mysql2::Client.new(:encoding => "big5")
|
30
|
+
c = Mysql2::Client.new(DatabaseCredentials['root'].merge(:encoding => "big5"))
|
31
31
|
}.should_not raise_error(Mysql2::Error)
|
32
32
|
end
|
33
33
|
end
|
@@ -416,10 +416,10 @@ describe Mysql2::Client do
|
|
416
416
|
it "#more_results? should work" do
|
417
417
|
@multi_client.query( "select 1 as 'set_1'; select 2 as 'set_2'")
|
418
418
|
@multi_client.more_results?.should == true
|
419
|
-
|
419
|
+
|
420
420
|
@multi_client.next_result
|
421
421
|
@multi_client.store_result
|
422
|
-
|
422
|
+
|
423
423
|
@multi_client.more_results?.should == false
|
424
424
|
end
|
425
425
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mysql2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.12b6
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: eventmachine
|
@@ -147,4 +147,3 @@ test_files:
|
|
147
147
|
- spec/mysql2/result_spec.rb
|
148
148
|
- spec/rcov.opts
|
149
149
|
- spec/spec_helper.rb
|
150
|
-
has_rdoc:
|