embulk-filter-mysql_lookup 0.1.1 → 0.1.3

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: 140ad7f2d6112e0ddf60e9947b6fe7156786e05a186464b906278f44b7554563
4
+ data.tar.gz: afc377694ff059a16fabb9e5bcdcad5f2bbb22cf171ba93cb958acc89e4c8794
5
5
  SHA512:
6
- metadata.gz: edbed44e7896c2386ad927cfefa776d00d604833a299449b2b6f9c4fdfe108b62b7974b08fc6c69cc5d1c46264b90821c5e4501a0b0f7e0808a6a16f9cefdcce
7
- data.tar.gz: 26c97994a36265efd1f80dee4b6cd647cbacc8580a2badc04bd60964f63600702debca3f558bfe43e52b6dac1ec744028cb9beaf1c70360b814850e3d4420640
6
+ metadata.gz: e37a65a03c84d623f49e359e3b5b9d8a3a5c0ef84523fcb018f02a32f9afe81ba371c2c7cfe02b95808b391e0fd3697a108ff7704be0c55b793f4cf8c6a2e01b
7
+ data.tar.gz: 01fa1336372fdeba4af86ab98c3c52be97b07abaec9aefd45133c48883941b75920d759b5cbba5a128cbf5f1dece5cb0dab7d2c64568e3ef3a8297c3062eef3c
data/README.md CHANGED
@@ -1,4 +1,11 @@
1
+ <p align="center">
2
+ <a href="https://www.infoobjects.com/" target="blank"><img src="screenshots/logo.png" width="150" alt="InfoObjects Logo" /></a>
3
+ </p>
4
+ <p align="center">Infoobjects is a consulting company that helps enterprises transform how and where they run applications and infrastructure.</p>
5
+
1
6
  # MYSQL lookup filter plugin for Embulk
7
+ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
8
+
2
9
 
3
10
  An Embulk filter plugin for Lookup Transformation with MySQL database
4
11
 
@@ -8,7 +15,7 @@ An Embulk filter plugin for Lookup Transformation with MySQL database
8
15
  - **host**: database host (example `localhost`) (required)
9
16
  - **port**: database port (example port for mssql `1433`) (required
10
17
  - **database**: database name (required)
11
- - **tablename**: table name of your database (required)
18
+ - **table_name**: table name of your database (required)
12
19
  - **username**: username for your database (required)
13
20
  - **password**: password for database (required)
14
21
  - **mapping_from**: (Name of columns to be matched with table 2 columns) (required)
@@ -130,4 +137,7 @@ Release gem:
130
137
 
131
138
  ```
132
139
  $ ./gradlew gemPush
133
- ```
140
+ ```
141
+ ## Licensing
142
+
143
+ InfoObjects [license](LICENSE) (MIT License)
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.3"
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:
Binary file
@@ -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.3
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.3.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
@@ -60,6 +60,7 @@ files:
60
60
  - gradlew
61
61
  - gradlew.bat
62
62
  - lib/embulk/filter/mysql_lookup.rb
63
+ - screenshots/logo.png
63
64
  - src/main/java/org/embulk/filter/mysql_lookup/DatabaseConnection.java
64
65
  - src/main/java/org/embulk/filter/mysql_lookup/MysqlLookupFilterPlugin.java
65
66
  - src/test/java/org/embulk/filter/mysql_lookup/TestMysqlLookupFilterPlugin.java