File: dml060.out

package info (click to toggle)
derby 10.14.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 79,056 kB
  • sloc: java: 691,961; sql: 42,686; xml: 20,512; sh: 3,373; sed: 96; makefile: 60
file content (296 lines) | stat: -rw-r--r-- 8,457 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
ij> AUTOCOMMIT OFF;
ij> -- MODULE DML060

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

-- AUTHORIZATION HU
   set schema HU;
0 rows inserted/updated/deleted
ij> --O   SELECT USER FROM HU.ECCO;
  VALUES USER;
1                                                                                                                               
--------------------------------------------------------------------------------------------------------------------------------
HU                                                                                                                              
ij> -- RERUN if USER value does not match preceding AUTHORIZATION comment

-- date_time print

-- TEST:0261 WHERE (2 * (c1 - c2)) BETWEEN!

     SELECT COL1, COL2
          FROM VTABLE
          WHERE(2*(COL3 - COL2)) BETWEEN 5 AND 200
          ORDER BY COL1;
COL1       |COL2       
-----------------------
10         |20         
100        |200        
ij> -- PASS:0261 If 2 rows are selected ?
-- PASS:0261 If first row is  ( 10,  20)?
-- PASS:0261 If second row is (100, 200)?

-- END TEST >>> 0261 <<< END TEST

-- ********************************************************************

-- TEST:0262 WHERE clause with computation, ANY/ALL subqueries!

     UPDATE VTABLE
          SET COL1 = 1
          WHERE COL1 = 0;
1 row inserted/updated/deleted
ij> -- PASS:0262 If 1 row is updated?

     SELECT COL1, COL2
          FROM VTABLE
          WHERE (COL3 * COL2/COL1) > ALL
                (SELECT HOURS FROM WORKS)
                OR -(COL3 * COL2/COL1) > ANY
                (SELECT HOURS FROM WORKS)
          ORDER BY COL1;
COL1       |COL2       
-----------------------
100        |200        
1000       |-2000      
ij> -- PASS:0262 If 2 rows are selected?
-- PASS:0262 If first row is  ( 100,   200)?
-- PASS:0262 If second row is (1000, -2000)?

-- restore
     ROLLBACK WORK;
ij> -- END TEST >>> 0262 <<< END TEST
 
-- ******************************************************************

-- TEST:0263 Computed column in ORDER BY!

     SELECT COL1, (COL3 * COL2/COL1 - COL2 + 10)
          FROM VTABLE
          WHERE COL1 > 0
          ORDER BY 2;
COL1       |2          
-----------------------
1000       |-3990      
10         |50         
100        |410        
ij> -- PASS:0263 If 3 rows are selected in order with values:?
-- PASS:0263      (1000, -3990)?
-- PASS:0263      (  10,    50)?
-- PASS:0263      ( 100,   410)?

-- END TEST >>> 0263 <<< END TEST

-- ********************************************************************

-- TEST:0265 Update:searched - view with check option!

-- setup
     INSERT INTO WORKS
            VALUES('E3','P4',50);
1 row inserted/updated/deleted
ij> -- PASS:0265 If 1 row is inserted?

           SELECT EMPNUM, PNUM, HOURS
                FROM SUBSP;
EM&|PN&|HOURS 
--------------
E3 |P2 |20    
E3 |P4 |50    
ij> -- PASS:0265 If 2 rows are selected?

     SELECT * FROM WORKS;
EM&|PN&|HOURS 
--------------
E1 |P1 |40    
E1 |P2 |20    
E1 |P3 |80    
E1 |P4 |20    
E1 |P5 |12    
E1 |P6 |12    
E2 |P1 |40    
E2 |P2 |80    
E3 |P2 |20    
E4 |P2 |20    
E4 |P4 |40    
E4 |P5 |80    
E3 |P4 |50    
ij> -- PASS:0265 If 13 rows selected?

--O     UPDATE SUBSP 
--O          SET EMPNUM = 'E9'
--O          WHERE PNUM = 'P2';
-- PASS:0265 If ERROR, view check constraint, 0 rows are updated?
 
     SELECT * FROM WORKS;
