1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 dcl 1 relation_header aligned based (relation_header_ptr),
16 2 version char (8),
17 2 header_info_update_count
18 fixed bin (35) aligned init (0),
19 2 record_collection_id
20 bit (36) aligned init ("0"b),
21 2 cluster_index_id bit (36) aligned init ("0"b),
22 2 attribute_info_element_id
23 bit (36) aligned init ("0"b),
24 2 index_attribute_map_element_id
25 bit (36) aligned init ("0"b),
26 2 caller_header_element_id
27 bit (36) aligned init ("0"b);
28
29 dcl relation_header_ptr ptr init (null);
30 dcl RELATION_HEADER_VERSION_3
31 init ("RelHdr 3") char (8) aligned internal static options (constant);
32
33