mirror of
https://github.com/MariaDB/server.git
synced 2025-02-05 13:22:17 +01:00
b101f19d29
The call mtr.add_suppression() that was added
in commit 75b7cd680b
for MemorySanitizer and Valgrind runs is causing
a result difference for the test rpl.rpl_gtid_stop_start.
Let us disable the binlog for executing that statement.
Also, the test perfschema.statement_program_lost_inst
would fail due to the changes to have_innodb.inc in this commit.
To compensate for that, we will make more --suite=perfschema
tests run without InnoDB, and explicitly enable InnoDB in
those tests that depend on a transactional storage engine.
2334 lines
110 KiB
Text
2334 lines
110 KiB
Text
TRUNCATE TABLE performance_schema.events_statements_summary_by_program;
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
#################################################
|
|
# Quering PS statement summary and history_long #
|
|
#################################################
|
|
# SET-UP
|
|
CREATE DATABASE nested_sp;
|
|
USE nested_sp;
|
|
CREATE TABLE t1(
|
|
id CHAR(16) NOT NULL DEFAULT '',
|
|
data INT NOT NULL
|
|
);
|
|
CREATE TABLE t2(
|
|
n INT UNSIGNED NOT NULL,
|
|
f BIGINT UNSIGNED
|
|
);
|
|
############################
|
|
# Creating Stored Programs #
|
|
############################
|
|
CREATE PROCEDURE c1(x INT)
|
|
CALL c2("c", x)|
|
|
CREATE PROCEDURE c2(s CHAR(16), x INT)
|
|
CALL c3(x, s)|
|
|
CREATE PROCEDURE c3(x INT, s CHAR(16))
|
|
CALL c4("level", x, s)|
|
|
CREATE PROCEDURE c4(l CHAR(8), x INT, s CHAR(16))
|
|
INSERT INTO t1 VALUES (concat(l,s), x)|
|
|
CREATE PROCEDURE iotest(x1 CHAR(16), x2 CHAR(16), y INT)
|
|
BEGIN
|
|
CALL inc2(x2, y);
|
|
INSERT INTO t1 VALUES (x1, y);
|
|
END|
|
|
CREATE PROCEDURE inc2(x CHAR(16), y INT)
|
|
BEGIN
|
|
CALL inc(y);
|
|
INSERT INTO t1 VALUES (x, y);
|
|
END|
|
|
CREATE PROCEDURE inc(inout io INT)
|
|
SET io = io + 1|
|
|
CREATE FUNCTION mul(x INT, y INT) RETURNS INT
|
|
RETURN x*y|
|
|
CREATE FUNCTION inc(i INT) RETURNS INT
|
|
RETURN i+1|
|
|
CREATE FUNCTION fac(n INT UNSIGNED) RETURNS BIGINT UNSIGNED
|
|
BEGIN
|
|
DECLARE f BIGINT UNSIGNED DEFAULT 1;
|
|
WHILE n > 1 DO
|
|
SET f = f * n;
|
|
SET n = n - 1;
|
|
END WHILE;
|
|
RETURN f;
|
|
END|
|
|
CREATE FUNCTION fun(i INT, u INT UNSIGNED) RETURNS DOUBLE
|
|
RETURN mul(inc(i), fac(u))|
|
|
CREATE PROCEDURE ifac(n INT UNSIGNED)
|
|
BEGIN
|
|
DECLARE i BIGINT UNSIGNED DEFAULT 1;
|
|
IF n > 20 THEN
|
|
SET n = 20; # bigint overflow otherwise
|
|
END IF;
|
|
WHILE i <= n DO
|
|
BEGIN
|
|
INSERT INTO t2 VALUES (i, fac(i));
|
|
SET i = i + 1;
|
|
END;
|
|
END WHILE;
|
|
END|
|
|
CREATE TRIGGER trg AFTER INSERT ON t1 FOR EACH ROW
|
|
CALL ifac(10)|
|
|
ALTER TABLE t2 ENGINE=InnoDB;
|
|
#####################
|
|
# Executing queries #
|
|
#####################
|
|
CALL c1(42);
|
|
SELECT * FROM t1;
|
|
id data
|
|
levelc 42
|
|
DELETE FROM t1;
|
|
CALL iotest("io1", "io2", 1);
|
|
SELECT * FROM t1 ORDER BY data DESC;
|
|
id data
|
|
io2 2
|
|
io1 1
|
|
DELETE FROM t1;
|
|
SELECT fun(6,10);
|
|
fun(6,10)
|
|
25401600
|
|
INSERT INTO t1 VALUES (20,13);
|
|
SELECT * FROM t2;
|
|
n f
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
SELECT EVENT_NAME, SQL_TEXT, CURRENT_SCHEMA, OBJECT_TYPE, OBJECT_SCHEMA,
|
|
OBJECT_NAME, NESTING_EVENT_TYPE, NESTING_EVENT_LEVEL
|
|
FROM performance_schema.events_statements_history_long WHERE
|
|
CURRENT_SCHEMA='nested_sp' ORDER BY
|
|
OBJECT_NAME,NESTING_EVENT_LEVEL,SQL_TEXT,EVENT_NAME;
|
|
EVENT_NAME SQL_TEXT CURRENT_SCHEMA OBJECT_TYPE OBJECT_SCHEMA OBJECT_NAME NESTING_EVENT_TYPE NESTING_EVENT_LEVEL
|
|
statement/sql/call_procedure CALL c1(42) nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/call_procedure CALL iotest("io1", "io2", 1) nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/delete DELETE FROM t1 nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/delete DELETE FROM t1 nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/insert INSERT INTO t1 VALUES (20,13) nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/select SELECT * FROM t1 nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/select SELECT * FROM t1 ORDER BY data DESC nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/select SELECT * FROM t2 nested_sp NULL NULL NULL NULL 0
|
|
statement/sql/select SELECT fun(6,10) nested_sp NULL NULL NULL NULL 0
|
|
statement/sp/stmt CALL c2("c", x) nested_sp PROCEDURE nested_sp c1 STATEMENT 1
|
|
statement/sp/stmt CALL c3(x, s) nested_sp PROCEDURE nested_sp c2 STATEMENT 2
|
|
statement/sp/stmt CALL c4("level", x, s) nested_sp PROCEDURE nested_sp c3 STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t1 VALUES (concat(l,s), x) nested_sp PROCEDURE nested_sp c4 STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 2
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 3
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 4
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 5
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/jump_if_not NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/set NULL nested_sp FUNCTION nested_sp fac STATEMENT 7
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp fun STATEMENT 1
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 2
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 3
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 4
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/jump_if_not NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/stmt INSERT INTO t2 VALUES (i, fac(i)) nested_sp PROCEDURE nested_sp ifac STATEMENT 6
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp inc STATEMENT 2
|
|
statement/sp/set NULL nested_sp PROCEDURE nested_sp inc STATEMENT 3
|
|
statement/sp/stmt CALL inc(y) nested_sp PROCEDURE nested_sp inc2 STATEMENT 2
|
|
statement/sp/stmt INSERT INTO t1 VALUES (x, y) nested_sp PROCEDURE nested_sp inc2 STATEMENT 2
|
|
statement/sp/stmt CALL inc2(x2, y) nested_sp PROCEDURE nested_sp iotest STATEMENT 1
|
|
statement/sp/stmt INSERT INTO t1 VALUES (x1, y) nested_sp PROCEDURE nested_sp iotest STATEMENT 1
|
|
statement/sp/freturn NULL nested_sp FUNCTION nested_sp mul STATEMENT 2
|
|
statement/sp/stmt CALL ifac(10) nested_sp TRIGGER nested_sp trg TRANSACTION 1
|
|
statement/sp/stmt CALL ifac(10) nested_sp TRIGGER nested_sp trg TRANSACTION 2
|
|
statement/sp/stmt CALL ifac(10) nested_sp TRIGGER nested_sp trg TRANSACTION 3
|
|
statement/sp/stmt CALL ifac(10) nested_sp TRIGGER nested_sp trg TRANSACTION 5
|
|
SELECT OBJECT_TYPE, OBJECT_SCHEMA, OBJECT_NAME, COUNT_STAR, COUNT_STATEMENTS
|
|
FROM performance_schema.events_statements_summary_by_program
|
|
WHERE OBJECT_SCHEMA='nested_sp' ORDER BY OBJECT_NAME;
|
|
OBJECT_TYPE OBJECT_SCHEMA OBJECT_NAME COUNT_STAR COUNT_STATEMENTS
|
|
PROCEDURE nested_sp c1 1 1
|
|
PROCEDURE nested_sp c2 1 1
|
|
PROCEDURE nested_sp c3 1 1
|
|
PROCEDURE nested_sp c4 1 1
|
|
FUNCTION nested_sp fac 41 879
|
|
FUNCTION nested_sp fun 1 1
|
|
PROCEDURE nested_sp ifac 4 172
|
|
PROCEDURE nested_sp inc 1 1
|
|
FUNCTION nested_sp inc 1 1
|
|
PROCEDURE nested_sp inc2 1 2
|
|
PROCEDURE nested_sp iotest 1 2
|
|
FUNCTION nested_sp mul 1 1
|
|
TRIGGER nested_sp trg 4 4
|
|
# clean-up
|
|
TRUNCATE TABLE performance_schema.events_statements_summary_by_program;
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
SELECT OBJECT_TYPE, OBJECT_SCHEMA, OBJECT_NAME, COUNT_STAR, COUNT_STATEMENTS
|
|
FROM performance_schema.events_statements_summary_by_program
|
|
WHERE OBJECT_SCHEMA='nested_sp' ORDER BY OBJECT_NAME;
|
|
OBJECT_TYPE OBJECT_SCHEMA OBJECT_NAME COUNT_STAR COUNT_STATEMENTS
|
|
PROCEDURE nested_sp c1 0 0
|
|
PROCEDURE nested_sp c2 0 0
|
|
PROCEDURE nested_sp c3 0 0
|
|
PROCEDURE nested_sp c4 0 0
|
|
FUNCTION nested_sp fac 0 0
|
|
FUNCTION nested_sp fun 0 0
|
|
PROCEDURE nested_sp ifac 0 0
|
|
PROCEDURE nested_sp inc 0 0
|
|
FUNCTION nested_sp inc 0 0
|
|
PROCEDURE nested_sp inc2 0 0
|
|
PROCEDURE nested_sp iotest 0 0
|
|
FUNCTION nested_sp mul 0 0
|
|
TRIGGER nested_sp trg 0 0
|
|
DROP PROCEDURE c4;
|
|
DROP PROCEDURE c3;
|
|
DROP PROCEDURE c2;
|
|
DROP PROCEDURE c1;
|
|
DROP PROCEDURE inc;
|
|
DROP PROCEDURE inc2;
|
|
DROP PROCEDURE iotest;
|
|
DROP FUNCTION mul;
|
|
DROP FUNCTION inc;
|
|
DROP FUNCTION fac;
|
|
DROP FUNCTION fun;
|
|
DROP PROCEDURE ifac;
|
|
DROP TRIGGER trg;
|
|
DROP TABLE t1,t2;
|
|
DROP DATABASE nested_sp;
|
|
SELECT OBJECT_TYPE, OBJECT_SCHEMA, OBJECT_NAME, COUNT_STAR, COUNT_STATEMENTS
|
|
FROM performance_schema.events_statements_summary_by_program
|
|
WHERE OBJECT_SCHEMA='nested_sp' ORDER BY OBJECT_NAME;
|
|
OBJECT_TYPE OBJECT_SCHEMA OBJECT_NAME COUNT_STAR COUNT_STATEMENTS
|
|
# SET-UP
|
|
CREATE DATABASE nested_sp;
|
|
USE nested_sp;
|
|
CREATE TABLE t1(
|
|
id CHAR(16) NOT NULL DEFAULT '',
|
|
data INT NOT NULL
|
|
);
|
|
CREATE TABLE t2(
|
|
n INT UNSIGNED NOT NULL,
|
|
f BIGINT UNSIGNED
|
|
);
|
|
############################
|
|
# Creating Stored Programs #
|
|
############################
|
|
CREATE PROCEDURE c1(x INT)
|
|
CALL c2("c", x)|
|
|
CREATE PROCEDURE c2(s CHAR(16), x INT)
|
|
CALL c3(x, s)|
|
|
CREATE PROCEDURE c3(x INT, s CHAR(16))
|
|
CALL c4("level", x, s)|
|
|
CREATE PROCEDURE c4(l CHAR(8), x INT, s CHAR(16))
|
|
INSERT INTO t1 VALUES (concat(l,s), x)|
|
|
CREATE PROCEDURE iotest(x1 CHAR(16), x2 CHAR(16), y INT)
|
|
BEGIN
|
|
CALL inc2(x2, y);
|
|
INSERT INTO t1 VALUES (x1, y);
|
|
END|
|
|
CREATE PROCEDURE inc2(x CHAR(16), y INT)
|
|
BEGIN
|
|
CALL inc(y);
|
|
INSERT INTO t1 VALUES (x, y);
|
|
END|
|
|
CREATE PROCEDURE inc(inout io INT)
|
|
SET io = io + 1|
|
|
CREATE FUNCTION mul(x INT, y INT) RETURNS INT
|
|
RETURN x*y|
|
|
CREATE FUNCTION inc(i INT) RETURNS INT
|
|
RETURN i+1|
|
|
CREATE FUNCTION fac(n INT UNSIGNED) RETURNS BIGINT UNSIGNED
|
|
BEGIN
|
|
DECLARE f BIGINT UNSIGNED DEFAULT 1;
|
|
WHILE n > 1 DO
|
|
SET f = f * n;
|
|
SET n = n - 1;
|
|
END WHILE;
|
|
RETURN f;
|
|
END|
|
|
CREATE FUNCTION fun(i INT, u INT UNSIGNED) RETURNS DOUBLE
|
|
RETURN mul(inc(i), fac(u))|
|
|
CREATE PROCEDURE ifac(n INT UNSIGNED)
|
|
BEGIN
|
|
DECLARE i BIGINT UNSIGNED DEFAULT 1;
|
|
IF n > 20 THEN
|
|
SET n = 20; # bigint overflow otherwise
|
|
END IF;
|
|
WHILE i <= n DO
|
|
BEGIN
|
|
INSERT INTO t2 VALUES (i, fac(i));
|
|
SET i = i + 1;
|
|
END;
|
|
END WHILE;
|
|
END|
|
|
CREATE TRIGGER trg AFTER INSERT ON t1 FOR EACH ROW
|
|
CALL ifac(10)|
|
|
update performance_schema.setup_instruments set enabled='YES', timed='NO'
|
|
where name like "statement/sp/%" order by name;
|
|
TRUNCATE TABLE performance_schema.events_statements_summary_by_program;
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
#####################
|
|
# Executing queries #
|
|
#####################
|
|
CALL c1(42);
|
|
SELECT * FROM t1;
|
|
id data
|
|
levelc 42
|
|
DELETE FROM t1;
|
|
CALL iotest("io1", "io2", 1);
|
|
SELECT * FROM t1 ORDER BY data DESC;
|
|
id data
|
|
io2 2
|
|
io1 1
|
|
DELETE FROM t1;
|
|
SELECT fun(6,10);
|
|
fun(6,10)
|
|
25401600
|
|
INSERT INTO t1 VALUES (20,13);
|
|
SELECT * FROM t2;
|
|
n f
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
1 1
|
|
2 2
|
|
3 6
|
|
4 24
|
|
5 120
|
|
6 720
|
|
7 5040
|
|
8 40320
|
|
9 362880
|
|
10 3628800
|
|
SELECT EVENT_NAME, TIMER_START, TIMER_END, TIMER_WAIT FROM
|
|
performance_schema.events_statements_history_long WHERE
|
|
CURRENT_SCHEMA='nested_sp' AND EVENT_NAME like "statement/sp/%";
|
|
EVENT_NAME TIMER_START TIMER_END TIMER_WAIT
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/freturn NULL NULL NULL
|
|
statement/sp/stmt NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/jump NULL NULL NULL
|
|
statement/sp/jump_if_not NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
statement/sp/set NULL NULL NULL
|
|
update performance_schema.setup_instruments set enabled='YES', timed='YES'
|
|
where name like "statement/sp/%" order by name;
|
|
TRUNCATE TABLE performance_schema.events_statements_summary_by_program;
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
DROP PROCEDURE c4;
|
|
DROP PROCEDURE c3;
|
|
DROP PROCEDURE c2;
|
|
DROP PROCEDURE c1;
|
|
DROP PROCEDURE inc;
|
|
DROP PROCEDURE inc2;
|
|
DROP PROCEDURE iotest;
|
|
DROP FUNCTION mul;
|
|
DROP FUNCTION inc;
|
|
DROP FUNCTION fac;
|
|
DROP FUNCTION fun;
|
|
DROP PROCEDURE ifac;
|
|
DROP TRIGGER trg;
|
|
DROP TABLE t1,t2;
|
|
DROP DATABASE nested_sp;
|