Ich versuche, mehrere Datensätze mit dem Datentyp RECORD zurückzugeben. Gibt es eine Möglichkeit, an RECORD anzuhängen und mit jeder Iteration einen neuen Wert zu diesem RECORD hinzuzufügen / anzuhängen?
Das heißt, ich möchte anhängen, rec
damit nach rec
Ablauf der Schleife eine Reihe von Zeilen entsteht, die ich am Ende meiner Funktion einfach zurückgeben kann. Derzeit mache ich das -
SELECT temp_table.col1, temp_table.col2, temp_table.col3
INTO rec
FROM temp_table
WHERE temp_table.col3 = false;
Mein vollständiger Code ist hier:
CREATE OR REPLACE FUNCTION validation()
RETURNS RECORD AS $$
DECLARE
rec RECORD;
temp_row RECORD;
BEGIN
CREATE TEMPORARY TABLE temp_table (col1 TEXT, col2 INTEGER, col3 BOOLEAN) ON COMMIT DROP;
FOR temp_row IN SELECT * FROM staging.validation
LOOP
RAISE NOTICE 'sql: %', temp_row.sql;
EXECUTE format('INSERT INTO temp_table %s', temp_row.sql);
IF (SELECT DISTINCT temp_table.col3 FROM temp_table WHERE temp_table.col3 = false)=false THEN
RAISE NOTICE 'there is a false value';
SELECT temp_table.col1, temp_table.col2, temp_table.col3
INTO rec
FROM temp_table
WHERE temp_table.col3 = false;
END IF;
END LOOP;
RETURN rec;
END; $$
LANGUAGE plpgsql;
Stromausgang nach SELECT validation();
validation
(crea_ddf,8095,f)
Gewünschte Ausgabe
validation
(crea_ddf,8095,f)
(some_source_system,some_count,f)
(some_other_source_system,some_count,f)
(.....)