Skip to content

Commit

Permalink
Merge pull request #5 from kiskk/dev_syncdb_1.0.4
Browse files Browse the repository at this point in the history
Dev syncdb 1.0.4
  • Loading branch information
kiskk authored Dec 14, 2021
2 parents d8a21e9 + 7bffd8b commit f1be963
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 18 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2011-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
Copyright (c) 2011-2021, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
install.prefix=/usr/local/syncdb
package.version=1.0.3
package.version=1.0.4
2 changes: 1 addition & 1 deletion data/init_mlog_postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ TRUE,'(1,2)','((1, 2), (3, 4))','((5, 6), (7, 8))','((11, 12), (13, 14), (15, 16
-- BIT B'1',
B'10101','a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
-- '<foo>bar</foo>'::xml,
999,'byteaout','byteaout(bytea)','!','!!(NONE,bigint)','pg_am','"any"','english','english_stem');
999,'byteaout','byteaout(bytea)','?','*(integer,integer)','pg_am','"any"','english','english_stem');

INSERT INTO public.foo VALUES
('1', 'A', '2010-01-01 00:00:01'),
Expand Down
19 changes: 7 additions & 12 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -950,11 +950,6 @@ <h3 id="syncdb-jars">外部ライブラリ一覧</h3>
<td align="center">含む</td>
<td>コマンドライン処理</td>
</tr>
<td><a href="http://logging.apache.org/log4j/">log4j</a></td>
<td>2.11.0</td>
<td>log4j-api-2.11.0.jar<br>log4j-core-2.11.0.jar</td>
<td align="center">含む</td>
<td>ロガー</td>
<tr>
<td><a href="http://commons.apache.org/digester/">Commons Digester3</a></td>
<td>3.2</td>
Expand Down Expand Up @@ -1024,25 +1019,25 @@ <h3 id="syncdb-jars">外部ライブラリ一覧</h3>
<h2 id="requirement">動作環境</h2>
<dl>
<dt>PostgreSQL</dt>
<dd>PostgreSQL 9.3, 9.4, 9.5, 9.6, 10</dd>
<dd>PostgreSQL 10, 11, 12, 13, 14</dd>
<dt>Oracle</dt>
<dd>Oracle Database 12c R1, R2</dd>
<dd>Oracle Database 19c</dd>
<dt>OS</dt>
<dd>CentOS 6/7</dd>
<dd>RHEL 8</dd>
<dt>Java VM</dt>
<dd>OpenJDK 1.7/1.8</dd>
<dd>OpenJDK 1.8</dd>
<dt>JDK (ソースからビルド/インストールする場合に必要となります)</dt>
<dd>OpenJDK devel 1.7/1.8</dd>
<dd>OpenJDK devel 1.8</dd>
<dt>Ant (ソースからビルド/インストールする場合に必要となります)</dt>
<dd><a href="http://ant.apache.org/">Apache Ant</a> 1.9.13/1.10.5</dd>
<dd><a href="http://ant.apache.org/">Apache Ant</a> 1.10.9</dd>
</dl>

<hr />
<div class="navigation">
<a href="../index.html">Top</a> &gt;
<a href="syncdb-ja.html">syncdb</a>
<div>
<p class="footer">Copyright (c) 2008-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION</p>
<p class="footer">Copyright (c) 2008-2021, NIPPON TELEGRAPH AND TELEPHONE CORPORATION</p>

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
Expand Down
Binary file removed lib/log4j-api-2.11.0.jar
Binary file not shown.
Binary file removed lib/log4j-core-2.11.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/message.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ info.status=status {0}
info.input_query='input query : '
info.test=exception test {0} {1}
version.command=SyncDatabase {0}
version.number=1.0.3
version.number=1.0.4
2 changes: 1 addition & 1 deletion testset/jp/co/ntt/oss/SyncDatabaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

public class SyncDatabaseTest {
private static String help;
String version = "SyncDatabase 1.0.3";
String version = "SyncDatabase 1.0.4";

protected ByteArrayOutputStream _baos;
protected PrintStream _out;
Expand Down
2 changes: 1 addition & 1 deletion testset/jp/co/ntt/oss/VersionCommandTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class VersionCommandTest {

protected String version = "SyncDatabase 1.0.3";
protected String version = "SyncDatabase 1.0.4";
protected ByteArrayOutputStream _baos;
protected PrintStream _out;
protected static String newLine;
Expand Down

0 comments on commit f1be963

Please sign in to comment.