File: updatable_views_with_limit_func.result

package info (click to toggle)
mariadb 1%3A11.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 772,520 kB
  • sloc: ansic: 2,414,714; cpp: 1,791,394; asm: 381,336; perl: 62,905; sh: 49,647; pascal: 40,897; java: 39,363; python: 20,791; yacc: 20,432; sql: 17,907; xml: 12,344; ruby: 8,544; cs: 6,542; makefile: 6,145; ada: 1,879; lex: 1,193; javascript: 996; objc: 80; tcl: 73; awk: 46; php: 22
file content (67 lines) | stat: -rw-r--r-- 2,182 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
SET @session_updatable_views_with_limit = @@Session.UPDATABLE_VIEWS_WITH_LIMIT;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a INT, b INT, c INT, PRIMARY KEY(a,b));
INSERT INTO t1 VALUES (10,2,-1), (20,3,-2),
(30,4,-3), (40,5,-4);
CREATE VIEW v1 (x,y) AS SELECT a, c FROM t1;
CONNECT  test_con1,localhost,root,,;
connection test_con1;
SET @@Session.UPDATABLE_VIEWS_WITH_LIMIT=YES;
Warning expected, 'View does not contain complete key of the table'
UPDATE v1 SET x=x+6 LIMIT 1;
Warnings:
Note	1355	View being updated does not have complete key of underlying table in it
SELECT * FROM t1;
a	b	c
16	2	-1
20	3	-2
30	4	-3
40	5	-4
UPDATE v1 SET x=x+5;
SELECT * FROM t1;
a	b	c
21	2	-1
25	3	-2
35	4	-3
45	5	-4
CONNECT  test_con2,localhost,root,,;
connection test_con2;
SET @@Session.UPDATABLE_VIEWS_WITH_LIMIT=NO;
SELECT @@SESSION.UPDATABLE_VIEWS_WITH_LIMIT;
@@SESSION.UPDATABLE_VIEWS_WITH_LIMIT
NO
UPDATE v1 SET x=x+10 LIMIT 1;
ERROR HY000: The target table v1 of the UPDATE is not updatable
Expected error 'Non updatable table'
SELECT * FROM t1;
a	b	c
21	2	-1
25	3	-2
35	4	-3
45	5	-4
'#---------------------FN_DYNVARS_039_01----------------------#'
SET UPDATABLE_VIEWS_WITH_LIMIT=NO;
UPDATE v1 SET x=x+1 LIMIT 1;
ERROR HY000: The target table v1 of the UPDATE is not updatable
Expected error 'Non updatable table'
SET UPDATABLE_VIEWS_WITH_LIMIT=0;
UPDATE v1 SET x=x+1 LIMIT 1;
ERROR HY000: The target table v1 of the UPDATE is not updatable
Expected error 'Non updatable table'
'#---------------------FN_DYNVARS_039_02----------------------#'
Warning expected, 'View does not contain complete key of the table'
SET UPDATABLE_VIEWS_WITH_LIMIT=DEFAULT;
UPDATE v1 SET x=x+1 LIMIT 1;
Warnings:
Note	1355	View being updated does not have complete key of underlying table in it
Warning expected, 'View does not contain complete key of the table'
SET UPDATABLE_VIEWS_WITH_LIMIT=YES;
UPDATE v1 SET x=x+2 LIMIT 1;
Warnings:
Note	1355	View being updated does not have complete key of underlying table in it
connection default;
disconnect test_con1;
disconnect test_con2;
SET @@SESSION.updatable_views_with_limit = @session_updatable_views_with_limit;
DROP VIEW IF EXISTS v1;
DROP TABLE IF EXISTS t1;