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.
- vastdb/_internal.py +170 -78
- vastdb/bench/test_perf.py +2 -2
- vastdb/config.py +3 -0
- vastdb/errors.py +6 -0
- vastdb/features.py +9 -0
- vastdb/schema.py +5 -3
- vastdb/table.py +76 -15
- vastdb/tests/test_imports.py +70 -1
- vastdb/tests/test_tables.py +217 -0
- vastdb/tests/util.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Aggregate.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Call.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/CaseFragment.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Cast.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ConditionalCase.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Filter.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Grouping.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Join.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/KeyValue.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Limit.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ListLiteral.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Literal.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralColumn.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralRelation.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/MapKey.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/MapLiteral.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/OrderBy.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Plan.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Project.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SetOperation.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SimpleCase.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SortKey.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Source.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StructLiteral.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/WindowCall.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryBatch.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryEncoding.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Field.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Footer.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Message.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/RecordBatch.py +3 -3
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Schema.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseMatrixIndexCSX.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensor.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndexCOO.py +2 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndexCSF.py +4 -4
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Tensor.py +2 -2
- vastdb/vast_flatbuf/tabular/ColumnDetails.py +56 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateProjectionRequest.py +1 -1
- vastdb/vast_flatbuf/tabular/FilterString.py +45 -0
- vastdb/vast_flatbuf/tabular/GetRowColumnSecurityResponse.py +166 -0
- vastdb/vast_flatbuf/tabular/GetTableStatsResponse.py +178 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ImportDataRequest.py +34 -1
- vastdb/vast_flatbuf/tabular/KeyName.py +45 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListProjectionsResponse.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListSchemasResponse.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListTablesResponse.py +1 -1
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ListViewsResponse.py +1 -1
- vastdb/vast_flatbuf/tabular/NameString.py +45 -0
- vastdb/vast_flatbuf/tabular/ObjectDetails.py +168 -0
- {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/METADATA +1 -1
- vastdb-1.3.8.dist-info/RECORD +216 -0
- vastdb-1.3.8.dist-info/top_level.txt +1 -0
- vast_flatbuf/tabular/GetTableStatsResponse.py +0 -111
- vast_flatbuf/tabular/ObjectDetails.py +0 -112
- vastdb-1.3.6.dist-info/RECORD +0 -211
- vastdb-1.3.6.dist-info/top_level.txt +0 -2
- {vast_flatbuf → vastdb/vast_flatbuf}/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ArraySlice.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ArraySubscript.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/BinaryLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/BooleanLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Bound.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ConcreteBoundImpl.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/CurrentRow.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DateLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DecimalLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Deref.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/DurationLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Expression.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/ExpressionImpl.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FieldIndex.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FieldRef.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/FixedSizeBinaryLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float16Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float32Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Float64Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Following.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Frame.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int16Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int32Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int64Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Int8Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralDaysMilliseconds.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralImpl.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/IntervalLiteralMonths.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/JoinKind.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/LiteralImpl.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Ordering.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Preceding.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/RelId.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Relation.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/RelationImpl.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/SetOpKind.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StringLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/StructField.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/TimeLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/TimestampLiteral.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt16Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt32Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt64Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/UInt8Literal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/Unbounded.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/computeir/flatbuf/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Binary.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Block.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/BodyCompression.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/BodyCompressionMethod.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Bool.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Buffer.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/CompressionType.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Date.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DateUnit.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Decimal.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/DictionaryKind.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Duration.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Endianness.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Feature.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FieldNode.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FixedSizeBinary.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FixedSizeList.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/FloatingPoint.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Int.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Interval.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/IntervalUnit.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/KeyValue.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeBinary.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeList.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/LargeUtf8.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/List.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Map.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/MessageHeader.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/MetadataVersion.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Null.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Precision.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseMatrixCompressedAxis.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/SparseTensorIndex.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Struct_.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/TensorDim.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Time.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/TimeUnit.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Timestamp.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Type.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Union.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/UnionMode.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/Utf8.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/org/apache/arrow/flatbuf/__init__.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterColumnRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterProjectionTableRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterSchemaRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/AlterTableRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/Column.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/ColumnType.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateSchemaRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/CreateViewRequest.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/GetProjectionTableStatsResponse.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/S3File.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/VipRange.py +0 -0
- {vast_flatbuf → vastdb/vast_flatbuf}/tabular/__init__.py +0 -0
- {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/LICENSE +0 -0
- {vastdb-1.3.6.dist-info → vastdb-1.3.8.dist-info}/WHEEL +0 -0
|
@@ -32,7 +32,7 @@ class Join(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -44,7 +44,7 @@ class Join(object):
|
|
|
44
44
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
45
45
|
if o != 0:
|
|
46
46
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
47
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
47
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
48
48
|
obj = Relation()
|
|
49
49
|
obj.Init(self._tab.Bytes, x)
|
|
50
50
|
return obj
|
|
@@ -56,7 +56,7 @@ class Join(object):
|
|
|
56
56
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
57
57
|
if o != 0:
|
|
58
58
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
59
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
59
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
60
60
|
obj = Relation()
|
|
61
61
|
obj.Init(self._tab.Bytes, x)
|
|
62
62
|
return obj
|
|
@@ -70,7 +70,7 @@ class Join(object):
|
|
|
70
70
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
|
|
71
71
|
if o != 0:
|
|
72
72
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
73
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
73
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
74
74
|
obj = Expression()
|
|
75
75
|
obj.Init(self._tab.Bytes, x)
|
|
76
76
|
return obj
|
|
@@ -29,7 +29,7 @@ class KeyValue(object):
|
|
|
29
29
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
30
30
|
if o != 0:
|
|
31
31
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
32
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
32
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
33
33
|
obj = Literal()
|
|
34
34
|
obj.Init(self._tab.Bytes, x)
|
|
35
35
|
return obj
|
|
@@ -40,7 +40,7 @@ class KeyValue(object):
|
|
|
40
40
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
41
41
|
if o != 0:
|
|
42
42
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
43
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
43
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
44
44
|
obj = Literal()
|
|
45
45
|
obj.Init(self._tab.Bytes, x)
|
|
46
46
|
return obj
|
|
@@ -32,7 +32,7 @@ class Limit(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -44,7 +44,7 @@ class Limit(object):
|
|
|
44
44
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
45
45
|
if o != 0:
|
|
46
46
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
47
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
47
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
48
48
|
obj = Relation()
|
|
49
49
|
obj.Init(self._tab.Bytes, x)
|
|
50
50
|
return obj
|
|
@@ -31,7 +31,7 @@ class ListLiteral(object):
|
|
|
31
31
|
x = self._tab.Vector(o)
|
|
32
32
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
33
33
|
x = self._tab.Indirect(x)
|
|
34
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
34
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
35
35
|
obj = Literal()
|
|
36
36
|
obj.Init(self._tab.Bytes, x)
|
|
37
37
|
return obj
|
|
@@ -48,7 +48,7 @@ class Literal(object):
|
|
|
48
48
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
49
49
|
if o != 0:
|
|
50
50
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
51
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
51
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
52
52
|
obj = Field()
|
|
53
53
|
obj.Init(self._tab.Bytes, x)
|
|
54
54
|
return obj
|
|
@@ -33,7 +33,7 @@ class LiteralColumn(object):
|
|
|
33
33
|
x = self._tab.Vector(o)
|
|
34
34
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
35
35
|
x = self._tab.Indirect(x)
|
|
36
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
36
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
37
37
|
obj = Literal()
|
|
38
38
|
obj.Init(self._tab.Bytes, x)
|
|
39
39
|
return obj
|
|
@@ -32,7 +32,7 @@ class LiteralRelation(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -46,7 +46,7 @@ class LiteralRelation(object):
|
|
|
46
46
|
x = self._tab.Vector(o)
|
|
47
47
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
48
48
|
x = self._tab.Indirect(x)
|
|
49
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.LiteralColumn import LiteralColumn
|
|
49
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.LiteralColumn import LiteralColumn
|
|
50
50
|
obj = LiteralColumn()
|
|
51
51
|
obj.Init(self._tab.Bytes, x)
|
|
52
52
|
return obj
|
|
@@ -31,7 +31,7 @@ class MapKey(object):
|
|
|
31
31
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
32
32
|
if o != 0:
|
|
33
33
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
34
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
34
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
35
35
|
obj = Expression()
|
|
36
36
|
obj.Init(self._tab.Bytes, x)
|
|
37
37
|
return obj
|
|
@@ -31,7 +31,7 @@ class MapLiteral(object):
|
|
|
31
31
|
x = self._tab.Vector(o)
|
|
32
32
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
33
33
|
x = self._tab.Indirect(x)
|
|
34
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.KeyValue import KeyValue
|
|
34
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.KeyValue import KeyValue
|
|
35
35
|
obj = KeyValue()
|
|
36
36
|
obj.Init(self._tab.Bytes, x)
|
|
37
37
|
return obj
|
|
@@ -32,7 +32,7 @@ class OrderBy(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -44,7 +44,7 @@ class OrderBy(object):
|
|
|
44
44
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
45
45
|
if o != 0:
|
|
46
46
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
47
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
47
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
48
48
|
obj = Relation()
|
|
49
49
|
obj.Init(self._tab.Bytes, x)
|
|
50
50
|
return obj
|
|
@@ -59,7 +59,7 @@ class OrderBy(object):
|
|
|
59
59
|
x = self._tab.Vector(o)
|
|
60
60
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
61
61
|
x = self._tab.Indirect(x)
|
|
62
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.SortKey import SortKey
|
|
62
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.SortKey import SortKey
|
|
63
63
|
obj = SortKey()
|
|
64
64
|
obj.Init(self._tab.Bytes, x)
|
|
65
65
|
return obj
|
|
@@ -33,7 +33,7 @@ class Plan(object):
|
|
|
33
33
|
x = self._tab.Vector(o)
|
|
34
34
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
35
35
|
x = self._tab.Indirect(x)
|
|
36
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
36
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
37
37
|
obj = Relation()
|
|
38
38
|
obj.Init(self._tab.Bytes, x)
|
|
39
39
|
return obj
|
|
@@ -32,7 +32,7 @@ class Project(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -44,7 +44,7 @@ class Project(object):
|
|
|
44
44
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
45
45
|
if o != 0:
|
|
46
46
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
47
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
47
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
48
48
|
obj = Relation()
|
|
49
49
|
obj.Init(self._tab.Bytes, x)
|
|
50
50
|
return obj
|
|
@@ -59,7 +59,7 @@ class Project(object):
|
|
|
59
59
|
x = self._tab.Vector(o)
|
|
60
60
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
61
61
|
x = self._tab.Indirect(x)
|
|
62
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
62
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
63
63
|
obj = Expression()
|
|
64
64
|
obj.Init(self._tab.Bytes, x)
|
|
65
65
|
return obj
|
|
@@ -32,7 +32,7 @@ class SetOperation(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -46,7 +46,7 @@ class SetOperation(object):
|
|
|
46
46
|
x = self._tab.Vector(o)
|
|
47
47
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
48
48
|
x = self._tab.Indirect(x)
|
|
49
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
49
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Relation import Relation
|
|
50
50
|
obj = Relation()
|
|
51
51
|
obj.Init(self._tab.Bytes, x)
|
|
52
52
|
return obj
|
|
@@ -31,7 +31,7 @@ class SimpleCase(object):
|
|
|
31
31
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
32
32
|
if o != 0:
|
|
33
33
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
34
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
34
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
35
35
|
obj = Expression()
|
|
36
36
|
obj.Init(self._tab.Bytes, x)
|
|
37
37
|
return obj
|
|
@@ -45,7 +45,7 @@ class SimpleCase(object):
|
|
|
45
45
|
x = self._tab.Vector(o)
|
|
46
46
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
47
47
|
x = self._tab.Indirect(x)
|
|
48
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.CaseFragment import CaseFragment
|
|
48
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.CaseFragment import CaseFragment
|
|
49
49
|
obj = CaseFragment()
|
|
50
50
|
obj.Init(self._tab.Bytes, x)
|
|
51
51
|
return obj
|
|
@@ -69,7 +69,7 @@ class SimpleCase(object):
|
|
|
69
69
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
70
70
|
if o != 0:
|
|
71
71
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
72
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
72
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
73
73
|
obj = Expression()
|
|
74
74
|
obj.Init(self._tab.Bytes, x)
|
|
75
75
|
return obj
|
|
@@ -30,7 +30,7 @@ class SortKey(object):
|
|
|
30
30
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
31
31
|
if o != 0:
|
|
32
32
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
33
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
33
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
34
34
|
obj = Expression()
|
|
35
35
|
obj.Init(self._tab.Bytes, x)
|
|
36
36
|
return obj
|
|
@@ -32,7 +32,7 @@ class Source(object):
|
|
|
32
32
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
33
33
|
if o != 0:
|
|
34
34
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
35
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
35
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.RelId import RelId
|
|
36
36
|
obj = RelId()
|
|
37
37
|
obj.Init(self._tab.Bytes, x)
|
|
38
38
|
return obj
|
|
@@ -56,7 +56,7 @@ class Source(object):
|
|
|
56
56
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
57
57
|
if o != 0:
|
|
58
58
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
59
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
59
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
60
60
|
obj = Expression()
|
|
61
61
|
obj.Init(self._tab.Bytes, x)
|
|
62
62
|
return obj
|
|
@@ -68,7 +68,7 @@ class Source(object):
|
|
|
68
68
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
|
|
69
69
|
if o != 0:
|
|
70
70
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
71
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Schema import Schema
|
|
71
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Schema import Schema
|
|
72
72
|
obj = Schema()
|
|
73
73
|
obj.Init(self._tab.Bytes, x)
|
|
74
74
|
return obj
|
|
@@ -89,7 +89,7 @@ class Source(object):
|
|
|
89
89
|
x = self._tab.Vector(o)
|
|
90
90
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
91
91
|
x = self._tab.Indirect(x)
|
|
92
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.FieldIndex import FieldIndex
|
|
92
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.FieldIndex import FieldIndex
|
|
93
93
|
obj = FieldIndex()
|
|
94
94
|
obj.Init(self._tab.Bytes, x)
|
|
95
95
|
return obj
|
|
@@ -33,7 +33,7 @@ class StructLiteral(object):
|
|
|
33
33
|
x = self._tab.Vector(o)
|
|
34
34
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
35
35
|
x = self._tab.Indirect(x)
|
|
36
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
36
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Literal import Literal
|
|
37
37
|
obj = Literal()
|
|
38
38
|
obj.Init(self._tab.Bytes, x)
|
|
39
39
|
return obj
|
|
@@ -31,7 +31,7 @@ class WindowCall(object):
|
|
|
31
31
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
32
32
|
if o != 0:
|
|
33
33
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
34
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
34
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
35
35
|
obj = Expression()
|
|
36
36
|
obj.Init(self._tab.Bytes, x)
|
|
37
37
|
return obj
|
|
@@ -53,7 +53,7 @@ class WindowCall(object):
|
|
|
53
53
|
x = self._tab.Vector(o)
|
|
54
54
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
55
55
|
x = self._tab.Indirect(x)
|
|
56
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
56
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.Expression import Expression
|
|
57
57
|
obj = Expression()
|
|
58
58
|
obj.Init(self._tab.Bytes, x)
|
|
59
59
|
return obj
|
|
@@ -79,7 +79,7 @@ class WindowCall(object):
|
|
|
79
79
|
x = self._tab.Vector(o)
|
|
80
80
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
81
81
|
x = self._tab.Indirect(x)
|
|
82
|
-
from vast_flatbuf.org.apache.arrow.computeir.flatbuf.SortKey import SortKey
|
|
82
|
+
from vastdb.vast_flatbuf.org.apache.arrow.computeir.flatbuf.SortKey import SortKey
|
|
83
83
|
obj = SortKey()
|
|
84
84
|
obj.Init(self._tab.Bytes, x)
|
|
85
85
|
return obj
|
|
@@ -42,7 +42,7 @@ class DictionaryBatch(object):
|
|
|
42
42
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
43
43
|
if o != 0:
|
|
44
44
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
45
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.RecordBatch import RecordBatch
|
|
45
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.RecordBatch import RecordBatch
|
|
46
46
|
obj = RecordBatch()
|
|
47
47
|
obj.Init(self._tab.Bytes, x)
|
|
48
48
|
return obj
|
|
@@ -44,7 +44,7 @@ class DictionaryEncoding(object):
|
|
|
44
44
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
45
45
|
if o != 0:
|
|
46
46
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
47
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
47
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
48
48
|
obj = Int()
|
|
49
49
|
obj.Init(self._tab.Bytes, x)
|
|
50
50
|
return obj
|
|
@@ -67,7 +67,7 @@ class Field(object):
|
|
|
67
67
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
|
|
68
68
|
if o != 0:
|
|
69
69
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
70
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.DictionaryEncoding import DictionaryEncoding
|
|
70
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.DictionaryEncoding import DictionaryEncoding
|
|
71
71
|
obj = DictionaryEncoding()
|
|
72
72
|
obj.Init(self._tab.Bytes, x)
|
|
73
73
|
return obj
|
|
@@ -82,7 +82,7 @@ class Field(object):
|
|
|
82
82
|
x = self._tab.Vector(o)
|
|
83
83
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
84
84
|
x = self._tab.Indirect(x)
|
|
85
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
85
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
86
86
|
obj = Field()
|
|
87
87
|
obj.Init(self._tab.Bytes, x)
|
|
88
88
|
return obj
|
|
@@ -108,7 +108,7 @@ class Field(object):
|
|
|
108
108
|
x = self._tab.Vector(o)
|
|
109
109
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
110
110
|
x = self._tab.Indirect(x)
|
|
111
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
111
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
112
112
|
obj = KeyValue()
|
|
113
113
|
obj.Init(self._tab.Bytes, x)
|
|
114
114
|
return obj
|
|
@@ -39,7 +39,7 @@ class Footer(object):
|
|
|
39
39
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
40
40
|
if o != 0:
|
|
41
41
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
42
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Schema import Schema
|
|
42
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Schema import Schema
|
|
43
43
|
obj = Schema()
|
|
44
44
|
obj.Init(self._tab.Bytes, x)
|
|
45
45
|
return obj
|
|
@@ -51,7 +51,7 @@ class Footer(object):
|
|
|
51
51
|
if o != 0:
|
|
52
52
|
x = self._tab.Vector(o)
|
|
53
53
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 24
|
|
54
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Block import Block
|
|
54
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Block import Block
|
|
55
55
|
obj = Block()
|
|
56
56
|
obj.Init(self._tab.Bytes, x)
|
|
57
57
|
return obj
|
|
@@ -75,7 +75,7 @@ class Footer(object):
|
|
|
75
75
|
if o != 0:
|
|
76
76
|
x = self._tab.Vector(o)
|
|
77
77
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 24
|
|
78
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Block import Block
|
|
78
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Block import Block
|
|
79
79
|
obj = Block()
|
|
80
80
|
obj.Init(self._tab.Bytes, x)
|
|
81
81
|
return obj
|
|
@@ -101,7 +101,7 @@ class Footer(object):
|
|
|
101
101
|
x = self._tab.Vector(o)
|
|
102
102
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
103
103
|
x = self._tab.Indirect(x)
|
|
104
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
104
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
105
105
|
obj = KeyValue()
|
|
106
106
|
obj.Init(self._tab.Bytes, x)
|
|
107
107
|
return obj
|
|
@@ -62,7 +62,7 @@ class Message(object):
|
|
|
62
62
|
x = self._tab.Vector(o)
|
|
63
63
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
64
64
|
x = self._tab.Indirect(x)
|
|
65
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
65
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
66
66
|
obj = KeyValue()
|
|
67
67
|
obj.Init(self._tab.Bytes, x)
|
|
68
68
|
return obj
|
|
@@ -43,7 +43,7 @@ class RecordBatch(object):
|
|
|
43
43
|
if o != 0:
|
|
44
44
|
x = self._tab.Vector(o)
|
|
45
45
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 16
|
|
46
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.FieldNode import FieldNode
|
|
46
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.FieldNode import FieldNode
|
|
47
47
|
obj = FieldNode()
|
|
48
48
|
obj.Init(self._tab.Bytes, x)
|
|
49
49
|
return obj
|
|
@@ -73,7 +73,7 @@ class RecordBatch(object):
|
|
|
73
73
|
if o != 0:
|
|
74
74
|
x = self._tab.Vector(o)
|
|
75
75
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 16
|
|
76
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
76
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
77
77
|
obj = Buffer()
|
|
78
78
|
obj.Init(self._tab.Bytes, x)
|
|
79
79
|
return obj
|
|
@@ -97,7 +97,7 @@ class RecordBatch(object):
|
|
|
97
97
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
|
|
98
98
|
if o != 0:
|
|
99
99
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
100
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.BodyCompression import BodyCompression
|
|
100
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.BodyCompression import BodyCompression
|
|
101
101
|
obj = BodyCompression()
|
|
102
102
|
obj.Init(self._tab.Bytes, x)
|
|
103
103
|
return obj
|
|
@@ -43,7 +43,7 @@ class Schema(object):
|
|
|
43
43
|
x = self._tab.Vector(o)
|
|
44
44
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
45
45
|
x = self._tab.Indirect(x)
|
|
46
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
46
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Field import Field
|
|
47
47
|
obj = Field()
|
|
48
48
|
obj.Init(self._tab.Bytes, x)
|
|
49
49
|
return obj
|
|
@@ -68,7 +68,7 @@ class Schema(object):
|
|
|
68
68
|
x = self._tab.Vector(o)
|
|
69
69
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
70
70
|
x = self._tab.Indirect(x)
|
|
71
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
71
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.KeyValue import KeyValue
|
|
72
72
|
obj = KeyValue()
|
|
73
73
|
obj.Init(self._tab.Bytes, x)
|
|
74
74
|
return obj
|
|
@@ -39,7 +39,7 @@ class SparseMatrixIndexCSX(object):
|
|
|
39
39
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
40
40
|
if o != 0:
|
|
41
41
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
42
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
42
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
43
43
|
obj = Int()
|
|
44
44
|
obj.Init(self._tab.Bytes, x)
|
|
45
45
|
return obj
|
|
@@ -73,7 +73,7 @@ class SparseMatrixIndexCSX(object):
|
|
|
73
73
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
74
74
|
if o != 0:
|
|
75
75
|
x = o + self._tab.Pos
|
|
76
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
76
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
77
77
|
obj = Buffer()
|
|
78
78
|
obj.Init(self._tab.Bytes, x)
|
|
79
79
|
return obj
|
|
@@ -85,7 +85,7 @@ class SparseMatrixIndexCSX(object):
|
|
|
85
85
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
|
|
86
86
|
if o != 0:
|
|
87
87
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
88
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
88
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
89
89
|
obj = Int()
|
|
90
90
|
obj.Init(self._tab.Bytes, x)
|
|
91
91
|
return obj
|
|
@@ -105,7 +105,7 @@ class SparseMatrixIndexCSX(object):
|
|
|
105
105
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
|
|
106
106
|
if o != 0:
|
|
107
107
|
x = o + self._tab.Pos
|
|
108
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
108
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
109
109
|
obj = Buffer()
|
|
110
110
|
obj.Init(self._tab.Bytes, x)
|
|
111
111
|
return obj
|
|
@@ -52,7 +52,7 @@ class SparseTensor(object):
|
|
|
52
52
|
x = self._tab.Vector(o)
|
|
53
53
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
54
54
|
x = self._tab.Indirect(x)
|
|
55
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.TensorDim import TensorDim
|
|
55
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.TensorDim import TensorDim
|
|
56
56
|
obj = TensorDim()
|
|
57
57
|
obj.Init(self._tab.Bytes, x)
|
|
58
58
|
return obj
|
|
@@ -102,7 +102,7 @@ class SparseTensor(object):
|
|
|
102
102
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(16))
|
|
103
103
|
if o != 0:
|
|
104
104
|
x = o + self._tab.Pos
|
|
105
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
105
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
106
106
|
obj = Buffer()
|
|
107
107
|
obj.Init(self._tab.Bytes, x)
|
|
108
108
|
return obj
|
|
@@ -62,7 +62,7 @@ class SparseTensorIndexCOO(object):
|
|
|
62
62
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
63
63
|
if o != 0:
|
|
64
64
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
65
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
65
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
66
66
|
obj = Int()
|
|
67
67
|
obj.Init(self._tab.Bytes, x)
|
|
68
68
|
return obj
|
|
@@ -103,7 +103,7 @@ class SparseTensorIndexCOO(object):
|
|
|
103
103
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
104
104
|
if o != 0:
|
|
105
105
|
x = o + self._tab.Pos
|
|
106
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
106
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
107
107
|
obj = Buffer()
|
|
108
108
|
obj.Init(self._tab.Bytes, x)
|
|
109
109
|
return obj
|
|
@@ -61,7 +61,7 @@ class SparseTensorIndexCSF(object):
|
|
|
61
61
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
62
62
|
if o != 0:
|
|
63
63
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
64
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
64
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
65
65
|
obj = Int()
|
|
66
66
|
obj.Init(self._tab.Bytes, x)
|
|
67
67
|
return obj
|
|
@@ -87,7 +87,7 @@ class SparseTensorIndexCSF(object):
|
|
|
87
87
|
if o != 0:
|
|
88
88
|
x = self._tab.Vector(o)
|
|
89
89
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 16
|
|
90
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
90
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
91
91
|
obj = Buffer()
|
|
92
92
|
obj.Init(self._tab.Bytes, x)
|
|
93
93
|
return obj
|
|
@@ -111,7 +111,7 @@ class SparseTensorIndexCSF(object):
|
|
|
111
111
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
|
|
112
112
|
if o != 0:
|
|
113
113
|
x = self._tab.Indirect(o + self._tab.Pos)
|
|
114
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
114
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Int import Int
|
|
115
115
|
obj = Int()
|
|
116
116
|
obj.Init(self._tab.Bytes, x)
|
|
117
117
|
return obj
|
|
@@ -134,7 +134,7 @@ class SparseTensorIndexCSF(object):
|
|
|
134
134
|
if o != 0:
|
|
135
135
|
x = self._tab.Vector(o)
|
|
136
136
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 16
|
|
137
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
137
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
138
138
|
obj = Buffer()
|
|
139
139
|
obj.Init(self._tab.Bytes, x)
|
|
140
140
|
return obj
|
|
@@ -51,7 +51,7 @@ class Tensor(object):
|
|
|
51
51
|
x = self._tab.Vector(o)
|
|
52
52
|
x += flatbuffers.number_types.UOffsetTFlags.py_type(j) * 4
|
|
53
53
|
x = self._tab.Indirect(x)
|
|
54
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.TensorDim import TensorDim
|
|
54
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.TensorDim import TensorDim
|
|
55
55
|
obj = TensorDim()
|
|
56
56
|
obj.Init(self._tab.Bytes, x)
|
|
57
57
|
return obj
|
|
@@ -104,7 +104,7 @@ class Tensor(object):
|
|
|
104
104
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
|
|
105
105
|
if o != 0:
|
|
106
106
|
x = o + self._tab.Pos
|
|
107
|
-
from vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
107
|
+
from vastdb.vast_flatbuf.org.apache.arrow.flatbuf.Buffer import Buffer
|
|
108
108
|
obj = Buffer()
|
|
109
109
|
obj.Init(self._tab.Bytes, x)
|
|
110
110
|
return obj
|