@@ -18,18 +18,24 @@ class TestEntity:
1818 int8 = Property (int , type = PropertyType .byte , id = 7 , uid = 1007 )
1919 float64 = Property (float , type = PropertyType .double , id = 8 , uid = 1008 )
2020 float32 = Property (float , type = PropertyType .float , id = 9 , uid = 1009 )
21- bytes = Property (bytes , id = 10 , uid = 1010 , index_type = IndexType .hash64 )
22- ints = Property (np .ndarray , type = PropertyType .intVector , id = 11 , uid = 1011 )
23- longs = Property (np .ndarray , type = PropertyType .longVector , id = 12 , uid = 1012 )
24- floats = Property (np .ndarray , type = PropertyType .floatVector , id = 13 , uid = 1013 )
25- doubles = Property (np .ndarray , type = PropertyType .doubleVector , id = 14 , uid = 1014 )
26- ints_list = Property (list , type = PropertyType .intVector , id = 15 , uid = 1015 )
27- longs_list = Property (list , type = PropertyType .longVector , id = 16 , uid = 1016 )
28- floats_list = Property (list , type = PropertyType .floatVector , id = 17 , uid = 1017 )
29- doubles_list = Property (list , type = PropertyType .doubleVector , id = 18 , uid = 1018 )
30- date = Property (int , type = PropertyType .date , id = 19 , uid = 1019 )
31- date_nano = Property (int , type = PropertyType .dateNano , id = 20 , uid = 1020 )
32- flex = Property (Generic , type = PropertyType .flex , id = 21 , uid = 1021 )
21+ bools = Property (np .ndarray , type = PropertyType .boolVector , id = 10 , uid = 1010 )
22+ bytes = Property (bytes , id = 11 , uid = 1011 )
23+ shorts = Property (np .ndarray , type = PropertyType .shortVector , id = 12 , uid = 1012 )
24+ chars = Property (np .ndarray , type = PropertyType .charVector , id = 13 , uid = 1013 )
25+ ints = Property (np .ndarray , type = PropertyType .intVector , id = 14 , uid = 1014 )
26+ longs = Property (np .ndarray , type = PropertyType .longVector , id = 15 , uid = 1015 )
27+ floats = Property (np .ndarray , type = PropertyType .floatVector , id = 16 , uid = 1016 )
28+ doubles = Property (np .ndarray , type = PropertyType .doubleVector , id = 17 , uid = 1017 )
29+ bools_list = Property (list , type = PropertyType .boolVector , id = 18 , uid = 1018 )
30+ shorts_list = Property (list , type = PropertyType .shortVector , id = 19 , uid = 1019 )
31+ chars_list = Property (list , type = PropertyType .charVector , id = 20 , uid = 1020 )
32+ ints_list = Property (list , type = PropertyType .intVector , id = 21 , uid = 1021 )
33+ longs_list = Property (list , type = PropertyType .longVector , id = 22 , uid = 1022 )
34+ floats_list = Property (list , type = PropertyType .floatVector , id = 23 , uid = 1023 )
35+ doubles_list = Property (list , type = PropertyType .doubleVector , id = 24 , uid = 1024 )
36+ date = Property (int , type = PropertyType .date , id = 25 , uid = 1025 )
37+ date_nano = Property (int , type = PropertyType .dateNano , id = 26 , uid = 1026 )
38+ flex = Property (Generic , type = PropertyType .flex , id = 27 , uid = 1027 )
3339 transient = "" # not "Property" so it's not stored
3440
3541 def __init__ (self , string : str = "" ):
0 commit comments