embulk-filter-mssql_lookup 0.1.2 → 0.1.4

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.
@@ -1,5 +1,5 @@
1
- package org.embulk.filter.mssql_lookup;
2
-
3
- public class TestMssqlLookupFilterPlugin
4
- {
5
- }
1
+ package org.embulk.filter.mssql_lookup;
2
+
3
+ public class TestMssqlLookupFilterPlugin
4
+ {
5
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-filter-mssql_lookup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
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-11-14 00:00:00.000000000 Z
11
+ date: 2023-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -49,11 +49,15 @@ files:
49
49
  - LICENSE
50
50
  - README.md
51
51
  - build.gradle
52
- - classpath/embulk-filter-mssql_lookup-0.1.2.jar
52
+ - classpath/embulk-filter-mssql_lookup-0.1.4.jar
53
53
  - classpath/sqljdbc4-4.0.jar
54
54
  - config/checkstyle/checkstyle.xml
55
55
  - config/checkstyle/default.xml
56
- - example/config.yml
56
+ - example/mssql-filter-lookup_testing.yml.liquid
57
+ - example/mssql-filter-lookup_testing_csv.yml.liquid
58
+ - example/mssql-filter-lookup_testing_mysql.yml.liquid
59
+ - example/mssql-filter-lookup_testing_oracle.yml.liquid
60
+ - example/mssql-filter-lookup_testing_postgres.yml.liquid
57
61
  - gradle/wrapper/gradle-wrapper.jar
58
62
  - gradle/wrapper/gradle-wrapper.properties
59
63
  - gradlew
@@ -67,7 +71,7 @@ homepage: https://github.com/ankit31223/embulk-filter-mysql_lookup
67
71
  licenses:
68
72
  - MIT
69
73
  metadata: {}
70
- post_install_message:
74
+ post_install_message:
71
75
  rdoc_options: []
72
76
  require_paths:
73
77
  - lib
@@ -82,8 +86,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
86
  - !ruby/object:Gem::Version
83
87
  version: '0'
84
88
  requirements: []
85
- rubygems_version: 3.2.33
86
- signing_key:
89
+ rubyforge_project:
90
+ rubygems_version: 2.7.6
91
+ signing_key:
87
92
  specification_version: 4
88
93
  summary: Mssql Lookup filter plugin for Embulk
89
94
  test_files: []
data/example/config.yml DELETED
@@ -1,44 +0,0 @@
1
- exec:
2
- max_threads: 1
3
- min_output_tasks: 1
4
- in:
5
- type: file
6
- path_prefix: /home/infoobjects/Downloads/sample/calendarFloat1 (copy).csv
7
- parser:
8
- type: csv
9
- columns:
10
- - { name: Country_Name, type: string }
11
- - { name: quarter_number, type: long }
12
-
13
- filters:
14
- - type: mssql_lookup
15
- driver_path: /home/infoobjects/Downloads/sqljdbc_1s1.2.0.0_enu/sqljdbc_11.2/enu/mssql-jdbc-11.2.0.jre8.jar
16
- driver_class: com.microsoft.sqlserver.jdbc.SQLServerDriver
17
- host: infoobjects-ThinkPad-E490
18
- database: test
19
- schemaName: testSchema1
20
- table_name: cnew
21
- username: SA
22
- password: Mssqlroot95
23
- mapping_from:
24
- - quarter_number
25
- mapping_to:
26
- - qtr_no
27
- new_columns:
28
- - { name: qtr_name, type: string }
29
-
30
- out:
31
- type: file
32
- path_prefix: /home/infoobjects/sqlOutput/output.csv
33
- file_ext: csv
34
- formatter:
35
- type: csv
36
- delimiter: "\t"
37
- newline: CRLF
38
- newline_in_field: LF
39
- charset: UTF-8
40
- quote_policy: MINIMAL
41
- quote: '"'
42
- escape: "\\"
43
- null_string: "\\N"
44
- default_timezone: 'UTC'