EM&|PN&|HOURS 
--------------
E1 |P1 |40    
E1 |P2 |20    
E1 |P3 |80    
E1 |P4 |20    
E1 |P5 |12    
E1 |P6 |12    
E2 |P1 |40    
E2 |P2 |80    
E3 |P2 |20    
E4 |P2 |20    
E4 |P4 |40    
E4 |P5 |80    
E3 |P4 |50    
ij> -- PASS:0265 If 13 rows selected and no EMPNUM = 'E9'?

-- restore
     ROLLBACK WORK;
ij> -- END TEST >>> 0265 <<< END TEST

-- ******************************************************************

-- TEST:0266 Update:searched - UNIQUE violation under view!

-- setup
     INSERT INTO WORKS
            VALUES('E3','P4',50);
1 row inserted/updated/deleted
ij> -- PASS:0266 If 1 row is inserted?

     SELECT EMPNUM, PNUM, HOURS
          FROM SUBSP;
EM&|PN&|HOURS 
--------------
E3 |P2 |20    
E3 |P4 |50    
ij> -- PASS:0266 If 2 rows are selected?

     SELECT * FROM WORKS WHERE EMPNUM = 'E3';
EM&|PN&|HOURS 
--------------
E3 |P2 |20    
E3 |P4 |50    
ij> -- PASS:0266 If 2 rows selected and PNUM values are 'P2' and 'P4'?

--O     UPDATE SUBSP
--O          SET PNUM = 'P6'
--O          WHERE EMPNUM = 'E3';
-- PASS:0266 If ERROR, unique constraint, 0 rows updated?

--O     SELECT EMPNUM, PNUM, HOURS
--O          FROM SUBSP;
-- PASS:0266 If 2 rows are selected?

--O     SELECT * FROM WORKS WHERE EMPNUM = 'E3';
-- PASS:0266 If 2 rows selected and PNUM values are 'P2' and 'P4'?

-- restore
     ROLLBACK WORK;
ij> -- END TEST >>> 0266 <<< END TEST

-- ******************************************************************

-- TEST:0267 Update compound key, interim uniqueness conflict!

     DELETE FROM WORKS1;
0 rows inserted/updated/deleted
WARNING 02000: No row was found for FETCH, UPDATE or DELETE; or the result of a query is an empty table.
ij> -- Making sure the table is empty

-- setup
     INSERT INTO WORKS1 VALUES ('P1','P6',1);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P6',2);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P6',3);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P6',4);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P6',5);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P6',6);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P1','P5',7);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P5',8);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P5',9);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P5',10);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P5',11);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P5',12);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P1','P4',13);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P4',14);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P4',15);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P4',16);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P4',17);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P4',18);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P1','P3',19);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P3',20);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P3',21);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P3',22);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P3',23);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P3',24);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P1','P2',25);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P2',26);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P2',27);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P2',28);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P2',29);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P2',30);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P1','P1',31);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P2','P1',32);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P3','P1',33);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P4','P1',34);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P5','P1',35);
1 row inserted/updated/deleted
ij> INSERT INTO WORKS1 VALUES ('P6','P1',36);
1 row inserted/updated/deleted
ij> UPDATE WORKS1
       SET PNUM = EMPNUM, EMPNUM = PNUM;
36 rows inserted/updated/deleted
ij> -- PASS:0267 If 36 rows are updated?

--O     SELECT COUNT(*) 
     SELECT * 
          FROM WORKS1
          WHERE EMPNUM = 'P1' AND HOURS > 30;
EM&|PN&|HOURS 
--------------
P1 |P1 |31    
P1 |P2 |32    
P1 |P3 |33    
P1 |P4 |34    
P1 |P5 |35    
P1 |P6 |36    
ij> -- PASS:0267 If count = 6?

-- restore
     ROLLBACK WORK;
ij> -- END TEST >>> 0267 <<< END TEST

-- *************************************************////END-OF-MODULE
;
ij>