CREATE FUNCTION global_test_one() returns text AS 'if "global_test" not in SD:
SD["global_test"] = "set by global_test_one" if"global_test"notin GD:
GD["global_test"] = "set by global_test_one" return"SD: " + SD["global_test"] + ", GD: " + GD["global_test"]'
LANGUAGE plpython3u;
CREATE FUNCTION global_test_two() returns text AS 'if "global_test" not in SD:
SD["global_test"] = "set by global_test_two" if"global_test"notin GD:
GD["global_test"] = "set by global_test_two" return"SD: " + SD["global_test"] + ", GD: " + GD["global_test"]'
LANGUAGE plpython3u;
CREATE FUNCTION static_test() returns int4 AS 'if "call" in SD:
SD["call"] = SD["call"] + 1 else:
SD["call"] = 1 return SD["call"] '
LANGUAGE plpython3u;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.