fixbug_upgrade

This commit is contained in:
z00585807
2021-03-19 17:17:35 +08:00
parent fc97161c9c
commit 50671f75d6

View File

@ -1848,6 +1848,10 @@ CREATE VIEW pg_user_mappings AS
REVOKE ALL on pg_user_mapping FROM public;
--some function will use the new column that use
CREATE OR REPLACE VIEW PG_CATALOG.SYS_DUMMY AS (SELECT 'X'::TEXT AS DUMMY);
GRANT SELECT ON TABLE SYS_DUMMY TO PUBLIC;
-- these functions are added for supporting default format transformation
CREATE OR REPLACE FUNCTION to_char(NUMERIC)
RETURNS VARCHAR2