Fix signature of CDB_Overviews
This commit is contained in:
parent
81cb75f821
commit
1f6d5cfd6d
@ -1,13 +1,13 @@
|
|||||||
-- Mockup for CDB_Overviews
|
-- Mockup for CDB_Overviews
|
||||||
CREATE OR REPLACE FUNCTION CDB_Overviews(table_name text)
|
CREATE OR REPLACE FUNCTION CDB_Overviews(table_name regclass)
|
||||||
RETURNS TABLE(z integer, overview_table text)
|
RETURNS TABLE(z integer, overview_table regclass)
|
||||||
AS $$
|
AS $$
|
||||||
BEGIN
|
BEGIN
|
||||||
IF table_name = 'public.test_table_overviews' THEN
|
IF table_name::text = 'test_table_overviews' THEN
|
||||||
RETURN QUERY
|
RETURN QUERY
|
||||||
SELECT 1 AS z, 'test_table_overviews_ov1'::text AS overviw_table
|
SELECT 1 AS z, 'test_table_overviews_ov1'::regclass AS overviw_table
|
||||||
UNION ALL
|
UNION ALL
|
||||||
SELECT 2 AS z, 'test_table_overviews_ov2'::text AS overviw_table;
|
SELECT 2 AS z, 'test_table_overviews_ov2'::regclass AS overviw_table;
|
||||||
ELSE
|
ELSE
|
||||||
RETURN;
|
RETURN;
|
||||||
END IF;
|
END IF;
|
||||||
|
Loading…
Reference in New Issue
Block a user