File: dml170.sql

package info (click to toggle)
derby 10.14.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 78,896 kB
  • sloc: java: 691,930; sql: 42,686; xml: 20,511; sh: 3,373; sed: 96; makefile: 60
file content (126 lines) | stat: -rw-r--r-- 3,001 bytes parent folder | download | duplicates (4)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
AUTOCOMMIT OFF;

-- MODULE  DML170  

-- SQL Test Suite, V6.0, Interactive SQL, dml170.sql
-- 59-byte ID
-- TEd Version #

-- AUTHORIZATION FLATER
   set schema FLATER;

--O   SELECT USER FROM HU.ECCO;
  VALUES USER;
-- RERUN if USER value does not match preceding AUTHORIZATION comment
--O   ROLLBACK WORK;

-- date_time print

-- TEST:0880 Long constraint names, cursor names!

   CREATE TABLE T0880 (
     C1 INT NOT NULL, C2 INT NOT NULL,
     CONSTRAINT
     "It was the best of"
     PRIMARY KEY (C1, C2));
-- PASS:0880 If table created successfully?

   COMMIT WORK;

   INSERT INTO T0880 VALUES (0, 1);
-- PASS:0880 If 1 row inserted successfully?

   INSERT INTO T0880 VALUES (1, 2);
-- PASS:0880 If 1 row inserted successfully?

   INSERT INTO T0880 VALUES (1, 2);
-- PASS:0880 If ERROR - integrity constraint violation?

   SELECT C1 FROM T0880 ORDER BY C1;
-- PASS:0880 If 2 rows are returned in the following order?
--                c1
--                ==
-- PASS:0880 If   0 ?
-- PASS:0880 If   1 ?

   COMMIT WORK;

   ALTER TABLE T0880
     DROP CONSTRAINT
     "It was the best of"
--O     CASCADE;
    ;
-- PASS:0880 If table altered successfully?

   COMMIT WORK;

   INSERT INTO T0880 VALUES (0, 1);
-- PASS:0880 If 1 row inserted successfully?

   SELECT COUNT (*) FROM T0880;
-- PASS:0880 If COUNT = 3?

   COMMIT WORK;

--O   DROP TABLE T0880 CASCADE;
   DROP TABLE T0880 ;
-- PASS:0880 If table dropped successfully?

   COMMIT WORK;

-- END TEST >>> 0880 <<< END TEST
-- *********************************************

-- TEST:0881 Long character set names, domain names!

--O   CREATE CHARACTER SET
--O     "Little boxes on the hillside, Little boxes made of ticky-tacky"
--O     GET SQL_TEXT;
-- PASS:0881 If character set created successfully?

--O   COMMIT WORK;

--O   CREATE DOMAIN
--O     "Little boxes on the hillside, Little boxes all the same."
--O     CHAR (4) CHARACTER SET
--O     "Little boxes on the hillside, Little boxes made of ticky-tacky";
-- PASS:0881 If domain created successfully?

--O   COMMIT WORK;

--O   CREATE TABLE T0881 ( C1
--O     "Little boxes on the hillside, Little boxes all the same.");
-- PASS:0881 If table created successfully?

--O   COMMIT WORK;

--O   INSERT INTO T0881 VALUES ('ABCD');
-- PASS:0881 If insert completed successfully?

--O   SELECT COUNT(*) FROM T0881
--O     WHERE C1 = 'ABCD';
-- PASS:0881 If COUNT = 1?

--O   COMMIT WORK;

--O   DROP TABLE T0881 CASCADE;
-- PASS:0881 if table dropped successfully?

--O   COMMIT WORK;

--O   DROP DOMAIN
--O     "Little boxes on the hillside, Little boxes all the same."
--O     CASCADE;
-- PASS:0881 If domain dropped successfully?

--O   COMMIT WORK;

--O   DROP CHARACTER SET
--O   "Little boxes on the hillside, Little boxes made of ticky-tacky";
-- PASS:0881 If character set dropped successfully?

--O   COMMIT WORK;

-- END TEST >>> 0881 <<< END TEST
-- *********************************************
-- *************************************************////END-OF-MODULE