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 dcl 1 index_opening_info based (index_opening_info_ptr) aligned,
27 2 version char (8) aligned,
28 2 file_opening_id bit (36) aligned,
29 2 collection_id bit (36) aligned,
30 2 index_header_ptr ptr init (null),
31 2 field_table_ptr ptr init (null),
32 2 key_count_array_ptr
33 ptr init (null),
34 2 key_count_increments_ptr
35 ptr init (null),
36 2 flags,
37 3 key_count_postcommit_written
38 bit (1) unal init ("0"b),
39 3 key_count_unprotected_file
40 bit (1) unal init ("0"b),
41 3 pad bit (34) unal init (""b),
42 2 current_txn_id fixed bin (35) init (0),
43 2 current_rollback_count
44 fixed bin (35) init (0);
45
46 dcl index_opening_info_ptr ptr init (null);
47 dcl INDEX_OPENING_INFO_VERSION_3
48 init ("IdxOpn 3") char (8) aligned internal static options (constant);
49
50