forked from embulk/embulk-input-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
93 lines (57 loc) · 2.41 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Release 0.6.4 - 2016-01-15
* Support schema in SQL Server.
* Log query SQL before it is used for the first time, so that the SQL is logged even if it is invalid.
Release 0.6.3 - 2016-01-13
* Upgraded embulk version to 0.8.0.
JSON type support will be added at a later major version.
Release 0.6.2 - 2016-01-04
* Support schema in Oracle.
Release 0.6.1 - 2015-12-08
This release requires embulk >= 0.7.1.
* Add connect_timeout and socket_timeout to config.
* Support SSL in PostrgreSQL (@kamatama41++).
Release 0.6.0 - 2015-07-06
* Upgraded embulk to v0.6.16
* Added support for SQL Server - embulk-input-sqlserver
* options: option accepts 'true', 'false' and integers without double quotes
Release 0.5.0 - 2015-06-17
* Upgraded embulk to v0.6.11
* Fixed a bug that causes embulk-input-mysql not to use column aliases in SQL 'as' clause (@torihat++)
* Enabled to specify embulk types and JDBC types by column_options
* Added embulk-input-oracle
Release 0.4.0 - 2015-03-05
* added support for 'query' parameter.
* If 'query' parameter is set, 'table', 'select', 'where' and 'order_by' parameters are invalid.
Release 0.3.0 - 2015-02-27
* jdbc: url parameter replaced driver_name, host, port, and database
parameters. If you are using jdbc input plugin, you need to rewrite config
file as following:
Old configuration:
driver_class: com.ibm.db2.jcc.DB2Driver
driver_name: db2
host: localhost
port: 50000
database: mydb
New configuration:
driver_class: com.ibm.db2.jcc.DB2Driver
url: jdbc:db2://localhost:50000/mydb
Release 0.2.4 - 2015-02-26
* Upgraded embulk to v0.4.10.
* jdbc: added driver_path parameter to load jar file dynamically.
Release 0.2.3 - 2015-02-25
* Upgraded embulk to v0.4.8
* Added guess method, which does nothing
Release 0.2.2 - 2015-02-17
* output/mysql: enhanced fetch_rows handling.
If fetch_rows > 1, set useCursorFetch=true which enables server-side
prepared statements. It fetches rows by chunks.
If fetch_rows = 1, set Integer.MIN_VALUE to Statement.setFetchSize. It
fetches rows one by one.
If fetch_rows < 0, don't set anything. It fetches all rows at once
to memory.
Release 0.2.1 - 2015-02-17
* Added support for DECIMAL type. DECIMAL is converted to double type
(@shun0102++)
* output-mysql sets zeroDateTimeBehavior=convertToNull to the connection
parameter to avoid 'SQLException: Value '0000-00-00' can not be represented
as java.sql.Date' exception (@shun0102++)