版本迭代

This commit is contained in:
inrgihc
2020-11-07 10:28:18 +08:00
parent a3155bb151
commit cce4dfa3dd
15 changed files with 58 additions and 33 deletions

25
.gitignore vendored Normal file
View File

@@ -0,0 +1,25 @@
target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

View File

@@ -1297,23 +1297,23 @@ CREATE TABLE "private"."t_test_postgres_table" (
| Oracle | 文本 | LONG | LONG |
| Oracle | 文本 | CLOB | CLOB |
| Oracle | 二进制 | BLOB | BLOB |
| Greenplum | 布尔 | BOOL | BOOL |
| Greenplum | 数字 | SMALLINT | SMALLINT(2) |
| Greenplum | 数字 | INT2 | INT2 |
| Greenplum | 数字 | INTEGER | INTEGER |
| Greenplum | 数字 | INT4 | INT4 |
| Greenplum | 数字 | BIGINT | BIGINT |
| Greenplum | 数字 | INT8 | INT8 |
| Greenplum | 数字 | DECIMAL | DECIMAL(8,2) |
| Greenplum | 数字 | NUMERIC | NUMERIC(8,2) |
| Greenplum | 数字 | REAL | REAL(8,2) |
| Greenplum | 数字 | DOUBLE | DOUBLE |
| Greenplum | (伪)数字 | SERIAL | SERIAL |
| Greenplum | (伪)数字 | BIGSERIAL | BIGSERIAL |
| Greenplum | 时间 | DATE | DATE |
| Greenplum | 时间 | TIME | TIME |
| Greenplum | 时间 | TIMESTAMP | TIMESTAMP |
| Greenplum | 文本 | CHAR | CHAR(2) |
| Greenplum | 文本 | VARCHAR | VARCHAR(128) |
| Greenplum | 文本 | TEXT | TEXT |
| Greenplum | 二进制 | BYTEA | BYTEA |
| Greenplum/PostgreSQL | 布尔 | BOOL | BOOL |
| Greenplum/PostgreSQL | 数字 | SMALLINT | SMALLINT(2) |
| Greenplum/PostgreSQL | 数字 | INT2 | INT2 |
| Greenplum/PostgreSQL | 数字 | INTEGER | INTEGER |
| Greenplum/PostgreSQL | 数字 | INT4 | INT4 |
| Greenplum/PostgreSQL | 数字 | BIGINT | BIGINT |
| Greenplum/PostgreSQL | 数字 | INT8 | INT8 |
| Greenplum/PostgreSQL | 数字 | DECIMAL | DECIMAL(8,2) |
| Greenplum/PostgreSQL | 数字 | NUMERIC | NUMERIC(8,2) |
| Greenplum/PostgreSQL | 数字 | REAL | REAL(8,2) |
| Greenplum/PostgreSQL | 数字 | DOUBLE | DOUBLE |
| Greenplum/PostgreSQL | (伪)数字 | SERIAL | SERIAL |
| Greenplum/PostgreSQL | (伪)数字 | BIGSERIAL | BIGSERIAL |
| Greenplum/PostgreSQL | 时间 | DATE | DATE |
| Greenplum/PostgreSQL | 时间 | TIME | TIME |
| Greenplum/PostgreSQL | 时间 | TIMESTAMP | TIMESTAMP |
| Greenplum/PostgreSQL | 文本 | CHAR | CHAR(2) |
| Greenplum/PostgreSQL | 文本 | VARCHAR | VARCHAR(128) |
| Greenplum/PostgreSQL | 文本 | TEXT | TEXT |
| Greenplum/PostgreSQL | 二进制 | BYTEA | BYTEA |

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-common</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-core</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-data</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-dbchange</artifactId>

View File

@@ -3,7 +3,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-dbcommon</artifactId>

View File

@@ -3,7 +3,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-dbsynch</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-dbwriter</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-pgwriter</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-sql</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>dbswitch-webapi</artifactId>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</parent>
<artifactId>package-tool</artifactId>

View File

@@ -21,7 +21,7 @@
<groupId>com.weishao</groupId>
<artifactId>dbswitch</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
<packaging>pom</packaging>
<name>dbswitch</name>
<description>database switch project</description>

View File

@@ -1,6 +1,6 @@
@echo off
set APP_VERSION=1.4.1
set APP_VERSION=1.4.2
echo "Clean Project ..."
call mvn clean -f pom.xml