update 初步适配 postgres (代码生成两次导入有问题)
This commit is contained in:
parent
76b859f6ba
commit
cf67d606ae
@ -139,7 +139,7 @@ public class VelocityUtils {
|
|||||||
if (DataBaseHelper.isOracle()) {
|
if (DataBaseHelper.isOracle()) {
|
||||||
templates.add("vm/sql/oracle/sql.vm");
|
templates.add("vm/sql/oracle/sql.vm");
|
||||||
} else if (DataBaseHelper.isPostgerSql()) {
|
} else if (DataBaseHelper.isPostgerSql()) {
|
||||||
templates.add("vm/sql/postgers/sql.vm");
|
templates.add("vm/sql/postgres/sql.vm");
|
||||||
} else if (DataBaseHelper.isSqlServer()) {
|
} else if (DataBaseHelper.isSqlServer()) {
|
||||||
templates.add("vm/sql/sqlserver/sql.vm");
|
templates.add("vm/sql/sqlserver/sql.vm");
|
||||||
} else {
|
} else {
|
||||||
|
@ -62,6 +62,37 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
ORDER BY temp.column_id
|
ORDER BY temp.column_id
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
||||||
|
SELECT column_name, is_required, is_pk, sort, column_comment, is_increment, column_type
|
||||||
|
FROM (
|
||||||
|
SELECT c.relname AS table_name,
|
||||||
|
a.attname AS column_name,
|
||||||
|
d.description AS column_comment,
|
||||||
|
CASE WHEN a.attnotnull AND con.conname IS NULL THEN 1 ELSE 0
|
||||||
|
END AS is_required,
|
||||||
|
CASE WHEN con.conname IS NOT NULL THEN 1 ELSE 0
|
||||||
|
END AS is_pk,
|
||||||
|
a.attnum AS sort,
|
||||||
|
CASE WHEN "position"(pg_get_expr(ad.adbin, ad.adrelid),
|
||||||
|
((c.relname::text || '_'::text) || a.attname::text) || '_seq'::text) > 0 THEN 1 ELSE 0
|
||||||
|
END AS is_increment,
|
||||||
|
btrim(
|
||||||
|
CASE WHEN t.typelem <![CDATA[ <> ]]> 0::oid AND t.typlen = '-1'::integer THEN 'ARRAY'::text ELSE
|
||||||
|
CASE WHEN t.typtype = 'd'::"char" THEN format_type(t.typbasetype, NULL::integer)
|
||||||
|
ELSE format_type(a.atttypid, NULL::integer) END
|
||||||
|
END, '"'::text
|
||||||
|
) AS column_type
|
||||||
|
FROM pg_attribute a
|
||||||
|
JOIN (pg_class c JOIN pg_namespace n ON c.relnamespace = n.oid) ON a.attrelid = c.oid
|
||||||
|
LEFT JOIN pg_description d ON d.objoid = c.oid AND a.attnum = d.objsubid
|
||||||
|
LEFT JOIN pg_constraint con ON con.conrelid = c.oid AND (a.attnum = ANY (con.conkey))
|
||||||
|
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
|
||||||
|
LEFT JOIN pg_type t ON a.atttypid = t.oid
|
||||||
|
WHERE (c.relkind = ANY (ARRAY ['r'::"char", 'p'::"char"]))
|
||||||
|
AND a.attnum > 0
|
||||||
|
AND n.nspname = 'public'::name
|
||||||
|
ORDER BY c.relname, a.attnum
|
||||||
|
) temp
|
||||||
|
WHERE table_name = (#{tableName})
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
||||||
</if>
|
</if>
|
||||||
|
@ -85,6 +85,28 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
order by create_time desc
|
order by create_time desc
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
||||||
|
select table_name, table_comment, create_time, update_time
|
||||||
|
from (
|
||||||
|
SELECT c.relname AS table_name,
|
||||||
|
obj_description(c.oid) AS table_comment,
|
||||||
|
CURRENT_TIMESTAMP AS create_time,
|
||||||
|
CURRENT_TIMESTAMP AS update_time
|
||||||
|
FROM pg_class c
|
||||||
|
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
|
||||||
|
WHERE (c.relkind = ANY (ARRAY ['r'::"char", 'p'::"char"]))
|
||||||
|
AND c.relname != 'spatial_%'::text
|
||||||
|
AND n.nspname = 'public'::name
|
||||||
|
AND n.nspname <![CDATA[ <> ]]> ''::name
|
||||||
|
) list_table
|
||||||
|
where table_name NOT LIKE 'xxl_job_%' AND table_name NOT LIKE 'gen_%'
|
||||||
|
AND table_name NOT IN (select table_name from gen_table)
|
||||||
|
<if test="genTable.tableName != null and genTable.tableName != ''">
|
||||||
|
AND lower(table_name) like lower(concat('%', #{genTable.tableName}, '%'))
|
||||||
|
</if>
|
||||||
|
<if test="genTable.tableComment != null and genTable.tableComment != ''">
|
||||||
|
AND lower(table_comment) like lower(concat('%', #{genTable.tableComment}, '%'))
|
||||||
|
</if>
|
||||||
|
order by create_time desc
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
||||||
</if>
|
</if>
|
||||||
@ -121,6 +143,28 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
order by create_time desc
|
order by create_time desc
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
||||||
|
select table_name, table_comment, create_time, update_time
|
||||||
|
from (
|
||||||
|
SELECT c.relname AS table_name,
|
||||||
|
obj_description(c.oid) AS table_comment,
|
||||||
|
CURRENT_TIMESTAMP AS create_time,
|
||||||
|
CURRENT_TIMESTAMP AS update_time
|
||||||
|
FROM pg_class c
|
||||||
|
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
|
||||||
|
WHERE (c.relkind = ANY (ARRAY ['r'::"char", 'p'::"char"]))
|
||||||
|
AND c.relname != 'spatial_%'::text
|
||||||
|
AND n.nspname = 'public'::name
|
||||||
|
AND n.nspname <![CDATA[ <> ]]> ''::name
|
||||||
|
) list_table
|
||||||
|
where table_name NOT LIKE 'xxl_job_%' AND table_name NOT LIKE 'gen_%'
|
||||||
|
AND table_name NOT IN (select table_name from gen_table)
|
||||||
|
<if test="genTable.tableName != null and genTable.tableName != ''">
|
||||||
|
AND lower(table_name) like lower(concat('%', #{genTable.tableName}, '%'))
|
||||||
|
</if>
|
||||||
|
<if test="genTable.tableComment != null and genTable.tableComment != ''">
|
||||||
|
AND lower(table_comment) like lower(concat('%', #{genTable.tableComment}, '%'))
|
||||||
|
</if>
|
||||||
|
order by create_time desc
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
||||||
</if>
|
</if>
|
||||||
@ -149,6 +193,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
||||||
|
select table_name, table_comment, create_time, update_time
|
||||||
|
from (
|
||||||
|
SELECT c.relname AS table_name,
|
||||||
|
obj_description(c.oid) AS table_comment,
|
||||||
|
CURRENT_TIMESTAMP AS create_time,
|
||||||
|
CURRENT_TIMESTAMP AS update_time
|
||||||
|
FROM pg_class c
|
||||||
|
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
|
||||||
|
WHERE (c.relkind = ANY (ARRAY ['r'::"char", 'p'::"char"]))
|
||||||
|
AND c.relname != 'spatial_%'::text
|
||||||
|
AND n.nspname = 'public'::name
|
||||||
|
AND n.nspname <![CDATA[ <> ]]> ''::name
|
||||||
|
) list_table
|
||||||
|
where table_name NOT LIKE 'xxl_job_%' and table_name NOT LIKE 'gen_%'
|
||||||
|
and table_name in
|
||||||
|
<foreach collection="array" item="name" open="(" separator="," close=")">
|
||||||
|
#{name}
|
||||||
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
||||||
</if>
|
</if>
|
||||||
@ -171,6 +233,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
and lower(dt.table_name) = #{tableName}
|
and lower(dt.table_name) = #{tableName}
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isPostgerSql()">
|
||||||
|
select table_name, table_comment, create_time, update_time
|
||||||
|
from (
|
||||||
|
SELECT c.relname AS table_name,
|
||||||
|
obj_description(c.oid) AS table_comment,
|
||||||
|
CURRENT_TIMESTAMP AS create_time,
|
||||||
|
CURRENT_TIMESTAMP AS update_time
|
||||||
|
FROM pg_class c
|
||||||
|
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
|
||||||
|
WHERE (c.relkind = ANY (ARRAY ['r'::"char", 'p'::"char"]))
|
||||||
|
AND c.relname != 'spatial_%'::text
|
||||||
|
AND n.nspname = 'public'::name
|
||||||
|
AND n.nspname <![CDATA[ <> ]]> ''::name
|
||||||
|
) list_table
|
||||||
|
where table_name NOT LIKE 'xxl_job_%' and table_name NOT LIKE 'gen_%'
|
||||||
|
and table_name = #{tableName}
|
||||||
</if>
|
</if>
|
||||||
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
<if test="@com.ruoyi.common.helper.DataBaseHelper@isSqlServer()">
|
||||||
</if>
|
</if>
|
||||||
|
@ -229,7 +229,7 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
localStorage.setItem("dataName", "master");
|
localStorage.setItem("dataName", "postgres");
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
|
@ -825,7 +825,7 @@ drop table if exists gen_table_column;
|
|||||||
create table if not exists gen_table_column
|
create table if not exists gen_table_column
|
||||||
(
|
(
|
||||||
column_id int8,
|
column_id int8,
|
||||||
table_id varchar(64) default null::varchar,
|
table_id int8,
|
||||||
column_name varchar(200) default null::varchar,
|
column_name varchar(200) default null::varchar,
|
||||||
column_comment varchar(500) default null::varchar,
|
column_comment varchar(500) default null::varchar,
|
||||||
column_type varchar(100) default null::varchar,
|
column_type varchar(100) default null::varchar,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user