embulk-filter-mysql_lookup 0.1.1 → 0.1.2

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: 1edcd96e9f045d65422c89365d9cc96dcc2a07be1eb8b2621649ab4b7ec536cb
4
- data.tar.gz: dc11321041d2742c1fb16049f2c30eba9713afa4c3bb0b493c80dabce28d0cf7
3
+ metadata.gz: e02b5acd30ab78d23644512fb2dea8e666e3fef90a5eacab457823687890e5c2
4
+ data.tar.gz: 3870024c565dc90c9f20249d386b50c70c3fc5eb58bc41ae56140d0c20dbf1ba
5
5
  SHA512:
6
- metadata.gz: edbed44e7896c2386ad927cfefa776d00d604833a299449b2b6f9c4fdfe108b62b7974b08fc6c69cc5d1c46264b90821c5e4501a0b0f7e0808a6a16f9cefdcce
7
- data.tar.gz: 26c97994a36265efd1f80dee4b6cd647cbacc8580a2badc04bd60964f63600702debca3f558bfe43e52b6dac1ec744028cb9beaf1c70360b814850e3d4420640
6
+ metadata.gz: 647678e14121432fe81274cec83147fe7f75334d423d70dbc5d0bfecac5f98cdfd1527c0f7b4cd3c727ca0de4f68e6580e278696095225e57de44ba5add52fb7
7
+ data.tar.gz: a7e9c7bea7830a34ba19e0ce46105624360c88a1f2de148b9a3b4d081fc5423533567d5523143de9e48df74aa0660a099d3379634c2305a36a85237b23edd25b
data/README.md CHANGED
@@ -8,7 +8,7 @@ An Embulk filter plugin for Lookup Transformation with MySQL database
8
8
  - **host**: database host (example `localhost`) (required)
9
9
  - **port**: database port (example port for mssql `1433`) (required
10
10
  - **database**: database name (required)
11
- - **tablename**: table name of your database (required)
11
+ - **table_name**: table name of your database (required)
12
12
  - **username**: username for your database (required)
13
13
  - **password**: password for database (required)
14
14
  - **mapping_from**: (Name of columns to be matched with table 2 columns) (required)
data/build.gradle CHANGED
@@ -13,7 +13,7 @@ configurations {
13
13
  provided
14
14
  }
15
15
 
16
- version = "0.1.1"
16
+ version = "0.1.2"
17
17
 
18
18
  sourceCompatibility = 1.8
19
19
  targetCompatibility = 1.8
data/example/config.yml CHANGED
@@ -16,7 +16,7 @@ filters:
16
16
  host: localhost
17
17
  port: 3306
18
18
  database: information
19
- tablename: country
19
+ table_name: country
20
20
  username: root
21
21
  password: root
22
22
  mapping_from:
@@ -30,7 +30,7 @@ public class MysqlLookupFilterPlugin
30
30
  @Config("database")
31
31
  public String getDatabase();
32
32
 
33
- @Config("tablename")
33
+ @Config("table_name")
34
34
  public String getTableName();
35
35
 
36
36
  @Config("username")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-filter-mysql_lookup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - InfoObjects Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-16 00:00:00.000000000 Z
11
+ date: 2022-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -49,7 +49,7 @@ files:
49
49
  - LICENSE.txt
50
50
  - README.md
51
51
  - build.gradle
52
- - classpath/embulk-filter-mysql_lookup-0.1.1.jar
52
+ - classpath/embulk-filter-mysql_lookup-0.1.2.jar
53
53
  - classpath/mysql-connector-java-8.0.19.jar
54
54
  - classpath/protobuf-java-3.6.1.jar
55
55
  - config/checkstyle/checkstyle.xml