blob: 1ae32c9a575dae8a499e7594c34036e8daca7628 [file] [log] [blame]
-- Create our own copies of these test tables in our own
-- schema (see qp_functions_in_contexts_setup.sql)
CREATE SCHEMA qp_funcs_in_select;
set search_path='qp_funcs_in_select', 'qp_funcs_in_contexts';
CREATE TABLE foo (a int, b int);
INSERT INTO foo select i, i+1 from generate_series(1,10) i;
CREATE TABLE bar (c int, d int);
INSERT INTO bar select i, i+1 from generate_series(1,10) i;
ANALYZE foo;
ANALYZE bar;
-- @description function_in_select_column_0.sql
SELECT func1_nosql_vol(a) FROM foo order by 1;
func1_nosql_vol
-----------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_1.sql
SELECT func1_nosql_stb(a) FROM foo order by 1;
func1_nosql_stb
-----------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_2.sql
SELECT func1_nosql_imm(a) FROM foo order by 1;
func1_nosql_imm
-----------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_3.sql
SELECT func1_sql_int_vol(a) FROM foo order by 1;
func1_sql_int_vol
-------------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_4.sql
SELECT func1_sql_int_stb(a) FROM foo order by 1;
func1_sql_int_stb
-------------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_5.sql
SELECT func1_sql_int_imm(a) FROM foo order by 1;
func1_sql_int_imm
-------------------
2
3
4
5
6
7
8
9
10
11
(10 rows)
-- @description function_in_select_column_6.sql
SELECT func1_sql_setint_vol(a) FROM foo order by 1;
func1_sql_setint_vol
----------------------
1
2
2
3
3
3
4
4
4
4
5
5
5
5
5
6
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
12
12
12
12
13
13
13
14
14
15
(60 rows)
-- @description function_in_select_column_7.sql
SELECT func1_sql_setint_stb(a) FROM foo order by 1;
func1_sql_setint_stb
----------------------
1
2
2
3
3
3
4
4
4
4
5
5
5
5
5
6
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
12
12
12
12
13
13
13
14
14
15
(60 rows)
-- @description function_in_select_column_8.sql
SELECT func1_sql_setint_imm(a) FROM foo order by 1;
func1_sql_setint_imm
----------------------
1
2
2
3
3
3
4
4
4
4
5
5
5
5
5
6
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
12
12
12
12
13
13
13
14
14
15
(60 rows)
-- @description function_in_select_column_9.sql
SELECT func1_read_int_sql_vol(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_10.sql
SELECT func1_read_int_sql_stb(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_11.sql
SELECT func1_read_setint_sql_vol(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_12.sql
SELECT func1_read_setint_sql_stb(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_13.sql
begin;
SELECT func1_mod_int_vol(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_14.sql
begin;
SELECT func1_mod_int_stb(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_15.sql
begin;
SELECT func1_mod_setint_vol(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_16.sql
begin;
SELECT func1_mod_setint_stb(a) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_0.sql
SELECT func1_nosql_vol(func2_nosql_vol(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_1.sql
SELECT func1_nosql_vol(func2_nosql_stb(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_2.sql
SELECT func1_nosql_vol(func2_nosql_imm(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_3.sql
SELECT func1_nosql_vol(func2_sql_int_vol(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_4.sql
SELECT func1_nosql_vol(func2_sql_int_stb(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_5.sql
SELECT func1_nosql_vol(func2_sql_int_imm(a)) FROM foo order by 1;
func1_nosql_vol
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_6.sql
SELECT func1_nosql_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_7.sql
SELECT func1_nosql_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_8.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_9.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_10.sql
SELECT func1_nosql_stb(func2_nosql_vol(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_11.sql
SELECT func1_nosql_stb(func2_nosql_stb(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_12.sql
SELECT func1_nosql_stb(func2_nosql_imm(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_13.sql
SELECT func1_nosql_stb(func2_sql_int_vol(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_14.sql
SELECT func1_nosql_stb(func2_sql_int_stb(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_15.sql
SELECT func1_nosql_stb(func2_sql_int_imm(a)) FROM foo order by 1;
func1_nosql_stb
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_16.sql
SELECT func1_nosql_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_17.sql
SELECT func1_nosql_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_18.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_19.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_20.sql
SELECT func1_nosql_imm(func2_nosql_vol(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_21.sql
SELECT func1_nosql_imm(func2_nosql_stb(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_22.sql
SELECT func1_nosql_imm(func2_nosql_imm(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_23.sql
SELECT func1_nosql_imm(func2_sql_int_vol(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_24.sql
SELECT func1_nosql_imm(func2_sql_int_stb(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_25.sql
SELECT func1_nosql_imm(func2_sql_int_imm(a)) FROM foo order by 1;
func1_nosql_imm
-----------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_26.sql
SELECT func1_nosql_imm(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_27.sql
SELECT func1_nosql_imm(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_28.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_29.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_30.sql
SELECT func1_sql_int_vol(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_31.sql
SELECT func1_sql_int_vol(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_32.sql
SELECT func1_sql_int_vol(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_33.sql
SELECT func1_sql_int_vol(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_34.sql
SELECT func1_sql_int_vol(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_35.sql
SELECT func1_sql_int_vol(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_int_vol
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_36.sql
SELECT func1_sql_int_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_37.sql
SELECT func1_sql_int_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_38.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_39.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_40.sql
SELECT func1_sql_int_stb(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_41.sql
SELECT func1_sql_int_stb(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_42.sql
SELECT func1_sql_int_stb(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_43.sql
SELECT func1_sql_int_stb(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_44.sql
SELECT func1_sql_int_stb(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_45.sql
SELECT func1_sql_int_stb(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_int_stb
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_46.sql
SELECT func1_sql_int_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_47.sql
SELECT func1_sql_int_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_48.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_49.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_50.sql
SELECT func1_sql_int_imm(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_51.sql
SELECT func1_sql_int_imm(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_52.sql
SELECT func1_sql_int_imm(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_53.sql
SELECT func1_sql_int_imm(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_54.sql
SELECT func1_sql_int_imm(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_55.sql
SELECT func1_sql_int_imm(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_int_imm
-------------------
3
4
5
6
7
8
9
10
11
12
(10 rows)
-- @description function_in_select_column_withfunc2_56.sql
SELECT func1_sql_int_imm(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_57.sql
SELECT func1_sql_int_imm(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_58.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_59.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_60.sql
SELECT func1_sql_setint_vol(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_61.sql
SELECT func1_sql_setint_vol(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_62.sql
SELECT func1_sql_setint_vol(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_63.sql
SELECT func1_sql_setint_vol(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_64.sql
SELECT func1_sql_setint_vol(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_65.sql
SELECT func1_sql_setint_vol(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_66.sql
SELECT func1_sql_setint_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_67.sql
SELECT func1_sql_setint_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_68.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_69.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_70.sql
SELECT func1_sql_setint_stb(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_71.sql
SELECT func1_sql_setint_stb(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_72.sql
SELECT func1_sql_setint_stb(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_73.sql
SELECT func1_sql_setint_stb(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_74.sql
SELECT func1_sql_setint_stb(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_75.sql
SELECT func1_sql_setint_stb(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_76.sql
SELECT func1_sql_setint_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_77.sql
SELECT func1_sql_setint_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_78.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_79.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_80.sql
SELECT func1_sql_setint_imm(func2_nosql_vol(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_81.sql
SELECT func1_sql_setint_imm(func2_nosql_stb(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_82.sql
SELECT func1_sql_setint_imm(func2_nosql_imm(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_83.sql
SELECT func1_sql_setint_imm(func2_sql_int_vol(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_84.sql
SELECT func1_sql_setint_imm(func2_sql_int_stb(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_85.sql
SELECT func1_sql_setint_imm(func2_sql_int_imm(a)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
2
3
3
4
4
4
5
5
5
5
6
6
6
6
6
7
7
7
7
7
7
8
8
8
8
8
8
9
9
9
9
9
9
10
10
10
10
10
10
11
11
11
11
11
11
12
12
12
12
12
13
13
13
13
14
14
14
15
15
16
(60 rows)
-- @description function_in_select_column_withfunc2_86.sql
SELECT func1_sql_setint_imm(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_87.sql
SELECT func1_sql_setint_imm(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_88.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_89.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_90.sql
SELECT func1_read_int_sql_vol(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_91.sql
SELECT func1_read_int_sql_vol(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_92.sql
SELECT func1_read_int_sql_vol(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_93.sql
SELECT func1_read_int_sql_vol(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_94.sql
SELECT func1_read_int_sql_vol(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_95.sql
SELECT func1_read_int_sql_vol(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_96.sql
SELECT func1_read_int_sql_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_97.sql
SELECT func1_read_int_sql_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_98.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_99.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_100.sql
SELECT func1_read_int_sql_stb(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_101.sql
SELECT func1_read_int_sql_stb(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_102.sql
SELECT func1_read_int_sql_stb(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_103.sql
SELECT func1_read_int_sql_stb(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_104.sql
SELECT func1_read_int_sql_stb(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_105.sql
SELECT func1_read_int_sql_stb(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_106.sql
SELECT func1_read_int_sql_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_107.sql
SELECT func1_read_int_sql_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_108.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_109.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_110.sql
SELECT func1_read_setint_sql_vol(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_111.sql
SELECT func1_read_setint_sql_vol(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_112.sql
SELECT func1_read_setint_sql_vol(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_113.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_114.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_115.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_116.sql
SELECT func1_read_setint_sql_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_117.sql
SELECT func1_read_setint_sql_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_118.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_119.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_120.sql
SELECT func1_read_setint_sql_stb(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_121.sql
SELECT func1_read_setint_sql_stb(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_122.sql
SELECT func1_read_setint_sql_stb(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_123.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_124.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_125.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_column_withfunc2_126.sql
SELECT func1_read_setint_sql_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_127.sql
SELECT func1_read_setint_sql_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
-- @description function_in_select_column_withfunc2_128.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_129.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_130.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_131.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_132.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_133.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_134.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_135.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_136.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_137.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_138.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_139.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_140.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_141.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_142.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_143.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_144.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_145.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_146.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_147.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_148.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_149.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_150.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_151.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_152.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_153.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_154.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_155.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_156.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_157.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_158.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_159.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_160.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_161.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_162.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_163.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_164.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_165.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_imm(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_166.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_167.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_168.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_vol(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_column_withfunc2_169.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_stb(a)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_0.sql
SELECT func1_nosql_vol(5) FROM foo order by 1;
func1_nosql_vol
-----------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_1.sql
SELECT func1_nosql_stb(5) FROM foo order by 1;
func1_nosql_stb
-----------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_2.sql
SELECT func1_nosql_imm(5) FROM foo order by 1;
func1_nosql_imm
-----------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_3.sql
SELECT func1_sql_int_vol(5) FROM foo order by 1;
func1_sql_int_vol
-------------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_4.sql
SELECT func1_sql_int_stb(5) FROM foo order by 1;
func1_sql_int_stb
-------------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_5.sql
SELECT func1_sql_int_imm(5) FROM foo order by 1;
func1_sql_int_imm
-------------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_6.sql
SELECT func1_sql_setint_vol(5) FROM foo order by 1;
func1_sql_setint_vol
----------------------
5
5
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
(60 rows)
-- @description function_in_select_constant_7.sql
SELECT func1_sql_setint_stb(5) FROM foo order by 1;
func1_sql_setint_stb
----------------------
5
5
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
(60 rows)
-- @description function_in_select_constant_8.sql
SELECT func1_sql_setint_imm(5) FROM foo order by 1;
func1_sql_setint_imm
----------------------
5
5
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
(60 rows)
-- @description function_in_select_constant_9.sql
SELECT func1_read_int_sql_vol(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_10.sql
SELECT func1_read_int_sql_stb(5) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
6
6
6
6
6
6
6
6
6
6
(10 rows)
-- @description function_in_select_constant_11.sql
SELECT func1_read_setint_sql_vol(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_12.sql
SELECT func1_read_setint_sql_stb(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_13.sql
begin;
SELECT func1_mod_int_vol(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_14.sql
begin;
SELECT func1_mod_int_stb(5) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_15.sql
begin;
SELECT func1_mod_setint_vol(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_16.sql
begin;
SELECT func1_mod_setint_stb(5) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_0.sql
SELECT func1_nosql_vol(func2_nosql_vol(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_1.sql
SELECT func1_nosql_vol(func2_nosql_stb(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_2.sql
SELECT func1_nosql_vol(func2_nosql_imm(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_3.sql
SELECT func1_nosql_vol(func2_sql_int_vol(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_4.sql
SELECT func1_nosql_vol(func2_sql_int_stb(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_5.sql
SELECT func1_nosql_vol(func2_sql_int_imm(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_6.sql
SELECT func1_nosql_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_7.sql
SELECT func1_nosql_vol(func2_read_int_stb(5)) FROM foo order by 1;
func1_nosql_vol
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_8.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_9.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_10.sql
SELECT func1_nosql_stb(func2_nosql_vol(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_11.sql
SELECT func1_nosql_stb(func2_nosql_stb(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_12.sql
SELECT func1_nosql_stb(func2_nosql_imm(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_13.sql
SELECT func1_nosql_stb(func2_sql_int_vol(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_14.sql
SELECT func1_nosql_stb(func2_sql_int_stb(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_15.sql
SELECT func1_nosql_stb(func2_sql_int_imm(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_16.sql
SELECT func1_nosql_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_17.sql
SELECT func1_nosql_stb(func2_read_int_stb(5)) FROM foo order by 1;
func1_nosql_stb
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_18.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_19.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_20.sql
SELECT func1_nosql_imm(func2_nosql_vol(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_21.sql
SELECT func1_nosql_imm(func2_nosql_stb(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_22.sql
SELECT func1_nosql_imm(func2_nosql_imm(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_23.sql
SELECT func1_nosql_imm(func2_sql_int_vol(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_24.sql
SELECT func1_nosql_imm(func2_sql_int_stb(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_25.sql
SELECT func1_nosql_imm(func2_sql_int_imm(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_26.sql
SELECT func1_nosql_imm(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_27.sql
SELECT func1_nosql_imm(func2_read_int_stb(5)) FROM foo order by 1;
func1_nosql_imm
-----------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_28.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_29.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_30.sql
SELECT func1_sql_int_vol(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_31.sql
SELECT func1_sql_int_vol(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_32.sql
SELECT func1_sql_int_vol(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_33.sql
SELECT func1_sql_int_vol(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_34.sql
SELECT func1_sql_int_vol(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_35.sql
SELECT func1_sql_int_vol(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_36.sql
SELECT func1_sql_int_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_37.sql
SELECT func1_sql_int_vol(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_int_vol
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_38.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_39.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_40.sql
SELECT func1_sql_int_stb(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_41.sql
SELECT func1_sql_int_stb(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_42.sql
SELECT func1_sql_int_stb(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_43.sql
SELECT func1_sql_int_stb(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_44.sql
SELECT func1_sql_int_stb(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_45.sql
SELECT func1_sql_int_stb(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_46.sql
SELECT func1_sql_int_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_47.sql
SELECT func1_sql_int_stb(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_int_stb
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_48.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_49.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_50.sql
SELECT func1_sql_int_imm(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_51.sql
SELECT func1_sql_int_imm(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_52.sql
SELECT func1_sql_int_imm(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_53.sql
SELECT func1_sql_int_imm(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_54.sql
SELECT func1_sql_int_imm(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_55.sql
SELECT func1_sql_int_imm(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_56.sql
SELECT func1_sql_int_imm(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_57.sql
SELECT func1_sql_int_imm(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_int_imm
-------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_58.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_59.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_60.sql
SELECT func1_sql_setint_vol(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_61.sql
SELECT func1_sql_setint_vol(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_62.sql
SELECT func1_sql_setint_vol(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_63.sql
SELECT func1_sql_setint_vol(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_64.sql
SELECT func1_sql_setint_vol(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_65.sql
SELECT func1_sql_setint_vol(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_66.sql
SELECT func1_sql_setint_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_67.sql
SELECT func1_sql_setint_vol(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_setint_vol
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_68.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_69.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_70.sql
SELECT func1_sql_setint_stb(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_71.sql
SELECT func1_sql_setint_stb(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_72.sql
SELECT func1_sql_setint_stb(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_73.sql
SELECT func1_sql_setint_stb(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_74.sql
SELECT func1_sql_setint_stb(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_75.sql
SELECT func1_sql_setint_stb(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_76.sql
SELECT func1_sql_setint_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_77.sql
SELECT func1_sql_setint_stb(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_setint_stb
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_78.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_79.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_80.sql
SELECT func1_sql_setint_imm(func2_nosql_vol(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_81.sql
SELECT func1_sql_setint_imm(func2_nosql_stb(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_82.sql
SELECT func1_sql_setint_imm(func2_nosql_imm(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_83.sql
SELECT func1_sql_setint_imm(func2_sql_int_vol(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_84.sql
SELECT func1_sql_setint_imm(func2_sql_int_stb(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_85.sql
SELECT func1_sql_setint_imm(func2_sql_int_imm(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_86.sql
SELECT func1_sql_setint_imm(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_87.sql
SELECT func1_sql_setint_imm(func2_read_int_stb(5)) FROM foo order by 1;
func1_sql_setint_imm
----------------------
6
6
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
9
9
10
10
10
10
10
10
10
10
10
10
11
11
11
11
11
11
11
11
11
11
(60 rows)
-- @description function_in_select_constant_withfunc2_88.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_89.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_90.sql
SELECT func1_read_int_sql_vol(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_91.sql
SELECT func1_read_int_sql_vol(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_92.sql
SELECT func1_read_int_sql_vol(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_93.sql
SELECT func1_read_int_sql_vol(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_94.sql
SELECT func1_read_int_sql_vol(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_95.sql
SELECT func1_read_int_sql_vol(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_96.sql
SELECT func1_read_int_sql_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_97.sql
SELECT func1_read_int_sql_vol(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_98.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_99.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_100.sql
SELECT func1_read_int_sql_stb(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_101.sql
SELECT func1_read_int_sql_stb(func2_nosql_stb(5)) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_102.sql
SELECT func1_read_int_sql_stb(func2_nosql_imm(5)) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_103.sql
SELECT func1_read_int_sql_stb(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func1_read_int_sql_stb(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_104.sql
SELECT func1_read_int_sql_stb(func2_sql_int_stb(5)) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_105.sql
SELECT func1_read_int_sql_stb(func2_sql_int_imm(5)) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_106.sql
SELECT func1_read_int_sql_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_107.sql
SELECT func1_read_int_sql_stb(func2_read_int_stb(5)) FROM foo order by 1;
func1_read_int_sql_stb
------------------------
7
7
7
7
7
7
7
7
7
7
(10 rows)
-- @description function_in_select_constant_withfunc2_108.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_109.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_110.sql
SELECT func1_read_setint_sql_vol(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_111.sql
SELECT func1_read_setint_sql_vol(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_112.sql
SELECT func1_read_setint_sql_vol(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_113.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_114.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_115.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_116.sql
SELECT func1_read_setint_sql_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_117.sql
SELECT func1_read_setint_sql_vol(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_vol(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_118.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_119.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_120.sql
SELECT func1_read_setint_sql_stb(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_121.sql
SELECT func1_read_setint_sql_stb(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_122.sql
SELECT func1_read_setint_sql_stb(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_123.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_124.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_125.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_126.sql
SELECT func1_read_setint_sql_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
-- @description function_in_select_constant_withfunc2_127.sql
SELECT func1_read_setint_sql_stb(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c <> $1"
PL/pgSQL function func1_read_setint_sql_stb(integer) line 5 at FOR over SELECT rows
-- @description function_in_select_constant_withfunc2_128.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_129.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_130.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_131.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_132.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_133.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_134.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_135.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_136.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_137.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_138.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_139.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_140.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_141.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_142.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_143.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_144.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_145.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_146.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_147.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_148.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_149.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_150.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_151.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_152.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_153.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_154.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_155.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_156.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_157.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_158.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_159.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_160.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_161.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_162.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_163.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_164.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_165.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_imm(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_166.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it accesses relation "qp_funcs_in_select.bar" (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "SELECT d FROM bar WHERE c = $1 LIMIT 1"
PL/pgSQL function func2_read_int_vol(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_167.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_stb(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_168.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_vol(5)) FROM foo order by 1;
ERROR: function cannot execute on a QE slice because it issues a non-SELECT statement (seg0 slice1 172.17.0.6:25432 pid=118059)
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_vol(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_constant_withfunc2_169.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_stb(5)) FROM foo order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_0.sql
SELECT func1_nosql_vol(5) order by 1;
func1_nosql_vol
-----------------
6
(1 row)
-- @description function_in_select_notable_1.sql
SELECT func1_nosql_stb(5) order by 1;
func1_nosql_stb
-----------------
6
(1 row)
-- @description function_in_select_notable_2.sql
SELECT func1_nosql_imm(5) order by 1;
func1_nosql_imm
-----------------
6
(1 row)
-- @description function_in_select_notable_3.sql
SELECT func1_sql_int_vol(5) order by 1;
func1_sql_int_vol
-------------------
6
(1 row)
-- @description function_in_select_notable_4.sql
SELECT func1_sql_int_stb(5) order by 1;
func1_sql_int_stb
-------------------
6
(1 row)
-- @description function_in_select_notable_5.sql
SELECT func1_sql_int_imm(5) order by 1;
func1_sql_int_imm
-------------------
6
(1 row)
-- @description function_in_select_notable_6.sql
SELECT func1_sql_setint_vol(5) order by 1;
func1_sql_setint_vol
----------------------
5
6
7
8
9
10
(6 rows)
-- @description function_in_select_notable_7.sql
SELECT func1_sql_setint_stb(5) order by 1;
func1_sql_setint_stb
----------------------
5
6
7
8
9
10
(6 rows)
-- @description function_in_select_notable_8.sql
SELECT func1_sql_setint_imm(5) order by 1;
func1_sql_setint_imm
----------------------
5
6
7
8
9
10
(6 rows)
-- @description function_in_select_notable_9.sql
SELECT func1_read_int_sql_vol(5) order by 1;
func1_read_int_sql_vol
------------------------
6
(1 row)
-- @description function_in_select_notable_10.sql
SELECT func1_read_int_sql_stb(5) order by 1;
func1_read_int_sql_stb
------------------------
6
(1 row)
-- @description function_in_select_notable_11.sql
SELECT func1_read_setint_sql_vol(5) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
7
8
9
10
11
(9 rows)
-- @description function_in_select_notable_12.sql
SELECT func1_read_setint_sql_stb(5) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
7
8
9
10
11
(9 rows)
-- @description function_in_select_notable_13.sql
begin;
SELECT func1_mod_int_vol(5) order by 1;
func1_mod_int_vol
-------------------
6
(1 row)
rollback;
-- @description function_in_select_notable_14.sql
begin;
SELECT func1_mod_int_stb(5) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_15.sql
begin;
SELECT func1_mod_setint_vol(5) order by 1;
func1_mod_setint_vol
----------------------
8
9
10
11
12
(5 rows)
rollback;
-- @description function_in_select_notable_16.sql
begin;
SELECT func1_mod_setint_stb(5) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_0.sql
SELECT func1_nosql_vol(func2_nosql_vol(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_1.sql
SELECT func1_nosql_vol(func2_nosql_stb(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_2.sql
SELECT func1_nosql_vol(func2_nosql_imm(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_3.sql
SELECT func1_nosql_vol(func2_sql_int_vol(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_4.sql
SELECT func1_nosql_vol(func2_sql_int_stb(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_5.sql
SELECT func1_nosql_vol(func2_sql_int_imm(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_6.sql
SELECT func1_nosql_vol(func2_read_int_vol(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_7.sql
SELECT func1_nosql_vol(func2_read_int_stb(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_8.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_vol(5)) order by 1;
func1_nosql_vol
-----------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_9.sql
begin;
SELECT func1_nosql_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_10.sql
SELECT func1_nosql_stb(func2_nosql_vol(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_11.sql
SELECT func1_nosql_stb(func2_nosql_stb(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_12.sql
SELECT func1_nosql_stb(func2_nosql_imm(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_13.sql
SELECT func1_nosql_stb(func2_sql_int_vol(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_14.sql
SELECT func1_nosql_stb(func2_sql_int_stb(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_15.sql
SELECT func1_nosql_stb(func2_sql_int_imm(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_16.sql
SELECT func1_nosql_stb(func2_read_int_vol(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_17.sql
SELECT func1_nosql_stb(func2_read_int_stb(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_18.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_vol(5)) order by 1;
func1_nosql_stb
-----------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_19.sql
begin;
SELECT func1_nosql_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_20.sql
SELECT func1_nosql_imm(func2_nosql_vol(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_21.sql
SELECT func1_nosql_imm(func2_nosql_stb(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_22.sql
SELECT func1_nosql_imm(func2_nosql_imm(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_23.sql
SELECT func1_nosql_imm(func2_sql_int_vol(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_24.sql
SELECT func1_nosql_imm(func2_sql_int_stb(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_25.sql
SELECT func1_nosql_imm(func2_sql_int_imm(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_26.sql
SELECT func1_nosql_imm(func2_read_int_vol(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_27.sql
SELECT func1_nosql_imm(func2_read_int_stb(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_28.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_vol(5)) order by 1;
func1_nosql_imm
-----------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_29.sql
begin;
SELECT func1_nosql_imm(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_30.sql
SELECT func1_sql_int_vol(func2_nosql_vol(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_31.sql
SELECT func1_sql_int_vol(func2_nosql_stb(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_32.sql
SELECT func1_sql_int_vol(func2_nosql_imm(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_33.sql
SELECT func1_sql_int_vol(func2_sql_int_vol(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_34.sql
SELECT func1_sql_int_vol(func2_sql_int_stb(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_35.sql
SELECT func1_sql_int_vol(func2_sql_int_imm(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_36.sql
SELECT func1_sql_int_vol(func2_read_int_vol(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_37.sql
SELECT func1_sql_int_vol(func2_read_int_stb(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_38.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_vol(5)) order by 1;
func1_sql_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_39.sql
begin;
SELECT func1_sql_int_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_40.sql
SELECT func1_sql_int_stb(func2_nosql_vol(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_41.sql
SELECT func1_sql_int_stb(func2_nosql_stb(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_42.sql
SELECT func1_sql_int_stb(func2_nosql_imm(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_43.sql
SELECT func1_sql_int_stb(func2_sql_int_vol(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_44.sql
SELECT func1_sql_int_stb(func2_sql_int_stb(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_45.sql
SELECT func1_sql_int_stb(func2_sql_int_imm(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_46.sql
SELECT func1_sql_int_stb(func2_read_int_vol(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_47.sql
SELECT func1_sql_int_stb(func2_read_int_stb(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_48.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_vol(5)) order by 1;
func1_sql_int_stb
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_49.sql
begin;
SELECT func1_sql_int_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_50.sql
SELECT func1_sql_int_imm(func2_nosql_vol(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_51.sql
SELECT func1_sql_int_imm(func2_nosql_stb(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_52.sql
SELECT func1_sql_int_imm(func2_nosql_imm(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_53.sql
SELECT func1_sql_int_imm(func2_sql_int_vol(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_54.sql
SELECT func1_sql_int_imm(func2_sql_int_stb(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_55.sql
SELECT func1_sql_int_imm(func2_sql_int_imm(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_56.sql
SELECT func1_sql_int_imm(func2_read_int_vol(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_57.sql
SELECT func1_sql_int_imm(func2_read_int_stb(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_58.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_vol(5)) order by 1;
func1_sql_int_imm
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_59.sql
begin;
SELECT func1_sql_int_imm(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_60.sql
SELECT func1_sql_setint_vol(func2_nosql_vol(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_61.sql
SELECT func1_sql_setint_vol(func2_nosql_stb(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_62.sql
SELECT func1_sql_setint_vol(func2_nosql_imm(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_63.sql
SELECT func1_sql_setint_vol(func2_sql_int_vol(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_64.sql
SELECT func1_sql_setint_vol(func2_sql_int_stb(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_65.sql
SELECT func1_sql_setint_vol(func2_sql_int_imm(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_66.sql
SELECT func1_sql_setint_vol(func2_read_int_vol(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_67.sql
SELECT func1_sql_setint_vol(func2_read_int_stb(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_68.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_vol(5)) order by 1;
func1_sql_setint_vol
----------------------
6
7
8
9
10
11
(6 rows)
rollback;
-- @description function_in_select_notable_withfunc2_69.sql
begin;
SELECT func1_sql_setint_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_70.sql
SELECT func1_sql_setint_stb(func2_nosql_vol(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_71.sql
SELECT func1_sql_setint_stb(func2_nosql_stb(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_72.sql
SELECT func1_sql_setint_stb(func2_nosql_imm(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_73.sql
SELECT func1_sql_setint_stb(func2_sql_int_vol(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_74.sql
SELECT func1_sql_setint_stb(func2_sql_int_stb(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_75.sql
SELECT func1_sql_setint_stb(func2_sql_int_imm(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_76.sql
SELECT func1_sql_setint_stb(func2_read_int_vol(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_77.sql
SELECT func1_sql_setint_stb(func2_read_int_stb(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_78.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_vol(5)) order by 1;
func1_sql_setint_stb
----------------------
6
7
8
9
10
11
(6 rows)
rollback;
-- @description function_in_select_notable_withfunc2_79.sql
begin;
SELECT func1_sql_setint_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_80.sql
SELECT func1_sql_setint_imm(func2_nosql_vol(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_81.sql
SELECT func1_sql_setint_imm(func2_nosql_stb(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_82.sql
SELECT func1_sql_setint_imm(func2_nosql_imm(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_83.sql
SELECT func1_sql_setint_imm(func2_sql_int_vol(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_84.sql
SELECT func1_sql_setint_imm(func2_sql_int_stb(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_85.sql
SELECT func1_sql_setint_imm(func2_sql_int_imm(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_86.sql
SELECT func1_sql_setint_imm(func2_read_int_vol(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_87.sql
SELECT func1_sql_setint_imm(func2_read_int_stb(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
-- @description function_in_select_notable_withfunc2_88.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_vol(5)) order by 1;
func1_sql_setint_imm
----------------------
6
7
8
9
10
11
(6 rows)
rollback;
-- @description function_in_select_notable_withfunc2_89.sql
begin;
SELECT func1_sql_setint_imm(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_90.sql
SELECT func1_read_int_sql_vol(func2_nosql_vol(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_91.sql
SELECT func1_read_int_sql_vol(func2_nosql_stb(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_92.sql
SELECT func1_read_int_sql_vol(func2_nosql_imm(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_93.sql
SELECT func1_read_int_sql_vol(func2_sql_int_vol(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_94.sql
SELECT func1_read_int_sql_vol(func2_sql_int_stb(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_95.sql
SELECT func1_read_int_sql_vol(func2_sql_int_imm(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_96.sql
SELECT func1_read_int_sql_vol(func2_read_int_vol(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_97.sql
SELECT func1_read_int_sql_vol(func2_read_int_stb(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_98.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_vol(5)) order by 1;
func1_read_int_sql_vol
------------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_99.sql
begin;
SELECT func1_read_int_sql_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_100.sql
SELECT func1_read_int_sql_stb(func2_nosql_vol(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_101.sql
SELECT func1_read_int_sql_stb(func2_nosql_stb(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_102.sql
SELECT func1_read_int_sql_stb(func2_nosql_imm(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_103.sql
SELECT func1_read_int_sql_stb(func2_sql_int_vol(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_104.sql
SELECT func1_read_int_sql_stb(func2_sql_int_stb(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_105.sql
SELECT func1_read_int_sql_stb(func2_sql_int_imm(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_106.sql
SELECT func1_read_int_sql_stb(func2_read_int_vol(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_107.sql
SELECT func1_read_int_sql_stb(func2_read_int_stb(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
-- @description function_in_select_notable_withfunc2_108.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_vol(5)) order by 1;
func1_read_int_sql_stb
------------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_109.sql
begin;
SELECT func1_read_int_sql_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_110.sql
SELECT func1_read_setint_sql_vol(func2_nosql_vol(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_111.sql
SELECT func1_read_setint_sql_vol(func2_nosql_stb(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_112.sql
SELECT func1_read_setint_sql_vol(func2_nosql_imm(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_113.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_vol(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_114.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_stb(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_115.sql
SELECT func1_read_setint_sql_vol(func2_sql_int_imm(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_116.sql
SELECT func1_read_setint_sql_vol(func2_read_int_vol(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_117.sql
SELECT func1_read_setint_sql_vol(func2_read_int_stb(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_118.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_vol(5)) order by 1;
func1_read_setint_sql_vol
---------------------------
2
3
4
5
7
8
9
10
11
(9 rows)
rollback;
-- @description function_in_select_notable_withfunc2_119.sql
begin;
SELECT func1_read_setint_sql_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_120.sql
SELECT func1_read_setint_sql_stb(func2_nosql_vol(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_121.sql
SELECT func1_read_setint_sql_stb(func2_nosql_stb(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_122.sql
SELECT func1_read_setint_sql_stb(func2_nosql_imm(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_123.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_vol(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_124.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_stb(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_125.sql
SELECT func1_read_setint_sql_stb(func2_sql_int_imm(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_126.sql
SELECT func1_read_setint_sql_stb(func2_read_int_vol(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_127.sql
SELECT func1_read_setint_sql_stb(func2_read_int_stb(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
6
8
9
10
11
(9 rows)
-- @description function_in_select_notable_withfunc2_128.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_vol(5)) order by 1;
func1_read_setint_sql_stb
---------------------------
2
3
4
5
7
8
9
10
11
(9 rows)
rollback;
-- @description function_in_select_notable_withfunc2_129.sql
begin;
SELECT func1_read_setint_sql_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_130.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_vol(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_131.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_stb(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_132.sql
begin;
SELECT func1_mod_int_vol(func2_nosql_imm(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_133.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_vol(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_134.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_stb(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_135.sql
begin;
SELECT func1_mod_int_vol(func2_sql_int_imm(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_136.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_vol(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_137.sql
begin;
SELECT func1_mod_int_vol(func2_read_int_stb(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_138.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_vol(5)) order by 1;
func1_mod_int_vol
-------------------
7
(1 row)
rollback;
-- @description function_in_select_notable_withfunc2_139.sql
begin;
SELECT func1_mod_int_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_140.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_141.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_142.sql
begin;
SELECT func1_mod_int_stb(func2_nosql_imm(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_143.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_144.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_145.sql
begin;
SELECT func1_mod_int_stb(func2_sql_int_imm(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_146.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_147.sql
begin;
SELECT func1_mod_int_stb(func2_read_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_148.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func1_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_149.sql
begin;
SELECT func1_mod_int_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_150.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_vol(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_151.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_stb(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_152.sql
begin;
SELECT func1_mod_setint_vol(func2_nosql_imm(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_153.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_vol(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_154.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_stb(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_155.sql
begin;
SELECT func1_mod_setint_vol(func2_sql_int_imm(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_156.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_vol(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_157.sql
begin;
SELECT func1_mod_setint_vol(func2_read_int_stb(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_158.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_vol(5)) order by 1;
func1_mod_setint_vol
----------------------
9
10
11
12
(4 rows)
rollback;
-- @description function_in_select_notable_withfunc2_159.sql
begin;
SELECT func1_mod_setint_vol(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_160.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_161.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_162.sql
begin;
SELECT func1_mod_setint_stb(func2_nosql_imm(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_163.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_164.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_165.sql
begin;
SELECT func1_mod_setint_stb(func2_sql_int_imm(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_166.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_167.sql
begin;
SELECT func1_mod_setint_stb(func2_read_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_168.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_vol(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c > $1"
PL/pgSQL function func1_mod_setint_stb(integer) line 5 at SQL statement
rollback;
-- @description function_in_select_notable_withfunc2_169.sql
begin;
SELECT func1_mod_setint_stb(func2_mod_int_stb(5)) order by 1;
ERROR: UPDATE is not allowed in a non-volatile function
CONTEXT: SQL statement "UPDATE bar SET d = d+1 WHERE c = $1"
PL/pgSQL function func2_mod_int_stb(integer) line 3 at SQL statement
rollback;