vastdb 1.3.6__py3-none-any.whl → 1.3.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. vastdb/_internal.py +170 -78
  2. vastdb/bench/test_perf.py +2 -2
  3. vastdb/config.py +3 -0
  4. vastdb/errors.py +6 -0
  5. vastdb/features.py +9 -0
  6. vastdb/schema.py +5 -3
  7. vastdb/table.py +76 -15
  8. vastdb/tests/test_imports.py +70 -1
  9. vastdb/tests/test_tables.py +217 -0
  10. vastdb/tests/util.py +2 -2
  11. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Aggregate.py +4 -4
  12. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Call.py +2 -2
  13. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/CaseFragment.py +2 -2
  14. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Cast.py +2 -2
  15. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ConditionalCase.py +2 -2
  16. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Filter.py +3 -3
  17. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Grouping.py +1 -1
  18. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Join.py +4 -4
  19. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/KeyValue.py +2 -2
  20. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Limit.py +2 -2
  21. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ListLiteral.py +1 -1
  22. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Literal.py +1 -1
  23. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralColumn.py +1 -1
  24. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralRelation.py +2 -2
  25. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/MapKey.py +1 -1
  26. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/MapLiteral.py +1 -1
  27. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/OrderBy.py +3 -3
  28. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Plan.py +1 -1
  29. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Project.py +3 -3
  30. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SetOperation.py +2 -2
  31. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SimpleCase.py +3 -3
  32. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SortKey.py +1 -1
  33. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Source.py +4 -4
  34. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StructLiteral.py +1 -1
  35. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/WindowCall.py +3 -3
  36. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryBatch.py +1 -1
  37. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryEncoding.py +1 -1
  38. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Field.py +3 -3
  39. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Footer.py +4 -4
  40. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Message.py +1 -1
  41. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/RecordBatch.py +3 -3
  42. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Schema.py +2 -2
  43. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseMatrixIndexCSX.py +4 -4
  44. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensor.py +2 -2
  45. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndexCOO.py +2 -2
  46. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndexCSF.py +4 -4
  47. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Tensor.py +2 -2
  48. vastdb/vast_flatbuf/tabular/ColumnDetails.py +56 -0
  49. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateProjectionRequest.py +1 -1
  50. vastdb/vast_flatbuf/tabular/FilterString.py +45 -0
  51. vastdb/vast_flatbuf/tabular/GetRowColumnSecurityResponse.py +166 -0
  52. vastdb/vast_flatbuf/tabular/GetTableStatsResponse.py +178 -0
  53. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ImportDataRequest.py +34 -1
  54. vastdb/vast_flatbuf/tabular/KeyName.py +45 -0
  55. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListProjectionsResponse.py +1 -1
  56. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListSchemasResponse.py +1 -1
  57. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListTablesResponse.py +1 -1
  58. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListViewsResponse.py +1 -1
  59. vastdb/vast_flatbuf/tabular/NameString.py +45 -0
  60. vastdb/vast_flatbuf/tabular/ObjectDetails.py +168 -0
  61. {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/METADATA +1 -1
  62. vastdb-1.3.8.dist-info/RECORD +216 -0
  63. vastdb-1.3.8.dist-info/top_level.txt +1 -0
  64. vast_flatbuf/tabular/GetTableStatsResponse.py +0 -111
  65. vast_flatbuf/tabular/ObjectDetails.py +0 -112
  66. vastdb-1.3.6.dist-info/RECORD +0 -211
  67. vastdb-1.3.6.dist-info/top_level.txt +0 -2
  68. {vast_flatbuf → vastdb/vast_flatbuf}/__init__.py +0 -0
  69. {vast_flatbuf → vastdb/vast_flatbuf}/org/__init__.py +0 -0
  70. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/__init__.py +0 -0
  71. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/__init__.py +0 -0
  72. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/__init__.py +0 -0
  73. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ArraySlice.py +0 -0
  74. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ArraySubscript.py +0 -0
  75. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/BinaryLiteral.py +0 -0
  76. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/BooleanLiteral.py +0 -0
  77. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Bound.py +0 -0
  78. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ConcreteBoundImpl.py +0 -0
  79. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/CurrentRow.py +0 -0
  80. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DateLiteral.py +0 -0
  81. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DecimalLiteral.py +0 -0
  82. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Deref.py +0 -0
  83. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DurationLiteral.py +0 -0
  84. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Expression.py +0 -0
  85. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ExpressionImpl.py +0 -0
  86. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FieldIndex.py +0 -0
  87. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FieldRef.py +0 -0
  88. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FixedSizeBinaryLiteral.py +0 -0
  89. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float16Literal.py +0 -0
  90. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float32Literal.py +0 -0
  91. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float64Literal.py +0 -0
  92. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Following.py +0 -0
  93. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Frame.py +0 -0
  94. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int16Literal.py +0 -0
  95. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int32Literal.py +0 -0
  96. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int64Literal.py +0 -0
  97. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int8Literal.py +0 -0
  98. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteral.py +0 -0
  99. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralDaysMilliseconds.py +0 -0
  100. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralImpl.py +0 -0
  101. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralMonths.py +0 -0
  102. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/JoinKind.py +0 -0
  103. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralImpl.py +0 -0
  104. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Ordering.py +0 -0
  105. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Preceding.py +0 -0
  106. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/RelId.py +0 -0
  107. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Relation.py +0 -0
  108. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/RelationImpl.py +0 -0
  109. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SetOpKind.py +0 -0
  110. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StringLiteral.py +0 -0
  111. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StructField.py +0 -0
  112. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/TimeLiteral.py +0 -0
  113. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/TimestampLiteral.py +0 -0
  114. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt16Literal.py +0 -0
  115. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt32Literal.py +0 -0
  116. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt64Literal.py +0 -0
  117. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt8Literal.py +0 -0
  118. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Unbounded.py +0 -0
  119. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/__init__.py +0 -0
  120. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Binary.py +0 -0
  121. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Block.py +0 -0
  122. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/BodyCompression.py +0 -0
  123. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/BodyCompressionMethod.py +0 -0
  124. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Bool.py +0 -0
  125. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Buffer.py +0 -0
  126. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/CompressionType.py +0 -0
  127. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Date.py +0 -0
  128. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DateUnit.py +0 -0
  129. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Decimal.py +0 -0
  130. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryKind.py +0 -0
  131. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Duration.py +0 -0
  132. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Endianness.py +0 -0
  133. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Feature.py +0 -0
  134. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FieldNode.py +0 -0
  135. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FixedSizeBinary.py +0 -0
  136. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FixedSizeList.py +0 -0
  137. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FloatingPoint.py +0 -0
  138. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Int.py +0 -0
  139. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Interval.py +0 -0
  140. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/IntervalUnit.py +0 -0
  141. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/KeyValue.py +0 -0
  142. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeBinary.py +0 -0
  143. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeList.py +0 -0
  144. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeUtf8.py +0 -0
  145. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/List.py +0 -0
  146. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Map.py +0 -0
  147. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/MessageHeader.py +0 -0
  148. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/MetadataVersion.py +0 -0
  149. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Null.py +0 -0
  150. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Precision.py +0 -0
  151. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseMatrixCompressedAxis.py +0 -0
  152. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndex.py +0 -0
  153. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Struct_.py +0 -0
  154. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/TensorDim.py +0 -0
  155. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Time.py +0 -0
  156. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/TimeUnit.py +0 -0
  157. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Timestamp.py +0 -0
  158. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Type.py +0 -0
  159. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Union.py +0 -0
  160. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/UnionMode.py +0 -0
  161. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Utf8.py +0 -0
  162. {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/__init__.py +0 -0
  163. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterColumnRequest.py +0 -0
  164. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterProjectionTableRequest.py +0 -0
  165. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterSchemaRequest.py +0 -0
  166. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterTableRequest.py +0 -0
  167. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/Column.py +0 -0
  168. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ColumnType.py +0 -0
  169. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateSchemaRequest.py +0 -0
  170. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateViewRequest.py +0 -0
  171. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/GetProjectionTableStatsResponse.py +0 -0
  172. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/S3File.py +0 -0
  173. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/VipRange.py +0 -0
  174. {vast_flatbuf → vastdb/vast_flatbuf}/tabular/__init__.py +0 -0
  175. {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/LICENSE +0 -0
  176. {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/WHEEL +0 -0
@@ -0,0 +1,168 @@
1
+ # automatically generated by the FlatBuffers compiler, do not modify
2
+
3
+ # namespace: tabular
4
+
5
+ import flatbuffers
6
+ from flatbuffers.compat import import_numpy
7
+ np = import_numpy()
8
+
9
+ # used by `ListSchemas` and `ListTables` API
10
+ class ObjectDetails(object):
11
+ __slots__ = ['_tab']
12
+
13
+ @classmethod
14
+ def GetRootAs(cls, buf, offset=0):
15
+ n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
16
+ x = ObjectDetails()
17
+ x.Init(buf, n + offset)
18
+ return x
19
+
20
+ @classmethod
21
+ def GetRootAsObjectDetails(cls, buf, offset=0):
22
+ """This method is deprecated. Please switch to GetRootAs."""
23
+ return cls.GetRootAs(buf, offset)
24
+ # ObjectDetails
25
+ def Init(self, buf, pos):
26
+ self._tab = flatbuffers.table.Table(buf, pos)
27
+
28
+ # ObjectDetails
29
+ def Name(self):
30
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
31
+ if o != 0:
32
+ return self._tab.String(o + self._tab.Pos)
33
+ return None
34
+
35
+ # ObjectDetails
36
+ def Properties(self):
37
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
38
+ if o != 0:
39
+ return self._tab.String(o + self._tab.Pos)
40
+ return None
41
+
42
+ # ObjectDetails
43
+ def Handle(self):
44
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
45
+ if o != 0:
46
+ return self._tab.String(o + self._tab.Pos)
47
+ return None
48
+
49
+ # ObjectDetails
50
+ def NumRows(self):
51
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
52
+ if o != 0:
53
+ return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
54
+ return 0
55
+
56
+ # ObjectDetails
57
+ def SizeInBytes(self):
58
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
59
+ if o != 0:
60
+ return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
61
+ return 0
62
+
63
+ # ObjectDetails
64
+ def NumPartitions(self):
65
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(14))
66
+ if o != 0:
67
+ return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
68
+ return 0
69
+
70
+ # ObjectDetails
71
+ def SortingKeyEnabled(self):
72
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(16))
73
+ if o != 0:
74
+ return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
75
+ return False
76
+
77
+ # ObjectDetails
78
+ def SortingScore(self):
79
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(18))
80
+ if o != 0:
81
+ return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
82
+ return 0
83
+
84
+ # ObjectDetails
85
+ def WriteAmplification(self):
86
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(20))
87
+ if o != 0:
88
+ return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
89
+ return 0
90
+
91
+ # ObjectDetails
92
+ def AcummulativeRowInseritionCount(self):
93
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(22))
94
+ if o != 0:
95
+ return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
96
+ return 0
97
+
98
+ def ObjectDetailsStart(builder):
99
+ builder.StartObject(10)
100
+
101
+ def Start(builder):
102
+ ObjectDetailsStart(builder)
103
+
104
+ def ObjectDetailsAddName(builder, name):
105
+ builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(name), 0)
106
+
107
+ def AddName(builder, name):
108
+ ObjectDetailsAddName(builder, name)
109
+
110
+ def ObjectDetailsAddProperties(builder, properties):
111
+ builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(properties), 0)
112
+
113
+ def AddProperties(builder, properties):
114
+ ObjectDetailsAddProperties(builder, properties)
115
+
116
+ def ObjectDetailsAddHandle(builder, handle):
117
+ builder.PrependUOffsetTRelativeSlot(2, flatbuffers.number_types.UOffsetTFlags.py_type(handle), 0)
118
+
119
+ def AddHandle(builder, handle):
120
+ ObjectDetailsAddHandle(builder, handle)
121
+
122
+ def ObjectDetailsAddNumRows(builder, numRows):
123
+ builder.PrependUint64Slot(3, numRows, 0)
124
+
125
+ def AddNumRows(builder, numRows):
126
+ ObjectDetailsAddNumRows(builder, numRows)
127
+
128
+ def ObjectDetailsAddSizeInBytes(builder, sizeInBytes):
129
+ builder.PrependUint64Slot(4, sizeInBytes, 0)
130
+
131
+ def AddSizeInBytes(builder, sizeInBytes):
132
+ ObjectDetailsAddSizeInBytes(builder, sizeInBytes)
133
+
134
+ def ObjectDetailsAddNumPartitions(builder, numPartitions):
135
+ builder.PrependUint64Slot(5, numPartitions, 0)
136
+
137
+ def AddNumPartitions(builder, numPartitions):
138
+ ObjectDetailsAddNumPartitions(builder, numPartitions)
139
+
140
+ def ObjectDetailsAddSortingKeyEnabled(builder, sortingKeyEnabled):
141
+ builder.PrependBoolSlot(6, sortingKeyEnabled, 0)
142
+
143
+ def AddSortingKeyEnabled(builder, sortingKeyEnabled):
144
+ ObjectDetailsAddSortingKeyEnabled(builder, sortingKeyEnabled)
145
+
146
+ def ObjectDetailsAddSortingScore(builder, sortingScore):
147
+ builder.PrependInt64Slot(7, sortingScore, 0)
148
+
149
+ def AddSortingScore(builder, sortingScore):
150
+ ObjectDetailsAddSortingScore(builder, sortingScore)
151
+
152
+ def ObjectDetailsAddWriteAmplification(builder, writeAmplification):
153
+ builder.PrependInt64Slot(8, writeAmplification, 0)
154
+
155
+ def AddWriteAmplification(builder, writeAmplification):
156
+ ObjectDetailsAddWriteAmplification(builder, writeAmplification)
157
+
158
+ def ObjectDetailsAddAcummulativeRowInseritionCount(builder, acummulativeRowInseritionCount):
159
+ builder.PrependInt64Slot(9, acummulativeRowInseritionCount, 0)
160
+
161
+ def AddAcummulativeRowInseritionCount(builder, acummulativeRowInseritionCount):
162
+ ObjectDetailsAddAcummulativeRowInseritionCount(builder, acummulativeRowInseritionCount)
163
+
164
+ def ObjectDetailsEnd(builder):
165
+ return builder.EndObject()
166
+
167
+ def End(builder):
168
+ return ObjectDetailsEnd(builder)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vastdb
3
- Version: 1.3.6
3
+ Version: 1.3.8
4
4
  Summary: VAST Data SDK
