すべての plpgsql および plpythonu プロシージャで使用される tt という複合型があります。ある種のplpyがありますか。plpythonu プロシージャでクラスを定義することなく、返される型または反復可能な構造体を導出するために、一貫した方法でカタログまたはスキーマにアクセスする手段はありますか?
CREATE TYPE tt AS (id integer, name text);
CREATE OR REPLACE FUNCTION python_setof_type() RETURNS SETOF tt AS $$
#-- i want this to be dynamic or to have it's attributes pulled from the tt type
class tt:
def __init__(self, id, name):
plpy.info('constructed type')
self.idx = 0
self.id = id
self.name = name
def __iter__ (self):
return self
def next (self):
if (self.idx == 1):
raise StopIteration
self.idx += 1
return ( self )
return tt(3, 'somename')
#-- was hoping for something like
#-- give me 1 record
#-- return plpy.schema.tt(3, 'somename')
#-- give me 2 records
#-- return plpy.schema.tt([3, 'somename'], [1, 'someornothername'])
#-- give me a no records
#-- return plpy.schema.tt([])
$$ LANGUAGE plpythonu;