mysql2 0.5.1-x86-mingw32 → 0.5.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b22531a4167fc8f203ecf0bc350964e919f297359b82d26024f562534184a66a
4
- data.tar.gz: 5dd9267a3c8b147b48d686a7db578cc9b465481d6c16b68614c1419f0ea425b3
3
+ metadata.gz: 8958f711411b81d6d082a66217d272160bfcb88bb1a8666ba81b5340f82a26dc
4
+ data.tar.gz: c79468da62cf9882e56a02f15387427b3e32ca8fdd64c2c3c59012d254836db3
5
5
  SHA512:
6
- metadata.gz: 964e6efd16b1cb22c9ff916d428a0734c4c5efcd1d499e5a3dad708cb9641a188738fa3df1e720b5325154bf2cef15586a9410a08a650b064ef48f1fcc3923cd
7
- data.tar.gz: cefb886890d8942deffd4a7cdb79d9aff8eb58e8dd3edfb6f80fd2883af6e7175b02d776019774f9cf0bc644174148790121a60433092e897933a42255a79209
6
+ metadata.gz: 25e1368d933b51959c111b133b2a02e391c6f1dfc402838f99826f85f923a1c25e579a57f1ee50d33fe0f20ca6c9d380000a915eb1b53bd0bfb11364bc2bbdc0
7
+ data.tar.gz: 47042b9536ee623e295f9bef3a20a60e84bf11d92ea49741f346a79c1b777672ba477d0a41f00d745e9c8473057273d6a396f3f1a483562828a0f0d24030bf80
data/README.md CHANGED
@@ -74,10 +74,11 @@ To see line numbers in backtraces, declare these environment variables
74
74
 
75
75
  ### Linux and other Unixes
76
76
 
77
- You may need to install a package such as `libmysqlclient-dev` or `mysql-devel`;
78
- refer to your distribution's package guide to find the particular package.
79
- The most common issue we see is a user who has the library file `libmysqlclient.so` but is
80
- missing the header file `mysql.h` -- double check that you have the _-dev_ packages installed.
77
+ You may need to install a package such as `libmysqlclient-dev`, `mysql-devel`,
78
+ or `default-libmysqlclient-dev`; refer to your distribution's package guide to
79
+ find the particular package. The most common issue we see is a user who has
80
+ the library file `libmysqlclient.so` but is missing the header file `mysql.h`
81
+ -- double check that you have the _-dev_ packages installed.
81
82
 
82
83
  ### Mac OS X
83
84
 
@@ -245,5 +245,15 @@ static const char *mysql2_mysql_enc_to_rb[] = {
245
245
  "UTF-8",
246
246
  "UTF-8",
247
247
  "UTF-8",
248
+ "UTF-8",
249
+ NULL,
250
+ NULL,
251
+ NULL,
252
+ NULL,
253
+ NULL,
254
+ NULL,
255
+ NULL,
248
256
  "UTF-8"
249
257
  };
258
+
259
+ #define CHARSETNR_SIZE (sizeof(mysql2_mysql_enc_to_rb)/sizeof(mysql2_mysql_enc_to_rb[0]))
@@ -179,7 +179,8 @@ static VALUE mysql2_set_field_string_encoding(VALUE val, MYSQL_FIELD field, rb_e
179
179
  const char *enc_name;
180
180
  int enc_index;
181
181
 
182
- enc_name = mysql2_mysql_enc_to_rb[field.charsetnr-1];
182
+ enc_name = (field.charsetnr-1 < CHARSETNR_SIZE) ? mysql2_mysql_enc_to_rb[field.charsetnr-1] : NULL;
183
+
183
184
  if (enc_name != NULL) {
184
185
  /* use the field encoding we were able to match */
185
186
  enc_index = rb_enc_find_index(enc_name);
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module Mysql2
2
- VERSION = "0.5.1".freeze
2
+ VERSION = "0.5.2".freeze
3
3
  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.5.1
4
+ version: 0.5.2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Brian Lopez
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-04-11 00:00:00.000000000 Z
12
+ date: 2018-07-04 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: