mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-10-19 08:03:52 +00:00
版本迭代
This commit is contained in:
25
.gitignore
vendored
Normal file
25
.gitignore
vendored
Normal 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/
|
40
INTERFACE.md
40
INTERFACE.md
@@ -1297,23 +1297,23 @@ CREATE TABLE "private"."t_test_postgres_table" (
|
|||||||
| Oracle | 文本 | LONG | LONG |
|
| Oracle | 文本 | LONG | LONG |
|
||||||
| Oracle | 文本 | CLOB | CLOB |
|
| Oracle | 文本 | CLOB | CLOB |
|
||||||
| Oracle | 二进制 | BLOB | BLOB |
|
| Oracle | 二进制 | BLOB | BLOB |
|
||||||
| Greenplum | 布尔 | BOOL | BOOL |
|
| Greenplum/PostgreSQL | 布尔 | BOOL | BOOL |
|
||||||
| Greenplum | 数字 | SMALLINT | SMALLINT(2) |
|
| Greenplum/PostgreSQL | 数字 | SMALLINT | SMALLINT(2) |
|
||||||
| Greenplum | 数字 | INT2 | INT2 |
|
| Greenplum/PostgreSQL | 数字 | INT2 | INT2 |
|
||||||
| Greenplum | 数字 | INTEGER | INTEGER |
|
| Greenplum/PostgreSQL | 数字 | INTEGER | INTEGER |
|
||||||
| Greenplum | 数字 | INT4 | INT4 |
|
| Greenplum/PostgreSQL | 数字 | INT4 | INT4 |
|
||||||
| Greenplum | 数字 | BIGINT | BIGINT |
|
| Greenplum/PostgreSQL | 数字 | BIGINT | BIGINT |
|
||||||
| Greenplum | 数字 | INT8 | INT8 |
|
| Greenplum/PostgreSQL | 数字 | INT8 | INT8 |
|
||||||
| Greenplum | 数字 | DECIMAL | DECIMAL(8,2) |
|
| Greenplum/PostgreSQL | 数字 | DECIMAL | DECIMAL(8,2) |
|
||||||
| Greenplum | 数字 | NUMERIC | NUMERIC(8,2) |
|
| Greenplum/PostgreSQL | 数字 | NUMERIC | NUMERIC(8,2) |
|
||||||
| Greenplum | 数字 | REAL | REAL(8,2) |
|
| Greenplum/PostgreSQL | 数字 | REAL | REAL(8,2) |
|
||||||
| Greenplum | 数字 | DOUBLE | DOUBLE |
|
| Greenplum/PostgreSQL | 数字 | DOUBLE | DOUBLE |
|
||||||
| Greenplum | (伪)数字 | SERIAL | SERIAL |
|
| Greenplum/PostgreSQL | (伪)数字 | SERIAL | SERIAL |
|
||||||
| Greenplum | (伪)数字 | BIGSERIAL | BIGSERIAL |
|
| Greenplum/PostgreSQL | (伪)数字 | BIGSERIAL | BIGSERIAL |
|
||||||
| Greenplum | 时间 | DATE | DATE |
|
| Greenplum/PostgreSQL | 时间 | DATE | DATE |
|
||||||
| Greenplum | 时间 | TIME | TIME |
|
| Greenplum/PostgreSQL | 时间 | TIME | TIME |
|
||||||
| Greenplum | 时间 | TIMESTAMP | TIMESTAMP |
|
| Greenplum/PostgreSQL | 时间 | TIMESTAMP | TIMESTAMP |
|
||||||
| Greenplum | 文本 | CHAR | CHAR(2) |
|
| Greenplum/PostgreSQL | 文本 | CHAR | CHAR(2) |
|
||||||
| Greenplum | 文本 | VARCHAR | VARCHAR(128) |
|
| Greenplum/PostgreSQL | 文本 | VARCHAR | VARCHAR(128) |
|
||||||
| Greenplum | 文本 | TEXT | TEXT |
|
| Greenplum/PostgreSQL | 文本 | TEXT | TEXT |
|
||||||
| Greenplum | 二进制 | BYTEA | BYTEA |
|
| Greenplum/PostgreSQL | 二进制 | BYTEA | BYTEA |
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-common</artifactId>
|
<artifactId>dbswitch-common</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-core</artifactId>
|
<artifactId>dbswitch-core</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-data</artifactId>
|
<artifactId>dbswitch-data</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-dbchange</artifactId>
|
<artifactId>dbswitch-dbchange</artifactId>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-dbcommon</artifactId>
|
<artifactId>dbswitch-dbcommon</artifactId>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-dbsynch</artifactId>
|
<artifactId>dbswitch-dbsynch</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-dbwriter</artifactId>
|
<artifactId>dbswitch-dbwriter</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-pgwriter</artifactId>
|
<artifactId>dbswitch-pgwriter</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-sql</artifactId>
|
<artifactId>dbswitch-sql</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dbswitch-webapi</artifactId>
|
<artifactId>dbswitch-webapi</artifactId>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>package-tool</artifactId>
|
<artifactId>package-tool</artifactId>
|
||||||
|
2
pom.xml
2
pom.xml
@@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
<groupId>com.weishao</groupId>
|
<groupId>com.weishao</groupId>
|
||||||
<artifactId>dbswitch</artifactId>
|
<artifactId>dbswitch</artifactId>
|
||||||
<version>1.4.1</version>
|
<version>1.4.2</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>dbswitch</name>
|
<name>dbswitch</name>
|
||||||
<description>database switch project</description>
|
<description>database switch project</description>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set APP_VERSION=1.4.1
|
set APP_VERSION=1.4.2
|
||||||
|
|
||||||
echo "Clean Project ..."
|
echo "Clean Project ..."
|
||||||
call mvn clean -f pom.xml
|
call mvn clean -f pom.xml
|
||||||
|
Reference in New Issue
Block a user