-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy patheunit.cursor.tst
36 lines (31 loc) · 2.13 KB
/
eunit.cursor.tst
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
%%-*- mode: erlang -*-
%%-*- coding: utf-8 -*-
% Test control options
[{tests, []}].
%% =============================================================================
%% TESTS: CURSOR
%% -----------------------------------------------------------------------------
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% cursor_def
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"begin cursor cursor_1 is (select * from dual)|:b.f[f(p.r:q)]|;end;".
"begin cursor cursor_1 is (select * from table_1 intersect select * from table_2) union (select * from table_3 minus select * from table_4);end;".
"begin cursor cursor_1 is (select * from table_1 intersect select * from table_2) union select * from table_3;end;".
"begin cursor cursor_1 is (select * from table_1 order by (select * from table_2) asc);end;".
"begin cursor cursor_1 is (select * from table_1 order by (select * from table_2) asc,(select * from table_3) desc);end;".
"begin cursor cursor_1 is (select * from table_1 order by (select * from table_2));end;".
"begin cursor cursor_1 is (select * from table_1 order by column_1 asc);end;".
"begin cursor cursor_1 is (select * from table_1 order by column_1 asc,column_2 desc);end;".
"begin cursor cursor_1 IS (SELECT * FROM table_1 Order By column_1);end;".
"begin cursor cursor_1 IS (SELECT * FROM table_1);end;".
"begin cursor cursor_1 is (select * from dual)|:b.f[f(p.r:q)]|;end;".
"begin cursor cursor_1 is select * from dual;end;".
"begin cursor cursor_1 is select * from table_1 intersect select * from table_2;end;".
"begin cursor cursor_1 is select * from table_1 minus select * from table_2;end;".
"begin cursor cursor_1 IS SELECT * FROM table_1 Order By column_1;end;".
"begin cursor cursor_1 is select * from table_1 union (select * from table_2 minus select * from table_3);end;".
"begin cursor cursor_1 is select * from table_1 union select * from table_2;end;".
"begin cursor cursor_1 IS SELECT * FROM table_1;end;".
%% -----------------------------------------------------------------------------
%% TESTS: CURSOR
%% =============================================================================