aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpython_setof.sql
blob: f0d273f948671bef93904e9048bb15df5df89440 (plain)
1
2
3
4
5
6
7
8
9
10
11
CREATE FUNCTION test_setof() returns setof text
	AS
'if GD.has_key("calls"):
	GD["calls"] = GD["calls"] + 1
	if GD["calls"] > 2:
		return None
else:
	GD["calls"] = 1
return str(GD["calls"])'
	LANGUAGE plpythonu;