@@ -5,23 +5,23 @@ use std::fmt::Display;
55
66/// TODO: documentation
77#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Debug , Default , Hash ) ]
8- pub struct GroupId ( pub usize ) ;
8+ pub struct GroupId ( pub u64 ) ;
99
1010/// TODO: documentation
1111#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Debug , Default , Hash ) ]
12- pub struct ExprId ( pub usize ) ;
12+ pub struct ExprId ( pub u64 ) ;
1313
1414/// TODO: documentation
1515#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Debug , Default , Hash ) ]
16- pub struct TableId ( pub usize ) ;
16+ pub struct TableId ( pub u64 ) ;
1717
1818/// TODO: documentation
1919#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Debug , Default , Hash ) ]
20- pub struct AttrId ( pub usize ) ;
20+ pub struct AttrId ( pub u64 ) ;
2121
2222/// TODO: documentation
2323#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Debug , Default , Hash ) ]
24- pub struct EpochId ( pub usize ) ;
24+ pub struct EpochId ( pub u64 ) ;
2525
2626impl Display for GroupId {
2727 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
0 commit comments