1 /*        BEGIN INCLUDE FILE  mrds_invert_info.incl.pl1               RDL 11/1/76                   */
 2 
 3 dcl 1 invert_info based (iv_ptr),                           /* Inverted attribute info desctiption */
 4     2 rel_name char (32),                                   /* Relation name */
 5     2 num_attr fixed bin,                                   /* Number of attributes in the relation that are inverted */
 6     2 attr_name (inv_num_attr_init refer (invert_info.num_attr)) /* Names of attribute that are inverted */
 7      char (32);
 8 
 9 dcl  iv_ptr ptr;
10 dcl  inv_num_attr_init fixed bin;
11 
12 /*        END INCLUDE FILE              mrds_invert_info.include.pl                                 */
13