1
2
3
4
5 dcl 1 table_control_info based (table_control_ip),
6 2 selection_expression_identifier fixed bin,
7
8 2 row_info_ptr ptr init(null),
9 2 component_ptrs_ptr ptr init(null),
10
11 2 max_number_of_components fixed bin,
12 2 msf_seg_count fixed bin init (0),
13
14 2 max_number_of_rows_per_seg fixed bin(21),
15
16
17 2 retrieval_id fixed bin init(0),
18
19 2 table_info_ptr ptr init (null),
20 2 fcb_ptr ptr init (null),
21
22 2 table_msf char (27) init (""),
23 2 temp_directory char (168) init (""),
24 2 info_area_ptr ptr init (null),
25 2 work_area_ptr ptr init (null),
26
27 2 incremental_retrieval_arg_ptr
28 ptr init (null),
29
30 2 incremental_retrieval_char_ptr
31 ptr init (null),
32
33 2 char_output_string_ptr ptr init (null),
34 2 current_component_ptr ptr init (null),
35
36 2 current_seg_row_count fixed bin(35) init (0),
37
38
39 2 flags,
40 3 permanent aligned bit(1),
41 3 sorted bit(1),
42 3 mbz1 bit(34) unal;
43
44 dcl table_control_ip ptr;
45
46
47