mysql_blob_streaming 2.0.2 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/mysql_blob_streaming/mysql_blob_streaming.c +7 -0
- data/lib/mysql_blob_streaming/version.rb +3 -0
- metadata +29 -29
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9406a7e9e9fa62bb150d207928020d375660d1376863f99c2952417b2c90e4b3
|
4
|
+
data.tar.gz: 4afad7f3b474dd31c7c5c3a857555c21f792ce5fc2f8fc4a33bd669c27523263
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 13319a53b531f34a615e983ddc6c6c4d71f489b5891afe14edc862caac92f3b13bf5a31b2fd6927844ed19c7e32bc6ff96c8172b770265622cf399ec1edd36a9
|
7
|
+
data.tar.gz: 5635f984869d77e2796c4e09a96abbf21103f03b12d6444f4ce94accf0265622f4e482d1a4ef81e100ee1c55fdff0763a1b37e1b4dd4ee82abcad07a8ca2f369
|
@@ -4,14 +4,21 @@
|
|
4
4
|
#include <mysql.h>
|
5
5
|
#include <errmsg.h>
|
6
6
|
|
7
|
+
#if MYSQL_VERSION_ID >=80000
|
8
|
+
typedef bool my_bool;
|
9
|
+
#endif
|
7
10
|
|
8
11
|
typedef struct {
|
9
12
|
VALUE encoding;
|
10
13
|
VALUE active_thread;
|
14
|
+
long server_version;
|
11
15
|
int reconnect_enabled;
|
16
|
+
int connect_timeout;
|
12
17
|
int active;
|
13
18
|
int connected;
|
14
19
|
int initialized;
|
20
|
+
int refcount;
|
21
|
+
int freed;
|
15
22
|
MYSQL *client;
|
16
23
|
} mysql_client_wrapper;
|
17
24
|
|
metadata
CHANGED
@@ -1,36 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mysql_blob_streaming
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
5
|
-
prerelease:
|
4
|
+
version: 2.4.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Infopark AG
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: mysql2
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
19
|
+
version: 0.4.4
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.6.0
|
22
23
|
type: :runtime
|
23
24
|
prerelease: false
|
24
25
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.4.4
|
30
|
+
- - "<"
|
28
31
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
30
|
-
description:
|
31
|
-
|
32
|
-
|
33
|
-
'
|
32
|
+
version: 0.6.0
|
33
|
+
description: " This GEM is required by the infopark_fiona_connector when using
|
34
|
+
MySQL.\n"
|
34
35
|
email: info@infopark.de
|
35
36
|
executables: []
|
36
37
|
extensions:
|
@@ -38,36 +39,35 @@ extensions:
|
|
38
39
|
extra_rdoc_files:
|
39
40
|
- README.markdown
|
40
41
|
files:
|
41
|
-
- lib/mysql_blob_streaming.rb
|
42
|
-
- ext/mysql_blob_streaming/mysql_blob_streaming.c
|
43
|
-
- ext/mysql_blob_streaming/extconf.rb
|
44
42
|
- README.markdown
|
43
|
+
- ext/mysql_blob_streaming/extconf.rb
|
44
|
+
- ext/mysql_blob_streaming/mysql_blob_streaming.c
|
45
|
+
- lib/mysql_blob_streaming.rb
|
46
|
+
- lib/mysql_blob_streaming/version.rb
|
45
47
|
homepage: http://www.infopark.de/
|
46
48
|
licenses:
|
47
49
|
- MIT
|
48
|
-
|
50
|
+
metadata: {}
|
51
|
+
post_install_message:
|
49
52
|
rdoc_options:
|
50
|
-
- --main
|
53
|
+
- "--main"
|
51
54
|
- README.markdown
|
52
55
|
require_paths:
|
53
56
|
- lib
|
54
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
-
none: false
|
56
58
|
requirements:
|
57
|
-
- -
|
59
|
+
- - ">="
|
58
60
|
- !ruby/object:Gem::Version
|
59
|
-
version:
|
61
|
+
version: 2.0.0
|
60
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
-
none: false
|
62
63
|
requirements:
|
63
|
-
- -
|
64
|
+
- - ">="
|
64
65
|
- !ruby/object:Gem::Version
|
65
66
|
version: '0'
|
66
67
|
requirements:
|
67
|
-
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
specification_version: 3
|
68
|
+
- infopark_fiona_connector
|
69
|
+
rubygems_version: 3.0.9
|
70
|
+
signing_key:
|
71
|
+
specification_version: 4
|
72
72
|
summary: A blob streaming extension for the native Ruby-MySQL2 adapter
|
73
73
|
test_files: []
|