diff options
Diffstat (limited to 'src/pl/plpython/plpython_setof.sql')
-rw-r--r-- | src/pl/plpython/plpython_setof.sql | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/pl/plpython/plpython_setof.sql b/src/pl/plpython/plpython_setof.sql deleted file mode 100644 index f0d273f9486..00000000000 --- a/src/pl/plpython/plpython_setof.sql +++ /dev/null @@ -1,11 +0,0 @@ - -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; |