5
5
  Home-page: https://github.com/vast-data/vastdb_sdk
6
6
  Author: VAST DATA
@@ -0,0 +1,216 @@
1
+ vastdb/__init__.py,sha256=J1JjKiFkKC95BHowfh9kJfQFTjRce-QMsc6zF_FfxC0,432
2
+ vastdb/_internal.py,sha256=-TSpq5nYQPrPdB2nsnt7DWDDaD6HC8iOnI5yXRiM3Ao,104965
3
+ vastdb/bucket.py,sha256=aomUbrfK5Oa6FdGPVsoBXgRW39IzYnmsorF8642r990,2549
4
+ vastdb/config.py,sha256=OehnsWrjzv0-SUouEXmkrKBugiWyhXOn4XiSLV3s9yk,2342
5
+ vastdb/conftest.py,sha256=X2kVveySPQYZlVBXUMoo7Oea5IsvmJzjdqq3fpH2kVw,3469
6
+ vastdb/errors.py,sha256=B_FNFONDE8apoTRL8wkMNjUJWAjXu36mO0HI4cGSBgY,4328
7
+ vastdb/features.py,sha256=3QRyIMUDovLcOTDVM_4qYFHmKtzCDtlkdlbhbK1a8rY,1652
8
+ vastdb/schema.py,sha256=UR1WzQvfAdnpDaNsEaGZLYGC65Blri5MYOWinCcl8Hc,6552
9
+ vastdb/session.py,sha256=toMR0BXwTaECdWDKnIZky1F3MA1SmelRBiqCrqQ3GCM,2067
10
+ vastdb/table.py,sha256=1QSvZDhpaOjRsEu_FU8di3STUrbsRmGW4VFx4g4FYFs,34237
11
+ vastdb/transaction.py,sha256=NlVkEowJ_pmtffjWBBDaKExYDKPekjSZyj_fK_bZPJE,3026
12
+ vastdb/util.py,sha256=8CUnVRsJukC3uNHNoB5D0qPf0FxS8OSdVB84nNoLJKc,6290
13
+ vastdb/bench/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ vastdb/bench/test_perf.py,sha256=nyK-BM1HJhPHrcNa2pLNmxqcC_CG2UsJogE92EvN-UM,1082
15
+ vastdb/bench/test_sample.py,sha256=LgF4syzij09sH3Noiv1EyCAJ9pvrUE5bxR4RJTVEYag,7881
16
+ vastdb/bench/perf_bench/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ vastdb/bench/perf_bench/cli.py,sha256=NtaPEBTDI6PWgEtwI1wVbwmUeA5bwGqAj_Z_2lDJ28I,5931
18
+ vastdb/bench/perf_bench/run.py,sha256=2dKooybt7e8VqM7FzY1jrIu6wZYQuoAF9o7AHVh-WVQ,2632
19
+ vastdb/bench/perf_bench/bench_repo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ vastdb/bench/perf_bench/bench_repo/mega_combo.py,sha256=9d8quB3aO6WLNlcIGUL1vmNo3KqyJgEiXSnbQOCiK-U,2780
21
+ vastdb/bench/perf_bench/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ vastdb/bench/perf_bench/common/constants.py,sha256=HI6qQSrqkrqC3jjq3LcOKth6o0yXq1yIOEbp9Oqo1jA,2905
23
+ vastdb/bench/perf_bench/common/log_utils.py,sha256=V0Y6n2kOGTPMK2zPZMMnYwEFvmgOzMZQzk0uu4r-O3o,2015
24
+ vastdb/bench/perf_bench/common/types.py,sha256=tbrJ-gvFGcq-U2Ny89BVxM1ItGZtIxrubgYImXOHDuc,1085
25
+ vastdb/bench/perf_bench/common/utils.py,sha256=c6NoPMVwIQqIg2uDd4LtJIW7Hlis9QvlfbIyJc9sGS4,6280
26
+ vastdb/bench/perf_bench/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ vastdb/bench/perf_bench/dataset/generate_secmaster.py,sha256=zm0b6MIN_hQM7znb-GA0T7L316t8DPixeN7ptdNRLO8,2718
28
+ vastdb/bench/perf_bench/dataset/generate_stocks_dataset.py,sha256=WiYTK31gcaygrzF6Fbldlf7dwod4tioG4XSTv0fSxmc,8486
29
+ vastdb/bench/perf_bench/dataset/schemas.py,sha256=CvCAxCWHsWdI6jE9on2Mm6b0NTDhZXRIbfP61vMNVow,2575
30
+ vastdb/bench/perf_bench/dataset/secmaster.py,sha256=Y3yt8B_RsFvGlhMWKvDqax31UV_ShxZM-7CJO4YmxL0,188169
31
+ vastdb/bench/perf_bench/orchestrate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ vastdb/bench/perf_bench/orchestrate/bench_spec.py,sha256=XMUVlKPyWuhkRkz_Z2-iKYxqDlMj0EKcA3N46MLIX2c,2469
33
+ vastdb/bench/perf_bench/orchestrate/results_helpers.py,sha256=u-GeDjbdKZLhAfDdecg9xYe7mnbJ0q_xu3xJ8rrRWG0,4172
34
+ vastdb/bench/perf_bench/orchestrate/scenario.py,sha256=DUsIWyVmoLyYbKqPcLpd4veNHVbJsmL9JE-RTdmmyiw,3482
35
+ vastdb/bench/perf_bench/orchestrate/scenario_generator.py,sha256=Plnij1hHqwmMndYpG4EA6L-HNAMJUB-M6-KXm3KZtlk,5978
36
+ vastdb/bench/perf_bench/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ vastdb/bench/perf_bench/query/arrow_common.py,sha256=eTQx_-ChEJVhP3g3HdQIP4vjIQrogPNh9UZ8nl9P5ew,1821
38
+ vastdb/bench/perf_bench/query/query.py,sha256=h98Ui6vUTw16LHMY0ufkLnyVO3QCR8f1cXUU8N6B2mE,1185
39
+ vastdb/bench/perf_bench/query/query_pyarrow.py,sha256=Dj5YPUvb4dAj7RskHfJcPijJnM-rdYIAItEF2dp4jfo,2305
40
+ vastdb/bench/perf_bench/query/query_vastdb.py,sha256=SZYem_EmsaynEftAa_VFobjSJZDAcli9BckyRS3SFvg,2810
41
+ vastdb/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ vastdb/tests/metrics.py,sha256=ZCSeBYFSPMG3yI0JrAHs2CrY6wFjx_5GwRTYHVAwLKA,1026
43
+ vastdb/tests/test_duckdb.py,sha256=STw_1PwTQR8Naz6s0p6lQTV1ZTKKhe3LPBUbhqzTCu0,1880
44
+ vastdb/tests/test_imports.py,sha256=ICI9EWFgKf9TbphFRhFifqZoESKWIM3_zb53U7-jOSo,8058
45
+ vastdb/tests/test_nested.py,sha256=LPU6uV3Ri23dBzAEMFQqRPbqapV5LfmiHSHkhILPIY0,6332
46
+ vastdb/tests/test_projections.py,sha256=3y1kubwVrzO-xoR0hyps7zrjOJI8niCYspaFTN16Q9w,4540
47
+ vastdb/tests/test_sanity.py,sha256=bv1ypGDzvOgmMvGbucDYiLQu8krQLlE6NB3M__q87x8,3303
48
+ vastdb/tests/test_schemas.py,sha256=l70YQMlx2UL1KRQhApriiG2ZM7GJF-IzWU31H3Yqn1U,3312
49
+ vastdb/tests/test_tables.py,sha256=D6eHSDjC4SJGFA91qJO56SoVPE040rN37uOrDWRDthk,47634
50
+ vastdb/tests/test_util.py,sha256=n7gvT5Wg6b6bxgqkFXkYqvFd_W1GlUdVfmPv66XYXyA,1956
51
+ vastdb/tests/util.py,sha256=O2bgB5403meX69vVY1gWACOtWLOoXE5yQA00ppk4WN8,596
52
+ vastdb/vast_flatbuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ vastdb/vast_flatbuf/org/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ vastdb/vast_flatbuf/org/apache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ vastdb/vast_flatbuf/org/apache/arrow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Aggregate.py,sha256=2BxRJSszpfi2sF2lpH8X2bt4ilGlEvH_GnydvU12Svg,5658
58
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ArraySlice.py,sha256=t1cX4I6DJO137i-JlnPZhI5m1O2wTJiJlohM5L-usVs,2212
59
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ArraySubscript.py,sha256=zdWOQrJxHyGlgsLXqoV5p5UAM3g_k7nIs3nSwvUxqTQ,1567
60
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/BinaryLiteral.py,sha256=PGh9STcZl_Xg-Z1PPAvXahx36vYfbi-EpBEXQPFmOh8,2494
61
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/BooleanLiteral.py,sha256=bF9PSn7M2cEAJ189bkfnmBwSMovGFHkbEA8iZmFSmhM,1521
62
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Bound.py,sha256=mtX7jViFOT9rZfHv6K9KpFx7MJiJj-jH-iOeXywH38w,182
63
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Call.py,sha256=ETMDOmQhrkBPaBbdUeau8e2E-ZqtTxyg8YE0tRywDOw,4448
64
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/CaseFragment.py,sha256=cu10Sqao2AwfPzslrHX3Yp6ehaYhTl4w2rmpnDVHMA8,2443
65
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Cast.py,sha256=PUvUQiR-o2mt9Pz8nvaNMDu90Qssm6Ue9fU7hzdyz5s,2534
66
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ConcreteBoundImpl.py,sha256=2MyYSG3Mp-MXuy2Rn_HCx2aq5F5XTOplS2gAKSpejTI,236
67
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ConditionalCase.py,sha256=bd6IlxGjoWetLsmQoLsNCxTCkrP-dzAW3T-opoIn9us,3504
68
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/CurrentRow.py,sha256=5J2Q-q-MLlBGb4lqrTAXdvX3eTvtsPjHTAPueCUAlhU,1059
69
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/DateLiteral.py,sha256=7YYY-d5gnl6LO1IHiEAzerw0wHaiwlGo0rx7Ptf_Cgo,1489
70
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/DecimalLiteral.py,sha256=_Uh2iefqTi6JmPR2csnmm_bKXIM0Bp_1x7iDUwB4xnc,2576
71
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Deref.py,sha256=3NljN4BGjZlHYUOmwAPZv5AM12tQrdb3GbIDaeeMxes,484
72
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/DurationLiteral.py,sha256=W0nPkEvtKlo30LCN9R8etKbvdU0UxU-AeEC9IRx0IHU,1521
73
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Expression.py,sha256=ekqQAFrqNpIVUY5ky4Zkb-wKK_JV3J1hOFCtJF7xNBY,2258
74
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ExpressionImpl.py,sha256=dBCMJbiSLA3ItIsPcSNjyfHDd8y7DviI1YIIUTk2JY8,498
75
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/FieldIndex.py,sha256=tAFAgJVbnkq0RqEjO9R5E_9FohyENl3spU5tDeuZKRo,1584
76
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/FieldRef.py,sha256=rWaJ0jsol3uQb7tFcNWFk8mZnRv9Y0Vmqn6JDWddu8I,2850
77
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Filter.py,sha256=fqEpZ1_BYGatfeuXb5trViwRtDYuaGO8XI_dX9n-eqQ,3281
78
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/FixedSizeBinaryLiteral.py,sha256=La0SxGdd4BNpGvt-6GOwtUMivMtYIKYeXPHODjvfhwg,2602
79
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Float16Literal.py,sha256=aNy8fCJ0FJF8U6foDIP_uaT8t3-a7cUTW5J07JygvRA,1515
80
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Float32Literal.py,sha256=Vsf7vYvm6wbCzXVeHH299h7R11jG5v0ve5jroZ7eYBI,1521
81
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Float64Literal.py,sha256=TvFnsxZx4xWzbZ_j9NeFVmcI8UWCogXSiQy10kvTZgw,1521
82
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Following.py,sha256=RLLIp91vKFVO9us8bew2sQU-u7hdXIuTtUih4J7cL1M,2130
83
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Frame.py,sha256=UewdwgstV9AlOSTHg7aYrMBIXXbzd562VhnkAXKPRYE,186
84
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Grouping.py,sha256=YzIWLic3OSocrpqG-zLwM69BiT0xXlS3NJ9eNGvTGPQ,2410
85
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Int16Literal.py,sha256=QKrlGrOHuYthDea4_pQ5sb-CZgP1mTMvQNEpXo3ut44,1497
86
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Int32Literal.py,sha256=DytwUxhjeRDEqFE21UIY584g_Lv3_AnX3rnhwRgSFoE,1497
87
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Int64Literal.py,sha256=CDtNqHTxzUllEOqHcdHyXKVJiNjediHhgAJMYdXvyqs,1497
88
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Int8Literal.py,sha256=5ZCUvyjVEOGNtVXlHhSZTBGudmn0awuVHJPIfbF1844,1487
89
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/IntervalLiteral.py,sha256=yAArP4IMMUHWg695x2n9TOOYIaGxzz8uMLRWoRhqlLk,2139
90
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/IntervalLiteralDaysMilliseconds.py,sha256=2knR1QudxRk_t6gjIc5cfXw5AJr4zrR1RMzljK8ElOs,2197
91
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/IntervalLiteralImpl.py,sha256=RHdHWPDPIDrlPGc2sQNWED8eLQgOozRnLKGOffxqkPk,211
92
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/IntervalLiteralMonths.py,sha256=FUgcTqc-cMf6470SzKiWSCjw_qj3O6E_EVyUMPlXqKQ,1578
93
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Join.py,sha256=wV89IfihTdwL30iulgtlk3eAThY7wfKorVJ1hddUeRM,4483
94
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/JoinKind.py,sha256=9XV3RTTjwhSMSztm6Xm0t-TiPpygMtaKZsxSLOz4EdI,230
95
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/KeyValue.py,sha256=iXY_RLm_5yaV5avMh1-vXfaLI7oQstECtRwzOqkS4Ik,2323
96
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Limit.py,sha256=yJ5ADIvwB6VeT6MiJNTd8LqIhCKY8xzppe0B7uDHFtE,3382
97
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/ListLiteral.py,sha256=bpkxG7re2bMyW1T7RZTqpjwVk-fMWUdf151N1y-08mM,2407
98
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Literal.py,sha256=TTuTzqMwdvMaxYjKgGOZtWhMcKfFXVGo0RmP2e1qCHE,2804
99
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/LiteralColumn.py,sha256=aSDf77vLIw2OWlwi_LA9J93x8rv5twolfcfWB9obFlc,2533
100
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/LiteralImpl.py,sha256=k_8dGOLLbbQOpIeFVDmAAUEg3nSFxIJ1j37UTUvtnyw,682
101
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/LiteralRelation.py,sha256=yD0wOswmMnHw5H3rZ9SGbHYeKclu15pCMEvsBI3-HwY,3298
102
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/MapKey.py,sha256=_CQqkDI_WCa1ABuiUygWvB3ejSALKpg1RkdVUpsPmBg,1730
103
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/MapLiteral.py,sha256=-BeWmyu6mxFXu_NhY_l3ED__6Kz-WDuNpQnmnsIGgsg,2399
104
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/OrderBy.py,sha256=PVdu59G0FF56FXwS4IxRJuoGp9WaWZ4NSQK9LERHhWo,3868
105
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Ordering.py,sha256=NK8R90T6VZpyITVOGw3us8OdLctPTiF79In8dhxNpFw,349
106
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Plan.py,sha256=_R7P-Pk0_v0mYqqwmwmOH_eVGyzNzUoxo4IBGj9wd7E,2385
107
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Preceding.py,sha256=s8tUzXGTiHkC4Ed1YETs1-Yl9AXwWRjLYHB0B3o1iBI,2130
108
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Project.py,sha256=yG5JWn-mwDVQYuwT4esZKpo-d2VmmqyvrDTUu1VyFfo,3962
109
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/RelId.py,sha256=bKqj5-e2KBchooRNnD0Eb_mlQkR-7lWxhjXkfBIz85c,1526
110
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Relation.py,sha256=Zp2P6RcGCd6up1VJEUk7y3waHdCN8okuxfjY-S2a9LQ,2113
111
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/RelationImpl.py,sha256=Dnv8yqAEXghwZvflrLVqTelNnhsLv-gYOAQzLTfI_Ns,315
112
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/SetOpKind.py,sha256=-NLExMv33Rb4zV5_Kh_9A1yHucY-YmuXAVoQemSlYb4,217
113
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/SetOperation.py,sha256=j4n8-lqB8DPAwmu5eZfZUQMJFX5HzZTRGL4nVBwm3ns,3692
114
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/SimpleCase.py,sha256=5TmxlqLNYQrpIrC0ob1xn-iCbtjEoxju46iH57T72rw,3973
115
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/SortKey.py,sha256=Vfeu7lj2pCc6mg-qKPRNrqlBV86cr-stLXUHUU_btOg,2228
116
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Source.py,sha256=ksEG_pPkps0Q2S7jpDxtf_6afqsYjUe25oFXZTAzU0E,5678
117
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/StringLiteral.py,sha256=qRcMHn-Er2ppm4vUo1FmdReueQCnuexIKtL62EZx-o4,1533
118
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/StructField.py,sha256=ycbV3Yaz8plvfEFc8eP3eOTFvkR7AYJxW_SdKUiYqyw,1593
119
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/StructLiteral.py,sha256=mbFl5ScWMnismkozsXm25S4VedZBdkO6PHEI3fnQgVA,2546
120
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/TimeLiteral.py,sha256=b71QXcLz4B3KB6tcQrwrz9v-ZbHvXup82l0vcKeI1iQ,1489
121
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/TimestampLiteral.py,sha256=UGRH7vtXw4R-zqhomzhZbdA4WtYLau5_mmlQSsOLjzw,1529
122
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/UInt16Literal.py,sha256=S6L90tD0T01vxpFsKnwl7PjFhodMQWLtwuENhJvbLMQ,1507
123
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/UInt32Literal.py,sha256=nw3fC0JoYV1WlqOLlPmbTj3kH4BmK1y1NWrZpGKlp0k,1507
124
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/UInt64Literal.py,sha256=n7FzF7qXeH6GdgpDc44POGFnNkNC_k0IbsCcQIPwU8o,1507
125
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/UInt8Literal.py,sha256=bAfQyxpCH77RvwVDELo5hQmEBQxmEpCPkH7LjfRv4Hc,1497
126
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/Unbounded.py,sha256=6BgZew6bfsszJBH8T5EesJ3ByOvVBYTPhcsVwUirEhI,1051
127
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/WindowCall.py,sha256=3f_zzMYOyUL9ubAV683O-xw9qNqfrwXpaghUYS1rbxU,7548
128
+ vastdb/vast_flatbuf/org/apache/arrow/computeir/flatbuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Binary.py,sha256=ggnVZAtrOmxL8fTiD3v783C0JrvhwNkCNMCwptFKDj8,1026
130
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Block.py,sha256=MfJxski8VoceuqMm2VD3s_Sm2WV-_EaqOB-8LSHBTgQ,1326
131
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/BodyCompression.py,sha256=CdulOfuytFss0V8NkcNj2lX208ba-JIBNwIGzSZgBPg,2310
132
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/BodyCompressionMethod.py,sha256=pWgT_2NRBfQIy--wvM_gluTSe9l29KYuay7JVZCT3KQ,836
133
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Bool.py,sha256=mc_eW1MHqEgqAcrdkrdOTpAJgVFbWDISju16lVcYVO8,993
134
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Buffer.py,sha256=aKApj6pgYjJHWUSJGc9CZxdd_G9uENrO8mRgnmritx4,1430
135
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/CompressionType.py,sha256=xh6JfzI9AkwSyzhKzaE2vqmYzDsZM3Wb--hfI2wNjCo,155
136
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Date.py,sha256=A1uHjWkwyc-Rzt9QJ0ey9EWRvJbUEAadNIiiKKaJm8c,1760
137
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/DateUnit.py,sha256=Ml_4324RQ24YEkC5rI3fYYaKUFp_Dpgu0SkPkxiTGDU,149
138
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Decimal.py,sha256=Il36AlHWGjN5CU0Ievl2yQO_NQLI106y_TpCqsSFLpo,2855
139
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/DictionaryBatch.py,sha256=2c5hWPcYHHenesH4baP4pykRtGJI4Mlm8zg7aAbylSQ,3155
140
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/DictionaryEncoding.py,sha256=MYXQM-PTSxIEhjo0upw7Nfa1NfglfiYQpThMTem-BEQ,4098
141
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/DictionaryKind.py,sha256=ti8sIDhrPt_SXgGhiNh7tYfv72X1-j8jDrGbzYorBZw,410
142
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Duration.py,sha256=Sv-7OKZcAZcBOnj0q45Jskr9vKsvEJh3Tk40-0e9Gnw,1456
143
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Endianness.py,sha256=E7QwyEE5gZa-mLJZ87f5QC9NAQUkvkQ0NmH4Ze_DIpw,267
144
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Feature.py,sha256=UcKAut7x4rqAGkRxsrxmtAyt2cBVcq55A_cdbI4UOfs,1289
145
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Field.py,sha256=g29ReTLZQJV0oRC99L_ae-wi0rlXcYmrLFbPE9-JslE,7069
146
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/FieldNode.py,sha256=BwpdJS5qXSlVqBXNMMTryEY9BBQhz6c6Vqe_6CRxtY0,1669
147
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/FixedSizeBinary.py,sha256=0yYYXU04LYtNcVAgBE4QkxM2mqnLD7QAgGJmcjvBfMg,1589
148
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/FixedSizeList.py,sha256=XuJ4ZvfVIE6FjPHRB1oc66iKVX3y1yd3pzmcDu-VX9I,1569
149
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/FloatingPoint.py,sha256=dRhnYNeHNDHU0TbH3B1jeWyLNWdZl6oEy7VNRdCzjS4,1541
150
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Footer.py,sha256=lm_fBKbpRe30_E3JweOLxrIuyp-knAbJv15dpaWrVcU,6476
151
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Int.py,sha256=Wp8nQf0tS9vLsZHnaV_ZhIoszy9Wup5wRbPn4LHs73c,1925
152
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Interval.py,sha256=S_XTNCRAld-U7EHvKFDEgXcGXeWn3ztj8zu4WEaZOfQ,1456
153
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/IntervalUnit.py,sha256=Ta0Z4cDOeRzb75vImeyV_oHRdf-AmD4oala9KkvhCwk,180
154
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/KeyValue.py,sha256=T81ERnMxnJlAfY300Ic5zp2C3sPhLMkweiybhuhfCO8,2139
155
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/LargeBinary.py,sha256=ioGx7G1PN7rRhXAMfA6-nwflbRV54WAwQYrkZ5qJjhg,1131
156
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/LargeList.py,sha256=9mSw1J9t8_HnCRA2bR7XSf_harvc8yNvUJCcGT3e34I,1117
157
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/LargeUtf8.py,sha256=uII41kdpA0KYaoYru25KzIzYofJ__it4nhmeFKqqRvI,1117
158
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/List.py,sha256=lgHHLhBPDZOdi7r8Sg38AA4SzP88Sq8uS3lyTcozCLI,993
159
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Map.py,sha256=ju1Rn9xQOtQVr8CLXdcYeETC4di-28Ox8hdP2q8TiOo,2541
160
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Message.py,sha256=AE-GPkZQE2_CvmrEVtHVlNT1QrJO6oJFYLX1jMykrFo,4493
161
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/MessageHeader.py,sha256=u9VewSZYe_qyNoaWugexZ8r999wrsWJ_isY0TsYoT5k,671
162
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/MetadataVersion.py,sha256=uM3ewr3-6E8rmJSlUT2Bg0cRYyzMc5TBwpWglqXol60,786
163
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Null.py,sha256=Dh3s6jluJ1xDFGfL2JGK1RdsjziOkl4VU9XVXvFsUKQ,1054
164
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Precision.py,sha256=1X_JsxVndUdEkyKzpviPCs30FXRzs9JmCixD8VUibxI,161
165
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/RecordBatch.py,sha256=MJMP68LR7oDxafArJCnDIT3eQ_IuntmO8VnBHzWnHtA,5610
166
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Schema.py,sha256=qr9e60lmxiqu6qxNOPyq-fv9FC5aKa9T8yRv93KnMM4,6056
167
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseMatrixCompressedAxis.py,sha256=oHmHP0BAbLtLZ0MHi5at9MiLr7rbdj5cLCZDOma3Kss,162
168
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseMatrixIndexCSX.py,sha256=ooGLF98OwOPXiXAFzDkuTWHeLSyinT51HvgS2woj5p0,5813
169
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseTensor.py,sha256=UdtzugrYgB481RH9Bs09XWjzALNhug-Eyst4afFg7Hw,6105
170
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseTensorIndex.py,sha256=MDyvwbZvcDRF0fsiaMBCgD52kLR9IV24Xpi1ZVyr90I,226
171
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseTensorIndexCOO.py,sha256=hdzdSasJeTQgkjuMoIedhnlnFrMp4N68QhtKivQiRpw,6403
172
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/SparseTensorIndexCSF.py,sha256=fye7z3Qn5ycmjG-_gh6tGGfnZnnIAWGCbAk-eZUjeoI,9437
173
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Struct_.py,sha256=7_ZVZClBk-U02qHOQIUTseyeoklmQodLN4rpQoqXzsU,1193
174
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Tensor.py,sha256=XUNSvVk96cm3e3S9RKJlo9TtYhqfXWDwG791sRLP76E,5781
175
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/TensorDim.py,sha256=B0rh8qDNwUB0CSHOB2L69eOu_ZrRT47ew4hy5ftKYVc,2149
176
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Time.py,sha256=6pZkfxkGrx-EKeTxTH6s2GXfXH8U1d3mWBUnFGrSek8,2639
177
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/TimeUnit.py,sha256=rXkltzt1Lh2S6hmTtvruqnGtulVfOqFsQt2Kq_1-y48,191
178
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Timestamp.py,sha256=UFeiNT6qjCDHfDsOR6wpqYVWak5bedLR2Z7pa0419zU,7925
179
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Type.py,sha256=8ZZKR3SiqzQpPzouHSTsu8T0AQOzJouOdI8x_EE2rCg,698
180
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Union.py,sha256=lOaMhupBUyXVTL5aWuBT_K6jzdedyhKlLljsehXmVD8,3142
181
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/UnionMode.py,sha256=ODsiI6iVtbotuIWXH3CFaQFtYc5TkDlPUIGFdpyjI4o,147
182
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/Utf8.py,sha256=cu9l7Yjkt63af1oO112oB15A9OP-OYgBJUc_oD7dbE0,1023
183
+ vastdb/vast_flatbuf/org/apache/arrow/flatbuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ vastdb/vast_flatbuf/tabular/AlterColumnRequest.py,sha256=sZJMO7Ta1Lh8ChzEwwdjdiz_pBhcdBLiyX8T09lkZKc,2114
185
+ vastdb/vast_flatbuf/tabular/AlterProjectionTableRequest.py,sha256=dDeI_7owfilYoEMVQ5j_g0a--HykcXb_8lK1A5tJT40,2222
186
+ vastdb/vast_flatbuf/tabular/AlterSchemaRequest.py,sha256=FiFpcGNcgNpRMXizJn4Lyt3oRJOaYaa5GsaJz0D2DjY,1618
187
+ vastdb/vast_flatbuf/tabular/AlterTableRequest.py,sha256=WC5TVopeVerdig7lSNWUl-W2yhkWJj5P1DZRcjrvx3g,1610
188
+ vastdb/vast_flatbuf/tabular/Column.py,sha256=2iXTlN8pynb_Sf7n15k8n2uXP_8eoz2RqKrUbTBrIyI,1901
189
+ vastdb/vast_flatbuf/tabular/ColumnDetails.py,sha256=X5YYPNNTx5ViCPVLcQpGoB4tt24TBXL2I1Vk6rVeMEo,2002
190
+ vastdb/vast_flatbuf/tabular/ColumnType.py,sha256=_4-jMG08VR2zdn1ZH7F4aahYPxWsBSm7adUoVf-HFSU,151
191
+ vastdb/vast_flatbuf/tabular/CreateProjectionRequest.py,sha256=sR5dKWlMAshlbBSgp7DTNb_oSt14Lx9jGKhNg1sxnz4,2523
192
+ vastdb/vast_flatbuf/tabular/CreateSchemaRequest.py,sha256=MrOfWaFu0Q1-mxLlGV8YMPajZ5kASyvowVSrKU-NPx8,1626
193
+ vastdb/vast_flatbuf/tabular/CreateViewRequest.py,sha256=zagEVFrcWZLDY2exRHxr_uf-Yirchp7uYLk5b6Zvah8,4497
194
+ vastdb/vast_flatbuf/tabular/FilterString.py,sha256=cQ59oRHxTV2g4UQdb70CzgcQGopginqz_sTykYOChzg,1535
195
+ vastdb/vast_flatbuf/tabular/GetProjectionTableStatsResponse.py,sha256=Bp-ln-0lcZEiUvp3vWYmnCP6t2UsZ5J-lezgkUUWhzo,3474
196
+ vastdb/vast_flatbuf/tabular/GetRowColumnSecurityResponse.py,sha256=z9MOG43_Y5s7DtiYf3cU3-UdtckNT4i-uoGvxCqZMYU,7136
197
+ vastdb/vast_flatbuf/tabular/GetTableStatsResponse.py,sha256=22MpnArZESvfS8Z6YCdbX6FoJNwDdAgLihhgg-U6nJ8,6495
198
+ vastdb/vast_flatbuf/tabular/ImportDataRequest.py,sha256=gmw2ialyl8poXgV97KQcH7xlW6-r7zAu91lvc4ij_o8,3846
199
+ vastdb/vast_flatbuf/tabular/KeyName.py,sha256=TgHZT_A_Rv4CMf02Eaw7Ubedve5Kme1o7DIk4JggPnc,1476
200
+ vastdb/vast_flatbuf/tabular/ListProjectionsResponse.py,sha256=sqshb5jmAulHHnZQq2wwftQCERUDwstxn1nhadbP7Pw,4247
201
+ vastdb/vast_flatbuf/tabular/ListSchemasResponse.py,sha256=WyofRuUc66g3sPCKM53BDpuQg_C9hjqASlH1ADQ2a9s,3043
202
+ vastdb/vast_flatbuf/tabular/ListTablesResponse.py,sha256=ysNiDeEKy4ayYrw8DCJxrt-Xf6OIauUBL1Dgj9WnSMI,3557
203
+ vastdb/vast_flatbuf/tabular/ListViewsResponse.py,sha256=pDpWMbrxhFZ8Rs1keRkXN4bsI9PNDOeV3RqdyE2dcQ0,3528
204
+ vastdb/vast_flatbuf/tabular/NameString.py,sha256=TkCp4wt61gzqoyaue9wf91SPEQ2W1FqqNbRBSMzK5y0,1501
205
+ vastdb/vast_flatbuf/tabular/ObjectDetails.py,sha256=YEi7dyFmRTtXskVbQbtCDEhU1vxrUKj6_KnYCmAOMnI,5793
206
+ vastdb/vast_flatbuf/tabular/S3File.py,sha256=KC9c2oS5-JXwTTriUVFdjOvRG0B54Cq9kviSDZY3NI0,4450
207
+ vastdb/vast_flatbuf/tabular/VipRange.py,sha256=_BJd1RRZAcK76T9vlsHzXKYVsPVaz6WTEAqStMQCAUQ,2069
208
+ vastdb/vast_flatbuf/tabular/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
+ vastdb/vast_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ vastdb/vast_tests/test_ha.py,sha256=744P4G6VJ09RIkHhMQL4wlipCBJWQVMhyvUrSc4k1HQ,975
211
+ vastdb/vast_tests/test_scale.py,sha256=5jGwOdZH6Tv5tPdZYPWoqcxOceI2jA5i2D1zNKZHER4,3958
212
+ vastdb-1.3.8.dist-info/LICENSE,sha256=obffan7LYrq7hLHNrY7vHcn2pKUTBUYXMKu-VOAvDxU,11333
213
+ vastdb-1.3.8.dist-info/METADATA,sha256=JO1YYjtkqWE7VLusG8OkWUNHw4Osq6hduCUlg6xIU7g,1340
214
+ vastdb-1.3.8.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
215
+ vastdb-1.3.8.dist-info/top_level.txt,sha256=nnKAaZaQa8GFbYpWAexr_B9HrhonZbUlX6hL6AC--yA,7
216
+ vastdb-1.3.8.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ vastdb
@@ -1,111 +0,0 @@
1
- # automatically generated by the FlatBuffers compiler, do not modify
2
-
3
- # namespace: tabular
4
-
5
- import flatbuffers
6
- from flatbuffers.compat import import_numpy
7
- np = import_numpy()
8
-
9
- class GetTableStatsResponse(object):
10
- __slots__ = ['_tab']
11
-
12
- @classmethod
13
- def GetRootAs(cls, buf, offset=0):
14
- n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15
- x = GetTableStatsResponse()
16
- x.Init(buf, n + offset)
17
- return x
18
-
19
- @classmethod
20
- def GetRootAsGetTableStatsResponse(cls, buf, offset=0):
21
- """This method is deprecated. Please switch to GetRootAs."""
22
- return cls.GetRootAs(buf, offset)
23
- # GetTableStatsResponse
24
- def Init(self, buf, pos):
25
- self._tab = flatbuffers.table.Table(buf, pos)
26
-
27
- # GetTableStatsResponse
28
- def NumRows(self):
29
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
30
- if o != 0:
31
- return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
32
- return 0
33
-
34
- # GetTableStatsResponse
35
- def SizeInBytes(self):
36
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
37
- if o != 0:
38
- return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
39
- return 0
40
-
41
- # GetTableStatsResponse
42
- def IsExternalRowidAlloc(self):
43
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
44
- if o != 0:
45
- return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
46
- return False
47
-
48
- # GetTableStatsResponse
49
- def AddressType(self):
50
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
51
- if o != 0:
52
- return self._tab.String(o + self._tab.Pos)
53
- return None
54
-
55
- # GetTableStatsResponse
56
- def Vips(self, j):
57
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
58
- if o != 0:
59
- x = self._tab.Vector(o)
60
- x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
61
- x = self._tab.Indirect(x)
62
- from vast_flatbuf.tabular.VipRange import VipRange
63
- obj = VipRange()
64
- obj.Init(self._tab.Bytes, x)
65
- return obj
66
- return None
67
-
68
- # GetTableStatsResponse
69
- def VipsLength(self):
70
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
71
- if o != 0:
72
- return self._tab.VectorLen(o)
73
- return 0
74
-
75
- # GetTableStatsResponse
76
- def VipsIsNone(self):
77
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
78
- return o == 0
79
-
80
- def Start(builder): builder.StartObject(5)
81
- def GetTableStatsResponseStart(builder):
82
- """This method is deprecated. Please switch to Start."""
83
- return Start(builder)
84
- def AddNumRows(builder, numRows): builder.PrependInt64Slot(0, numRows, 0)
85
- def GetTableStatsResponseAddNumRows(builder, numRows):
86
- """This method is deprecated. Please switch to AddNumRows."""
87
- return AddNumRows(builder, numRows)
88
- def AddSizeInBytes(builder, sizeInBytes): builder.PrependInt64Slot(1, sizeInBytes, 0)
89
- def GetTableStatsResponseAddSizeInBytes(builder, sizeInBytes):
90
- """This method is deprecated. Please switch to AddSizeInBytes."""
91
- return AddSizeInBytes(builder, sizeInBytes)
92
- def AddIsExternalRowidAlloc(builder, isExternalRowidAlloc): builder.PrependBoolSlot(2, isExternalRowidAlloc, 0)
93
- def GetTableStatsResponseAddIsExternalRowidAlloc(builder, isExternalRowidAlloc):
94
- """This method is deprecated. Please switch to AddIsExternalRowidAlloc."""
95
- return AddIsExternalRowidAlloc(builder, isExternalRowidAlloc)
96
- def AddAddressType(builder, addressType): builder.PrependUOffsetTRelativeSlot(3, flatbuffers.number_types.UOffsetTFlags.py_type(addressType), 0)
97
- def GetTableStatsResponseAddAddressType(builder, addressType):
98
- """This method is deprecated. Please switch to AddAddressType."""
99
- return AddAddressType(builder, addressType)
100
- def AddVips(builder, vips): builder.PrependUOffsetTRelativeSlot(4, flatbuffers.number_types.UOffsetTFlags.py_type(vips), 0)
101
- def GetTableStatsResponseAddVips(builder, vips):
102
- """This method is deprecated. Please switch to AddVips."""
103
- return AddVips(builder, vips)
104
- def StartVipsVector(builder, numElems): return builder.StartVector(4, numElems, 4)
105
- def GetTableStatsResponseStartVipsVector(builder, numElems):
106
- """This method is deprecated. Please switch to Start."""
107
- return StartVipsVector(builder, numElems)
108
- def End(builder): return builder.EndObject()
109
- def GetTableStatsResponseEnd(builder):
110
- """This method is deprecated. Please switch to End."""
111
- return End(builder)
@@ -1,112 +0,0 @@
1
- # automatically generated by the FlatBuffers compiler, do not modify
2
-
3
- # namespace: tabular
4
-
5
- import flatbuffers
6
- from flatbuffers.compat import import_numpy
7
- np = import_numpy()
8
-
9
- # used by `ListSchemas` and `ListTables` API
10
- class ObjectDetails(object):
11
- __slots__ = ['_tab']
12
-
13
- @classmethod
14
- def GetRootAs(cls, buf, offset=0):
15
- n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
16
- x = ObjectDetails()
17
- x.Init(buf, n + offset)
18
- return x
19
-
20
- @classmethod
21
- def GetRootAsObjectDetails(cls, buf, offset=0):
22
- """This method is deprecated. Please switch to GetRootAs."""
23
- return cls.GetRootAs(buf, offset)
24
- # ObjectDetails
25
- def Init(self, buf, pos):
26
- self._tab = flatbuffers.table.Table(buf, pos)
27
-
28
- # ObjectDetails
29
- def Name(self):
30
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
31
- if o != 0:
32
- return self._tab.String(o + self._tab.Pos)
33
- return None
34
-
35
- # ObjectDetails
36
- def Properties(self):
37
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
38
- if o != 0:
39
- return self._tab.String(o + self._tab.Pos)
40
- return None
41
-
42
- # ObjectDetails
43
- def Handle(self):
44
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
45
- if o != 0:
46
- return self._tab.String(o + self._tab.Pos)
47
- return None
48
-
49
- # ObjectDetails
50
- def NumRows(self):
51
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
52
- if o != 0:
53
- return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
54
- return 0
55
-
56
- # ObjectDetails
57
- def SizeInBytes(self):
58
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
59
- if o != 0:
60
- return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
61
- return 0
62
-
63
- # ObjectDetails
64
- def NumPartitions(self):
65
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(14))
66
- if o != 0:
67
- return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
68
- return 0
69
-
70
- # ObjectDetails
71
- def SortingKeyEnabled(self):
72
- o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(16))
73
- if o != 0:
74
- return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
75
- return False
76
-
77
- def Start(builder): builder.StartObject(7)
78
- def ObjectDetailsStart(builder):
79
- """This method is deprecated. Please switch to Start."""
80
- return Start(builder)
81
- def AddName(builder, name): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(name), 0)
82
- def ObjectDetailsAddName(builder, name):
83
- """This method is deprecated. Please switch to AddName."""
84
- return AddName(builder, name)
85
- def AddProperties(builder, properties): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(properties), 0)
86
- def ObjectDetailsAddProperties(builder, properties):
87
- """This method is deprecated. Please switch to AddProperties."""
88
- return AddProperties(builder, properties)
89
- def AddHandle(builder, handle): builder.PrependUOffsetTRelativeSlot(2, flatbuffers.number_types.UOffsetTFlags.py_type(handle), 0)
90
- def ObjectDetailsAddHandle(builder, handle):
91
- """This method is deprecated. Please switch to AddHandle."""
92
- return AddHandle(builder, handle)
93
- def AddNumRows(builder, numRows): builder.PrependUint64Slot(3, numRows, 0)
94
- def ObjectDetailsAddNumRows(builder, numRows):
95
- """This method is deprecated. Please switch to AddNumRows."""
96
- return AddNumRows(builder, numRows)
97
- def AddSizeInBytes(builder, sizeInBytes): builder.PrependUint64Slot(4, sizeInBytes, 0)
98
- def ObjectDetailsAddSizeInBytes(builder, sizeInBytes):
99
- """This method is deprecated. Please switch to AddSizeInBytes."""
100
- return AddSizeInBytes(builder, sizeInBytes)
101
- def AddNumPartitions(builder, numPartitions): builder.PrependUint64Slot(5, numPartitions, 0)
102
- def ObjectDetailsAddNumPartitions(builder, numPartitions):
103
- """This method is deprecated. Please switch to AddNumPartitions."""
104
- return AddNumPartitions(builder, numPartitions)
105
- def AddSortingKeyEnabled(builder, sortingKeyEnabled): builder.PrependBoolSlot(6, sortingKeyEnabled, 0)
106
- def ObjectDetailsAddSortingKeyEnabled(builder, sortingKeyEnabled):
107
- """This method is deprecated. Please switch to AddSortingKeyEnabled."""
108
- return AddSortingKeyEnabled(builder, sortingKeyEnabled)
109
- def End(builder): return builder.EndObject()
110
- def ObjectDetailsEnd(builder):
111
- """This method is deprecated. Please switch to End."""
112
- return End(builder)