embulk-input-mysql 0.9.0 → 0.9.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e3cc8c5bee45b2a7203e37ee72f9bc93e7da540
|
|
4
|
+
data.tar.gz: 2de4c815624be4fffb04b5f2ff251458adb23bde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc05748ec2595dcb4db13834ebd6d1c280a0a18f1db62bc5c380abec385e5fa307da6059e4759cabff9471184db865c7b323a11898d1ad46340251fad2dae576
|
|
7
|
+
data.tar.gz: dfae550e32b2f9504c9e3294dabb9c3d08b81cb41cb64b2423c3e6ff5c11b6e065282f064cef7a9ae3bc8605486908d36753a198e98ccb96d3bb383c65974a5b
|
data/README.md
CHANGED
|
@@ -88,6 +88,10 @@ CREATE INDEX embulk_incremental_loading_index ON table (updated_at, id);
|
|
|
88
88
|
Recommended usage is to leave `incremental_columns` unset and let this plugin automatically finds an AUTO_INCREMENT primary key. Currently, only strings and integers are supported as incremental_columns.
|
|
89
89
|
|
|
90
90
|
|
|
91
|
+
## Trouble shooting
|
|
92
|
+
|
|
93
|
+
- If you get an exception 'The server time zone value XXX is unrecognized ...', please set proper time zone to the MySQL server or set `true` to the `use_legacy_datetime_code` property.
|
|
94
|
+
|
|
91
95
|
## Example
|
|
92
96
|
|
|
93
97
|
```yaml
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-mysql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Selects records from a table.
|
|
14
14
|
email:
|
|
@@ -19,8 +19,8 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- README.md
|
|
21
21
|
- build.gradle
|
|
22
|
-
- classpath/embulk-input-jdbc-0.9.
|
|
23
|
-
- classpath/embulk-input-mysql-0.9.
|
|
22
|
+
- classpath/embulk-input-jdbc-0.9.1.jar
|
|
23
|
+
- classpath/embulk-input-mysql-0.9.1.jar
|
|
24
24
|
- default_jdbc_driver/mysql-connector-java-5.1.44.jar
|
|
25
25
|
- lib/embulk/input/mysql.rb
|
|
26
26
|
- src/main/java/org/embulk/input/MySQLInputPlugin.java
|