1 /*  BEGIN INCLUDE FILE - dm_relation_index_flags.incl.pl1 */
 2 
 3 /* DESCRIPTION:
 4 
 5           This structure is used to control the creation of an index by the
 6      relation_manager_.
 7 */
 8 
 9 /* HISTORY:
10 
11 Written by Lindsey Spratt, 09/20/83.
12 Modified:
13 */
14 
15 /* format: style2,ind3 */
16      dcl     1 relation_index_flags based (relation_index_flags_ptr) aligned,
17                2 relation_must_be_empty
18                                     bit (1) unal,
19                2 index_is_clustering
20                                     bit (1) unal,
21                2 index_is_unique    bit (1) unal,
22                2 pad                bit (33) unal;
23 
24      dcl     relation_index_flags_ptr
25                                     ptr init (null);
26 
27 /*  END INCLUDE FILE - dm_relation_index_flags.incl.pl1 */