Error defining composite types and returning ROWTYPEs - Mailing list pgsql-general

From Geoffrey Giesemann
Subject Error defining composite types and returning ROWTYPEs
Date
Msg-id d90vhi$t4e$1@sea.gmane.org
Whole thread Raw
Responses Re: Error defining composite types and returning ROWTYPEs  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
CREATE TABLE test_table (
   some_column integer,
   another_column text
);

CREATE TYPE test_type as (
   some_type test_table.some_column%TYPE
);

Gives me:
ERROR:  syntax error at or near "%" at character 62
LINE 2:   some_type test_table.some_column%TYPE


I also can't define rowtypes as return types on functions:
CREATE OR REPLACE FUNCTION get_test_table_single()
RETURNS test_table%ROWTYPE AS $$
DECLARE
   v_single test_table%ROWTYPE;
BEGIN
   SELECT * INTO v_single FROM test_table LIMIT 1;
   RETURN v_single;
END;
$$ LANGUAGE plpgsql;

Gives me:
ERROR:  syntax error at or near "%" at character 65
LINE 2: RETURNS test_table%ROWTYPE AS $$

Can somebody tell me what I'm doing wrong? This is driving me insane.

Geoff

pgsql-general by date:

Previous
From: Jeffery Reedy
Date:
Subject: Replication
Next
From: Devrim GUNDUZ
Date:
Subject: Re: libpq.so.3 problem, PostgreSQL >= 8.0.2 and RPM