embulk-filter-mysql_lookup 0.1.5 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
- package org.embulk.filter.mysql_lookup;
2
-
3
- public class TestMysqlLookupFilterPlugin
4
- {
5
- }
1
+ package org.embulk.filter.mysql_lookup;
2
+
3
+ public class TestMysqlLookupFilterPlugin
4
+ {
5
+ }
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.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - InfoObjects Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-27 00:00:00.000000000 Z
11
+ date: 2023-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -49,15 +49,16 @@ files:
49
49
  - LICENSE
50
50
  - README.md
51
51
  - build.gradle
52
- - classpath/embulk-filter-mysql_lookup-0.1.5.jar
52
+ - classpath/embulk-filter-mysql_lookup-0.1.7.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
56
56
  - config/checkstyle/default.xml
57
- - config1.yml
58
- - embulk-filter-mysql_lookup-0.1.3.gem
59
- - embulk-filter-mysql_lookup-0.1.4.gem
60
- - example/config1.yml
57
+ - example/mysql-filter-lookup_testing.yml.liquid
58
+ - example/mysql-filter-lookup_testing_csv.yml.liquid
59
+ - example/mysql-filter-lookup_testing_mssql.yml.liquid
60
+ - example/mysql-filter-lookup_testing_oracle.yml.liquid
61
+ - example/mysql-filter-lookup_testing_postgres.yml.liquid
61
62
  - gradle/wrapper/gradle-wrapper.jar
62
63
  - gradle/wrapper/gradle-wrapper.properties
63
64
  - gradlew
@@ -71,7 +72,7 @@ homepage: https://github.com/InfoObjects/embulk-filter-mysql_lookup
71
72
  licenses:
72
73
  - MIT
73
74
  metadata: {}
74
- post_install_message:
75
+ post_install_message:
75
76
  rdoc_options: []
76
77
  require_paths:
77
78
  - lib
@@ -86,8 +87,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
87
  - !ruby/object:Gem::Version
87
88
  version: '0'
88
89
  requirements: []
89
- rubygems_version: 3.2.33
90
- signing_key:
90
+ rubyforge_project:
91
+ rubygems_version: 2.7.6
92
+ signing_key:
91
93
  specification_version: 4
92
94
  summary: An Embulk filter plugin for Lookup Transformation with MySQL database
93
95
  test_files: []
data/config1.yml DELETED
@@ -1,47 +0,0 @@
1
- exec:
2
- max_threads: 2
3
- min_output_tasks: 1
4
- in:
5
- type: file
6
- path_prefix: C:\Users\AnkitKumar\Desktop\embulk-filter-mysqllookup\calendar.csv
7
- parser:
8
- type: csv
9
- columns:
10
- - { name: dim_calendar_key, type: long }
11
- - { name: year_number, type: long }
12
- - { name: quarter_number, type: long }
13
- - { name: attr_1, type: string }
14
- filters:
15
- - type: mysql_lookup
16
- host: localhost
17
- port: 3306
18
- driver_path: C:/Users/AnkitKumar/Desktop/embulk-plugins/mysql-connector-java-8.0.19.jar
19
- driver_class: com.mysql.cj.jdbc.Driver
20
- database: information
21
- table_name: country
22
- username: root
23
- password: root
24
- mapping_from:
25
- - quarter_number
26
- - attr_1
27
- mapping_to:
28
- - id
29
- - country_code
30
- new_columns:
31
- - { name: counry_address, type: string }
32
- - { name: country_code,type: double}
33
- out:
34
- type: file
35
- path_prefix: C:/Users/AnkitKumar/Desktop/embulk-files/sample/output.csv
36
- file_ext: csv
37
- formatter:
38
- type: csv
39
- delimiter: "\t"
40
- newline: CRLF
41
- newline_in_field: LF
42
- charset: UTF-8
43
- quote_policy: MINIMAL
44
- quote: '"'
45
- escape: "\\"
46
- null_string: "\\N"
47
- default_timezone: 'UTC'
Binary file
Binary file
data/example/config1.yml DELETED
@@ -1,47 +0,0 @@
1
- exec:
2
- max_threads: 2
3
- min_output_tasks: 1
4
- in:
5
- type: file
6
- path_prefix: C:\Users\AnkitKumar\Desktop\embulk-filter-mysqllookup\calendar.csv
7
- parser:
8
- type: csv
9
- columns:
10
- - { name: dim_calendar_key, type: long }
11
- - { name: year_number, type: long }
12
- - { name: quarter_number, type: long }
13
- - { name: attr_1, type: string }
14
- filters:
15
- - type: mysql_lookup
16
- host: localhost
17
- port: 3306
18
- driver_path: C:/Users/AnkitKumar/Desktop/embulk-plugins/mysql-connector-java-8.0.19.jar
19
- driver_class: com.mysql.cj.jdbc.Driver
20
- database: information
21
- table_name: country
22
- username: root
23
- password: root
24
- mapping_from:
25
- - quarter_number
26
- - attr_1
27
- mapping_to:
28
- - id
29
- - country_code
30
- new_columns:
31
- - { name: country_address, type: string }
32
- - { name: country_code,type: double}
33
- out:
34
- type: file
35
- path_prefix: C:/Users/AnkitKumar/Desktop/embulk-files/sample/output.csv
36
- file_ext: csv
37
- formatter:
38
- type: csv
39
- delimiter: "\t"
40
- newline: CRLF
41
- newline_in_field: LF
42
- charset: UTF-8
43
- quote_policy: MINIMAL
44
- quote: '"'
45
- escape: "\\"
46
- null_string: "\\N"
47
- default_timezone: 'UTC'