1
2
3
4
5
6
7
8
9
10
11 dcl 1 record_collection_opening_info
12 aligned based (record_collection_opening_info_ptr),
13 2 version char (8) aligned init (RECORD_COLLECTION_OPENING_INFO_VERSION_1),
14 2 current_transaction_id
15 bit (36) aligned init ("0"b),
16 2 current_rollback_count
17 fixed bin (35) init (0),
18 2 file_opening_id bit (36) aligned init ("0"b),
19 2 collection_id bit (36) aligned init ("0"b),
20 2 field_table_ptr ptr init (null);
21
22 dcl record_collection_opening_info_ptr
23 ptr init (null);
24 dcl RECORD_COLLECTION_OPENING_INFO_VERSION_1
25 char (8) aligned init ("rc_open1") internal static options (constant);
26
27