File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/test/java/org/apache/ibatis/submitted/sptests Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 187
187
<dependency >
188
188
<groupId >junit</groupId >
189
189
<artifactId >junit</artifactId >
190
- <version >4.10 </version >
190
+ <version >4.11 </version >
191
191
<scope >test</scope >
192
192
</dependency >
193
193
<dependency >
194
194
<groupId >org.hsqldb</groupId >
195
195
<artifactId >hsqldb</artifactId >
196
- <version >2.2.4 </version >
196
+ <version >2.2.9 </version >
197
197
<scope >test</scope >
198
198
</dependency >
199
199
<dependency >
200
200
<groupId >org.apache.derby</groupId >
201
201
<artifactId >derby</artifactId >
202
- <version >10.3.2.1 </version >
202
+ <version >10.9.1.0 </version >
203
203
<scope >test</scope >
204
204
</dependency >
205
205
<dependency >
230
230
<dependency >
231
231
<groupId >postgresql</groupId >
232
232
<artifactId >postgresql</artifactId >
233
- <version >9.0-801 .jdbc3</version >
233
+ <version >9.1-901 .jdbc3</version >
234
234
<scope >test</scope >
235
235
</dependency >
236
236
</dependencies >
Original file line number Diff line number Diff line change 82
82
83
83
-- note that these create procedure statements will fail until hsqldb 2.0.1
84
84
create procedure sptest .getname (in nameId integer )
85
- reads sql data
85
+ modifies sql data
86
86
dynamic result sets 1
87
87
BEGIN ATOMIC
88
88
declare cur cursor for select * from sptest .names where id = nameId;
91
91
go
92
92
93
93
create procedure sptest .getnamesanditems ()
94
- reads sql data
94
+ modifies sql data
95
95
dynamic result sets 2
96
96
BEGIN ATOMIC
97
97
declare cur1 cursor for select * from sptest .names ;
102
102
go
103
103
104
104
create procedure sptest .getnames (in lowestId int , out totalrows integer )
105
- reads sql data
105
+ modifies sql data
106
106
dynamic result sets 1
107
107
BEGIN ATOMIC
108
108
declare cur cursor for select * from sptest .names where id >= lowestId;
112
112
go
113
113
114
114
create procedure sptest .arraytest (in ids int array, out rowsrequested integer , out returnedids int array)
115
- reads sql data
115
+ modifies sql data
116
116
dynamic result sets 1
117
117
begin atomic
118
118
declare cur cursor for select * from sptest .names where id in (unnest(ids));
You can’t perform that action at this time.
0 commit comments