mysql2-replication 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/mysql2-replication/mysql2_replication.c +8 -0
- data/lib/mysql2-replication/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2805f25b5d6a9bdf08e003754868e51ccb0211937ec26680815441fd17e77d8e
|
4
|
+
data.tar.gz: 7b0c0ab16dc3f3345214b74507027d6771ff528b2a9610019364e4fe3ed12a98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69dbbec50472c2b9a6389d1087673cde4a6985e5142ecc4b89077cefede1ebb99365efc7d864900c5c2d99caf94e7d59f2e4fb8809539e60678d89717730fa50
|
7
|
+
data.tar.gz: d79eff1a9e767902b2204a81f0c708be685ab1dd13498e5b61d8282378cdae980a0d885e7fd2698856b5264f561c54aaff45fc64c04f23e47bad1351272ee289
|
@@ -1,3 +1,5 @@
|
|
1
|
+
#include <stdbool.h>
|
2
|
+
|
1
3
|
#include <ruby.h>
|
2
4
|
#include <ruby/encoding.h>
|
3
5
|
#include <ruby/thread.h>
|
@@ -10,6 +12,12 @@
|
|
10
12
|
/* mysql2 */
|
11
13
|
#include <client.h>
|
12
14
|
|
15
|
+
|
16
|
+
#ifndef RUBY_LL2NUM
|
17
|
+
# define RUBY_LL2NUM LL2NUM
|
18
|
+
#endif
|
19
|
+
|
20
|
+
|
13
21
|
void Init_mysql2_replication(void);
|
14
22
|
|
15
23
|
static VALUE rb_cDate;
|