Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postgres/src/pl/plpython/sql/   (The Python Language ©)  Datei vom 11.4.2026 mit Größe 904 B image not shown  

Quelle  plpython_global.sql

  Sprache: SQL
 

--
-- check static and global data (SD and GD)
--

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" not in 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" not in 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;


SELECT static_test();
SELECT static_test();
SELECT global_test_one();
SELECT global_test_two();

Messung V0.5 in Prozent
C=91 H=96 G=93

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

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.