153 lines
4.8 KiB
PL/PgSQL
153 lines
4.8 KiB
PL/PgSQL
CREATE OR REPLACE FUNCTION pgsql_type(a_type varchar) RETURNS varchar AS
|
|
$BODY$
|
|
DECLARE
|
|
v_type varchar;
|
|
BEGIN
|
|
IF a_type='int8' THEN
|
|
v_type:='bigint';
|
|
ELSIF a_type='int4' THEN
|
|
v_type:='integer';
|
|
ELSIF a_type='int2' THEN
|
|
v_type:='smallint';
|
|
ELSIF a_type='bpchar' THEN
|
|
v_type:='char';
|
|
ELSE
|
|
v_type:=a_type;
|
|
END IF;
|
|
RETURN v_type;
|
|
END;
|
|
$BODY$
|
|
LANGUAGE PLPGSQL;
|
|
|
|
CREATE TYPE "public"."tablestruct" AS (
|
|
"fields_key_name" varchar(100),
|
|
"fields_name" VARCHAR(200),
|
|
"fields_type" VARCHAR(20),
|
|
"fields_length" BIGINT,
|
|
"fields_not_null" VARCHAR(10),
|
|
"fields_default" VARCHAR(500),
|
|
"fields_comment" VARCHAR(1000)
|
|
);
|
|
|
|
CREATE OR REPLACE FUNCTION "public"."table_msg" (a_schema_name varchar, a_table_name varchar) RETURNS SETOF "public"."tablestruct" AS
|
|
$body$
|
|
DECLARE
|
|
v_ret tablestruct;
|
|
v_oid oid;
|
|
v_sql varchar;
|
|
v_rec RECORD;
|
|
v_key varchar;
|
|
v_conkey smallint[];
|
|
v_pk varchar[];
|
|
v_len smallint;
|
|
v_pos smallint := 1;
|
|
BEGIN
|
|
SELECT
|
|
pg_class.oid INTO v_oid
|
|
FROM
|
|
pg_class
|
|
INNER JOIN pg_namespace ON (pg_class.relnamespace = pg_namespace.oid AND lower(pg_namespace.nspname) = a_schema_name)
|
|
WHERE
|
|
pg_class.relname=a_table_name;
|
|
IF NOT FOUND THEN
|
|
RETURN;
|
|
END IF;
|
|
|
|
SELECT
|
|
pg_constraint.conkey INTO v_conkey
|
|
FROM
|
|
pg_constraint
|
|
INNER JOIN pg_class ON pg_constraint.conrelid = pg_class.oid
|
|
INNER JOIN pg_attribute ON pg_attribute.attrelid = pg_class.oid
|
|
INNER JOIN pg_type ON pg_type.oid = pg_attribute.atttypid
|
|
WHERE
|
|
pg_class.relname = a_table_name
|
|
AND pg_constraint.contype = 'p';
|
|
|
|
v_len := array_length(v_conkey,1) + 1;
|
|
WHILE v_pos < v_len LOOP
|
|
SELECT
|
|
pg_attribute.attname INTO v_key
|
|
FROM pg_constraint
|
|
INNER JOIN pg_class ON pg_constraint.conrelid = pg_class.oid
|
|
INNER JOIN pg_attribute ON pg_attribute.attrelid = pg_class.oid AND pg_attribute.attnum = pg_constraint.conkey [ v_conkey[v_pos] ]
|
|
INNER JOIN pg_type ON pg_type.oid = pg_attribute.atttypid
|
|
WHERE pg_class.relname = a_table_name AND pg_constraint.contype = 'p';
|
|
v_pk := array_append(v_pk,v_key);
|
|
|
|
v_pos := v_pos + 1;
|
|
END LOOP;
|
|
|
|
v_sql='
|
|
SELECT
|
|
pg_attribute.attname AS fields_name,
|
|
pg_attribute.attnum AS fields_index,
|
|
pgsql_type(pg_type.typname::varchar) AS fields_type,
|
|
pg_attribute.atttypmod-4 as fields_length,
|
|
CASE WHEN pg_attribute.attnotnull THEN ''not null''
|
|
ELSE ''''
|
|
END AS fields_not_null,
|
|
pg_attrdef.adsrc AS fields_default,
|
|
pg_description.description AS fields_comment
|
|
FROM
|
|
pg_attribute
|
|
INNER JOIN pg_class ON pg_attribute.attrelid = pg_class.oid
|
|
INNER JOIN pg_type ON pg_attribute.atttypid = pg_type.oid
|
|
LEFT OUTER JOIN pg_attrdef ON pg_attrdef.adrelid = pg_class.oid AND pg_attrdef.adnum = pg_attribute.attnum
|
|
LEFT OUTER JOIN pg_description ON pg_description.objoid = pg_class.oid AND pg_description.objsubid = pg_attribute.attnum
|
|
WHERE
|
|
pg_attribute.attnum > 0
|
|
AND attisdropped <> ''t''
|
|
AND pg_class.oid = ' || v_oid || '
|
|
ORDER BY pg_attribute.attnum' ;
|
|
|
|
FOR v_rec IN EXECUTE v_sql LOOP
|
|
v_ret.fields_name=v_rec.fields_name;
|
|
v_ret.fields_type=v_rec.fields_type;
|
|
IF v_rec.fields_length > 0 THEN
|
|
v_ret.fields_length:=v_rec.fields_length;
|
|
ELSE
|
|
v_ret.fields_length:=NULL;
|
|
END IF;
|
|
v_ret.fields_not_null=v_rec.fields_not_null;
|
|
v_ret.fields_default=v_rec.fields_default;
|
|
v_ret.fields_comment=v_rec.fields_comment;
|
|
|
|
v_ret.fields_key_name='';
|
|
|
|
v_len := array_length(v_pk,1) + 1;
|
|
v_pos := 1;
|
|
WHILE v_pos < v_len LOOP
|
|
IF v_rec.fields_name = v_pk[v_pos] THEN
|
|
v_ret.fields_key_name=v_pk[v_pos];
|
|
EXIT;
|
|
END IF;
|
|
v_pos := v_pos + 1;
|
|
END LOOP;
|
|
|
|
RETURN NEXT v_ret;
|
|
END LOOP;
|
|
RETURN ;
|
|
END;
|
|
$body$
|
|
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
|
|
|
|
COMMENT ON FUNCTION "public"."table_msg"(a_schema_name varchar, a_table_name varchar)
|
|
IS '获得表信息';
|
|
|
|
---重载一个函数
|
|
CREATE OR REPLACE FUNCTION "public"."table_msg" (a_table_name varchar) RETURNS SETOF "public"."tablestruct" AS
|
|
$body$
|
|
DECLARE
|
|
v_ret tablestruct;
|
|
BEGIN
|
|
FOR v_ret IN SELECT * FROM table_msg('public',a_table_name) LOOP
|
|
RETURN NEXT v_ret;
|
|
END LOOP;
|
|
RETURN;
|
|
END;
|
|
$body$
|
|
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
|
|
|
|
COMMENT ON FUNCTION "public"."table_msg"(a_table_name varchar)
|
|
IS '获得表信息'; |