vastdb 0.0.4.0__py3-none-any.whl → 0.0.5.1__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.
- vast_protobuf/__init__.py +0 -0
- vast_protobuf/substrait/__init__.py +0 -0
- vast_protobuf/substrait/algebra_pb2.py +1344 -0
- vast_protobuf/substrait/capabilities_pb2.py +46 -0
- vast_protobuf/substrait/ddl_pb2.py +57 -0
- vast_protobuf/substrait/extended_expression_pb2.py +49 -0
- vast_protobuf/substrait/extensions/__init__.py +0 -0
- vast_protobuf/substrait/extensions/extensions_pb2.py +89 -0
- vast_protobuf/substrait/function_pb2.py +168 -0
- vast_protobuf/substrait/parameterized_types_pb2.py +181 -0
- vast_protobuf/substrait/plan_pb2.py +67 -0
- vast_protobuf/substrait/type_expressions_pb2.py +198 -0
- vast_protobuf/substrait/type_pb2.py +350 -0
- vast_protobuf/tabular/__init__.py +0 -0
- vast_protobuf/tabular/rpc_pb2.py +344 -0
- vastdb/api.py +113 -52
- {vastdb-0.0.4.0.dist-info → vastdb-0.0.5.1.dist-info}/METADATA +1 -1
- {vastdb-0.0.4.0.dist-info → vastdb-0.0.5.1.dist-info}/RECORD +21 -6
- {vastdb-0.0.4.0.dist-info → vastdb-0.0.5.1.dist-info}/top_level.txt +1 -0
- {vastdb-0.0.4.0.dist-info → vastdb-0.0.5.1.dist-info}/LICENSE +0 -0
- {vastdb-0.0.4.0.dist-info → vastdb-0.0.5.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: vast_protobuf/substrait/plan.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
+
from google.protobuf import message as _message
|
|
8
|
+
from google.protobuf import reflection as _reflection
|
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from vast_protobuf.substrait import algebra_pb2 as vast__protobuf_dot_substrait_dot_algebra__pb2
|
|
16
|
+
from vast_protobuf.substrait.extensions import extensions_pb2 as vast__protobuf_dot_substrait_dot_extensions_dot_extensions__pb2
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"vast_protobuf/substrait/plan.proto\x12\tsubstrait\x1a%vast_protobuf/substrait/algebra.proto\x1a\x33vast_protobuf/substrait/extensions/extensions.proto\"X\n\x07PlanRel\x12\x1d\n\x03rel\x18\x01 \x01(\x0b\x32\x0e.substrait.RelH\x00\x12\"\n\x04root\x18\x02 \x01(\x0b\x32\x12.substrait.RelRootH\x00\x42\n\n\x08rel_type\"\xbc\x02\n\x04Plan\x12#\n\x07version\x18\x06 \x01(\x0b\x32\x12.substrait.Version\x12@\n\x0e\x65xtension_uris\x18\x01 \x03(\x0b\x32(.substrait.extensions.SimpleExtensionURI\x12\x44\n\nextensions\x18\x02 \x03(\x0b\x32\x30.substrait.extensions.SimpleExtensionDeclaration\x12%\n\trelations\x18\x03 \x03(\x0b\x32\x12.substrait.PlanRel\x12\x44\n\x13\x61\x64vanced_extensions\x18\x04 \x01(\x0b\x32\'.substrait.extensions.AdvancedExtension\x12\x1a\n\x12\x65xpected_type_urls\x18\x05 \x03(\t\"2\n\x0bPlanVersion\x12#\n\x07version\x18\x06 \x01(\x0b\x32\x12.substrait.Version\"o\n\x07Version\x12\x14\n\x0cmajor_number\x18\x01 \x01(\r\x12\x14\n\x0cminor_number\x18\x02 \x01(\r\x12\x14\n\x0cpatch_number\x18\x03 \x01(\r\x12\x10\n\x08git_hash\x18\x04 \x01(\t\x12\x10\n\x08producer\x18\x05 \x01(\tBW\n\x12io.substrait.protoP\x01Z*github.com/substrait-io/substrait-go/proto\xaa\x02\x12Substrait.Protobufb\x06proto3')
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
_PLANREL = DESCRIPTOR.message_types_by_name['PlanRel']
|
|
24
|
+
_PLAN = DESCRIPTOR.message_types_by_name['Plan']
|
|
25
|
+
_PLANVERSION = DESCRIPTOR.message_types_by_name['PlanVersion']
|
|
26
|
+
_VERSION = DESCRIPTOR.message_types_by_name['Version']
|
|
27
|
+
PlanRel = _reflection.GeneratedProtocolMessageType('PlanRel', (_message.Message,), {
|
|
28
|
+
'DESCRIPTOR' : _PLANREL,
|
|
29
|
+
'__module__' : 'vast_protobuf.substrait.plan_pb2'
|
|
30
|
+
# @@protoc_insertion_point(class_scope:substrait.PlanRel)
|
|
31
|
+
})
|
|
32
|
+
_sym_db.RegisterMessage(PlanRel)
|
|
33
|
+
|
|
34
|
+
Plan = _reflection.GeneratedProtocolMessageType('Plan', (_message.Message,), {
|
|
35
|
+
'DESCRIPTOR' : _PLAN,
|
|
36
|
+
'__module__' : 'vast_protobuf.substrait.plan_pb2'
|
|
37
|
+
# @@protoc_insertion_point(class_scope:substrait.Plan)
|
|
38
|
+
})
|
|
39
|
+
_sym_db.RegisterMessage(Plan)
|
|
40
|
+
|
|
41
|
+
PlanVersion = _reflection.GeneratedProtocolMessageType('PlanVersion', (_message.Message,), {
|
|
42
|
+
'DESCRIPTOR' : _PLANVERSION,
|
|
43
|
+
'__module__' : 'vast_protobuf.substrait.plan_pb2'
|
|
44
|
+
# @@protoc_insertion_point(class_scope:substrait.PlanVersion)
|
|
45
|
+
})
|
|
46
|
+
_sym_db.RegisterMessage(PlanVersion)
|
|
47
|
+
|
|
48
|
+
Version = _reflection.GeneratedProtocolMessageType('Version', (_message.Message,), {
|
|
49
|
+
'DESCRIPTOR' : _VERSION,
|
|
50
|
+
'__module__' : 'vast_protobuf.substrait.plan_pb2'
|
|
51
|
+
# @@protoc_insertion_point(class_scope:substrait.Version)
|
|
52
|
+
})
|
|
53
|
+
_sym_db.RegisterMessage(Version)
|
|
54
|
+
|
|
55
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
56
|
+
|
|
57
|
+
DESCRIPTOR._options = None
|
|
58
|
+
DESCRIPTOR._serialized_options = b'\n\022io.substrait.protoP\001Z*github.com/substrait-io/substrait-go/proto\252\002\022Substrait.Protobuf'
|
|
59
|
+
_PLANREL._serialized_start=141
|
|
60
|
+
_PLANREL._serialized_end=229
|
|
61
|
+
_PLAN._serialized_start=232
|
|
62
|
+
_PLAN._serialized_end=548
|
|
63
|
+
_PLANVERSION._serialized_start=550
|
|
64
|
+
_PLANVERSION._serialized_end=600
|
|
65
|
+
_VERSION._serialized_start=602
|
|
66
|
+
_VERSION._serialized_end=713
|
|
67
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: vast_protobuf/substrait/type_expressions.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
+
from google.protobuf import message as _message
|
|
8
|
+
from google.protobuf import reflection as _reflection
|
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from vast_protobuf.substrait import type_pb2 as vast__protobuf_dot_substrait_dot_type__pb2
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.vast_protobuf/substrait/type_expressions.proto\x12\tsubstrait\x1a\"vast_protobuf/substrait/type.proto\"\xc5 \n\x14\x44\x65rivationExpression\x12\'\n\x04\x62ool\x18\x01 \x01(\x0b\x32\x17.substrait.Type.BooleanH\x00\x12 \n\x02i8\x18\x02 \x01(\x0b\x32\x12.substrait.Type.I8H\x00\x12\"\n\x03i16\x18\x03 \x01(\x0b\x32\x13.substrait.Type.I16H\x00\x12\"\n\x03i32\x18\x05 \x01(\x0b\x32\x13.substrait.Type.I32H\x00\x12\"\n\x03i64\x18\x07 \x01(\x0b\x32\x13.substrait.Type.I64H\x00\x12$\n\x04\x66p32\x18\n \x01(\x0b\x32\x14.substrait.Type.FP32H\x00\x12$\n\x04\x66p64\x18\x0b \x01(\x0b\x32\x14.substrait.Type.FP64H\x00\x12(\n\x06string\x18\x0c \x01(\x0b\x32\x16.substrait.Type.StringH\x00\x12(\n\x06\x62inary\x18\r \x01(\x0b\x32\x16.substrait.Type.BinaryH\x00\x12.\n\ttimestamp\x18\x0e \x01(\x0b\x32\x19.substrait.Type.TimestampH\x00\x12$\n\x04\x64\x61te\x18\x10 \x01(\x0b\x32\x14.substrait.Type.DateH\x00\x12$\n\x04time\x18\x11 \x01(\x0b\x32\x14.substrait.Type.TimeH\x00\x12\x35\n\rinterval_year\x18\x13 \x01(\x0b\x32\x1c.substrait.Type.IntervalYearH\x00\x12\x33\n\x0cinterval_day\x18\x14 \x01(\x0b\x32\x1b.substrait.Type.IntervalDayH\x00\x12\x33\n\x0ctimestamp_tz\x18\x1d \x01(\x0b\x32\x1b.substrait.Type.TimestampTZH\x00\x12$\n\x04uuid\x18 \x01(\x0b\x32\x14.substrait.Type.UUIDH\x00\x12I\n\nfixed_char\x18\x15 \x01(\x0b\x32\x33.substrait.DerivationExpression.ExpressionFixedCharH\x00\x12\x44\n\x07varchar\x18\x16 \x01(\x0b\x32\x31.substrait.DerivationExpression.ExpressionVarCharH\x00\x12M\n\x0c\x66ixed_binary\x18\x17 \x01(\x0b\x32\x35.substrait.DerivationExpression.ExpressionFixedBinaryH\x00\x12\x44\n\x07\x64\x65\x63imal\x18\x18 \x01(\x0b\x32\x31.substrait.DerivationExpression.ExpressionDecimalH\x00\x12\x42\n\x06struct\x18\x19 \x01(\x0b\x32\x30.substrait.DerivationExpression.ExpressionStructH\x00\x12>\n\x04list\x18\x1b \x01(\x0b\x32..substrait.DerivationExpression.ExpressionListH\x00\x12<\n\x03map\x18\x1c \x01(\x0b\x32-.substrait.DerivationExpression.ExpressionMapH\x00\x12M\n\x0cuser_defined\x18\x1e \x01(\x0b\x32\x35.substrait.DerivationExpression.ExpressionUserDefinedH\x00\x12\"\n\x14user_defined_pointer\x18\x1f \x01(\rB\x02\x18\x01H\x00\x12\x1d\n\x13type_parameter_name\x18! \x01(\tH\x00\x12 \n\x16integer_parameter_name\x18\" \x01(\tH\x00\x12\x19\n\x0finteger_literal\x18# \x01(\x05H\x00\x12;\n\x08unary_op\x18$ \x01(\x0b\x32\'.substrait.DerivationExpression.UnaryOpH\x00\x12=\n\tbinary_op\x18% \x01(\x0b\x32(.substrait.DerivationExpression.BinaryOpH\x00\x12\x39\n\x07if_else\x18& \x01(\x0b\x32&.substrait.DerivationExpression.IfElseH\x00\x12G\n\x0ereturn_program\x18\' \x01(\x0b\x32-.substrait.DerivationExpression.ReturnProgramH\x00\x1a\x93\x01\n\x13\x45xpressionFixedChar\x12/\n\x06length\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x91\x01\n\x11\x45xpressionVarChar\x12/\n\x06length\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x95\x01\n\x15\x45xpressionFixedBinary\x12/\n\x06length\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\xc4\x01\n\x11\x45xpressionDecimal\x12.\n\x05scale\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x32\n\tprecision\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x03 \x01(\r\x12\x30\n\x0bnullability\x18\x04 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x8f\x01\n\x10\x45xpressionStruct\x12.\n\x05types\x18\x01 \x03(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1ah\n\x15\x45xpressionNamedStruct\x12\r\n\x05names\x18\x01 \x03(\t\x12@\n\x06struct\x18\x02 \x01(\x0b\x32\x30.substrait.DerivationExpression.ExpressionStruct\x1a\x8c\x01\n\x0e\x45xpressionList\x12-\n\x04type\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\xba\x01\n\rExpressionMap\x12,\n\x03key\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12.\n\x05value\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x19\n\x11variation_pointer\x18\x03 \x01(\r\x12\x30\n\x0bnullability\x18\x04 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1az\n\x15\x45xpressionUserDefined\x12\x14\n\x0ctype_pointer\x18\x01 \x01(\r\x12\x19\n\x11variation_pointer\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\xa9\x01\n\x06IfElse\x12\x35\n\x0cif_condition\x18\x01 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x32\n\tif_return\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12\x34\n\x0b\x65lse_return\x18\x03 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x1a\xca\x01\n\x07UnaryOp\x12\x44\n\x07op_type\x18\x01 \x01(\x0e\x32\x33.substrait.DerivationExpression.UnaryOp.UnaryOpType\x12,\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\"K\n\x0bUnaryOpType\x12\x1d\n\x19UNARY_OP_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19UNARY_OP_TYPE_BOOLEAN_NOT\x10\x01\x1a\xa0\x04\n\x08\x42inaryOp\x12\x46\n\x07op_type\x18\x01 \x01(\x0e\x32\x35.substrait.DerivationExpression.BinaryOp.BinaryOpType\x12-\n\x04\x61rg1\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x12-\n\x04\x61rg2\x18\x03 \x01(\x0b\x32\x1f.substrait.DerivationExpression\"\xed\x02\n\x0c\x42inaryOpType\x12\x1e\n\x1a\x42INARY_OP_TYPE_UNSPECIFIED\x10\x00\x12\x17\n\x13\x42INARY_OP_TYPE_PLUS\x10\x01\x12\x18\n\x14\x42INARY_OP_TYPE_MINUS\x10\x02\x12\x1b\n\x17\x42INARY_OP_TYPE_MULTIPLY\x10\x03\x12\x19\n\x15\x42INARY_OP_TYPE_DIVIDE\x10\x04\x12\x16\n\x12\x42INARY_OP_TYPE_MIN\x10\x05\x12\x16\n\x12\x42INARY_OP_TYPE_MAX\x10\x06\x12\x1f\n\x1b\x42INARY_OP_TYPE_GREATER_THAN\x10\x07\x12\x1c\n\x18\x42INARY_OP_TYPE_LESS_THAN\x10\x08\x12\x16\n\x12\x42INARY_OP_TYPE_AND\x10\t\x12\x15\n\x11\x42INARY_OP_TYPE_OR\x10\n\x12\x19\n\x15\x42INARY_OP_TYPE_EQUALS\x10\x0b\x12\x19\n\x15\x42INARY_OP_TYPE_COVERS\x10\x0c\x1a\xea\x01\n\rReturnProgram\x12M\n\x0b\x61ssignments\x18\x01 \x03(\x0b\x32\x38.substrait.DerivationExpression.ReturnProgram.Assignment\x12\x39\n\x10\x66inal_expression\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpression\x1aO\n\nAssignment\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x33\n\nexpression\x18\x02 \x01(\x0b\x32\x1f.substrait.DerivationExpressionB\x06\n\x04kindBW\n\x12io.substrait.protoP\x01Z*github.com/substrait-io/substrait-go/proto\xaa\x02\x12Substrait.Protobufb\x06proto3')
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
_DERIVATIONEXPRESSION = DESCRIPTOR.message_types_by_name['DerivationExpression']
|
|
23
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDCHAR = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionFixedChar']
|
|
24
|
+
_DERIVATIONEXPRESSION_EXPRESSIONVARCHAR = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionVarChar']
|
|
25
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDBINARY = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionFixedBinary']
|
|
26
|
+
_DERIVATIONEXPRESSION_EXPRESSIONDECIMAL = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionDecimal']
|
|
27
|
+
_DERIVATIONEXPRESSION_EXPRESSIONSTRUCT = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionStruct']
|
|
28
|
+
_DERIVATIONEXPRESSION_EXPRESSIONNAMEDSTRUCT = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionNamedStruct']
|
|
29
|
+
_DERIVATIONEXPRESSION_EXPRESSIONLIST = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionList']
|
|
30
|
+
_DERIVATIONEXPRESSION_EXPRESSIONMAP = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionMap']
|
|
31
|
+
_DERIVATIONEXPRESSION_EXPRESSIONUSERDEFINED = _DERIVATIONEXPRESSION.nested_types_by_name['ExpressionUserDefined']
|
|
32
|
+
_DERIVATIONEXPRESSION_IFELSE = _DERIVATIONEXPRESSION.nested_types_by_name['IfElse']
|
|
33
|
+
_DERIVATIONEXPRESSION_UNARYOP = _DERIVATIONEXPRESSION.nested_types_by_name['UnaryOp']
|
|
34
|
+
_DERIVATIONEXPRESSION_BINARYOP = _DERIVATIONEXPRESSION.nested_types_by_name['BinaryOp']
|
|
35
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM = _DERIVATIONEXPRESSION.nested_types_by_name['ReturnProgram']
|
|
36
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM_ASSIGNMENT = _DERIVATIONEXPRESSION_RETURNPROGRAM.nested_types_by_name['Assignment']
|
|
37
|
+
_DERIVATIONEXPRESSION_UNARYOP_UNARYOPTYPE = _DERIVATIONEXPRESSION_UNARYOP.enum_types_by_name['UnaryOpType']
|
|
38
|
+
_DERIVATIONEXPRESSION_BINARYOP_BINARYOPTYPE = _DERIVATIONEXPRESSION_BINARYOP.enum_types_by_name['BinaryOpType']
|
|
39
|
+
DerivationExpression = _reflection.GeneratedProtocolMessageType('DerivationExpression', (_message.Message,), {
|
|
40
|
+
|
|
41
|
+
'ExpressionFixedChar' : _reflection.GeneratedProtocolMessageType('ExpressionFixedChar', (_message.Message,), {
|
|
42
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONFIXEDCHAR,
|
|
43
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
44
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionFixedChar)
|
|
45
|
+
})
|
|
46
|
+
,
|
|
47
|
+
|
|
48
|
+
'ExpressionVarChar' : _reflection.GeneratedProtocolMessageType('ExpressionVarChar', (_message.Message,), {
|
|
49
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONVARCHAR,
|
|
50
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
51
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionVarChar)
|
|
52
|
+
})
|
|
53
|
+
,
|
|
54
|
+
|
|
55
|
+
'ExpressionFixedBinary' : _reflection.GeneratedProtocolMessageType('ExpressionFixedBinary', (_message.Message,), {
|
|
56
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONFIXEDBINARY,
|
|
57
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
58
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionFixedBinary)
|
|
59
|
+
})
|
|
60
|
+
,
|
|
61
|
+
|
|
62
|
+
'ExpressionDecimal' : _reflection.GeneratedProtocolMessageType('ExpressionDecimal', (_message.Message,), {
|
|
63
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONDECIMAL,
|
|
64
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
65
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionDecimal)
|
|
66
|
+
})
|
|
67
|
+
,
|
|
68
|
+
|
|
69
|
+
'ExpressionStruct' : _reflection.GeneratedProtocolMessageType('ExpressionStruct', (_message.Message,), {
|
|
70
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONSTRUCT,
|
|
71
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
72
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionStruct)
|
|
73
|
+
})
|
|
74
|
+
,
|
|
75
|
+
|
|
76
|
+
'ExpressionNamedStruct' : _reflection.GeneratedProtocolMessageType('ExpressionNamedStruct', (_message.Message,), {
|
|
77
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONNAMEDSTRUCT,
|
|
78
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
79
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionNamedStruct)
|
|
80
|
+
})
|
|
81
|
+
,
|
|
82
|
+
|
|
83
|
+
'ExpressionList' : _reflection.GeneratedProtocolMessageType('ExpressionList', (_message.Message,), {
|
|
84
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONLIST,
|
|
85
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
86
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionList)
|
|
87
|
+
})
|
|
88
|
+
,
|
|
89
|
+
|
|
90
|
+
'ExpressionMap' : _reflection.GeneratedProtocolMessageType('ExpressionMap', (_message.Message,), {
|
|
91
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONMAP,
|
|
92
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
93
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionMap)
|
|
94
|
+
})
|
|
95
|
+
,
|
|
96
|
+
|
|
97
|
+
'ExpressionUserDefined' : _reflection.GeneratedProtocolMessageType('ExpressionUserDefined', (_message.Message,), {
|
|
98
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_EXPRESSIONUSERDEFINED,
|
|
99
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
100
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ExpressionUserDefined)
|
|
101
|
+
})
|
|
102
|
+
,
|
|
103
|
+
|
|
104
|
+
'IfElse' : _reflection.GeneratedProtocolMessageType('IfElse', (_message.Message,), {
|
|
105
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_IFELSE,
|
|
106
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
107
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.IfElse)
|
|
108
|
+
})
|
|
109
|
+
,
|
|
110
|
+
|
|
111
|
+
'UnaryOp' : _reflection.GeneratedProtocolMessageType('UnaryOp', (_message.Message,), {
|
|
112
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_UNARYOP,
|
|
113
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
114
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.UnaryOp)
|
|
115
|
+
})
|
|
116
|
+
,
|
|
117
|
+
|
|
118
|
+
'BinaryOp' : _reflection.GeneratedProtocolMessageType('BinaryOp', (_message.Message,), {
|
|
119
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_BINARYOP,
|
|
120
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
121
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.BinaryOp)
|
|
122
|
+
})
|
|
123
|
+
,
|
|
124
|
+
|
|
125
|
+
'ReturnProgram' : _reflection.GeneratedProtocolMessageType('ReturnProgram', (_message.Message,), {
|
|
126
|
+
|
|
127
|
+
'Assignment' : _reflection.GeneratedProtocolMessageType('Assignment', (_message.Message,), {
|
|
128
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_RETURNPROGRAM_ASSIGNMENT,
|
|
129
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
130
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ReturnProgram.Assignment)
|
|
131
|
+
})
|
|
132
|
+
,
|
|
133
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION_RETURNPROGRAM,
|
|
134
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
135
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression.ReturnProgram)
|
|
136
|
+
})
|
|
137
|
+
,
|
|
138
|
+
'DESCRIPTOR' : _DERIVATIONEXPRESSION,
|
|
139
|
+
'__module__' : 'vast_protobuf.substrait.type_expressions_pb2'
|
|
140
|
+
# @@protoc_insertion_point(class_scope:substrait.DerivationExpression)
|
|
141
|
+
})
|
|
142
|
+
_sym_db.RegisterMessage(DerivationExpression)
|
|
143
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionFixedChar)
|
|
144
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionVarChar)
|
|
145
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionFixedBinary)
|
|
146
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionDecimal)
|
|
147
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionStruct)
|
|
148
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionNamedStruct)
|
|
149
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionList)
|
|
150
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionMap)
|
|
151
|
+
_sym_db.RegisterMessage(DerivationExpression.ExpressionUserDefined)
|
|
152
|
+
_sym_db.RegisterMessage(DerivationExpression.IfElse)
|
|
153
|
+
_sym_db.RegisterMessage(DerivationExpression.UnaryOp)
|
|
154
|
+
_sym_db.RegisterMessage(DerivationExpression.BinaryOp)
|
|
155
|
+
_sym_db.RegisterMessage(DerivationExpression.ReturnProgram)
|
|
156
|
+
_sym_db.RegisterMessage(DerivationExpression.ReturnProgram.Assignment)
|
|
157
|
+
|
|
158
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
159
|
+
|
|
160
|
+
DESCRIPTOR._options = None
|
|
161
|
+
DESCRIPTOR._serialized_options = b'\n\022io.substrait.protoP\001Z*github.com/substrait-io/substrait-go/proto\252\002\022Substrait.Protobuf'
|
|
162
|
+
_DERIVATIONEXPRESSION.fields_by_name['user_defined_pointer']._options = None
|
|
163
|
+
_DERIVATIONEXPRESSION.fields_by_name['user_defined_pointer']._serialized_options = b'\030\001'
|
|
164
|
+
_DERIVATIONEXPRESSION._serialized_start=98
|
|
165
|
+
_DERIVATIONEXPRESSION._serialized_end=4263
|
|
166
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDCHAR._serialized_start=1740
|
|
167
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDCHAR._serialized_end=1887
|
|
168
|
+
_DERIVATIONEXPRESSION_EXPRESSIONVARCHAR._serialized_start=1890
|
|
169
|
+
_DERIVATIONEXPRESSION_EXPRESSIONVARCHAR._serialized_end=2035
|
|
170
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDBINARY._serialized_start=2038
|
|
171
|
+
_DERIVATIONEXPRESSION_EXPRESSIONFIXEDBINARY._serialized_end=2187
|
|
172
|
+
_DERIVATIONEXPRESSION_EXPRESSIONDECIMAL._serialized_start=2190
|
|
173
|
+
_DERIVATIONEXPRESSION_EXPRESSIONDECIMAL._serialized_end=2386
|
|
174
|
+
_DERIVATIONEXPRESSION_EXPRESSIONSTRUCT._serialized_start=2389
|
|
175
|
+
_DERIVATIONEXPRESSION_EXPRESSIONSTRUCT._serialized_end=2532
|
|
176
|
+
_DERIVATIONEXPRESSION_EXPRESSIONNAMEDSTRUCT._serialized_start=2534
|
|
177
|
+
_DERIVATIONEXPRESSION_EXPRESSIONNAMEDSTRUCT._serialized_end=2638
|
|
178
|
+
_DERIVATIONEXPRESSION_EXPRESSIONLIST._serialized_start=2641
|
|
179
|
+
_DERIVATIONEXPRESSION_EXPRESSIONLIST._serialized_end=2781
|
|
180
|
+
_DERIVATIONEXPRESSION_EXPRESSIONMAP._serialized_start=2784
|
|
181
|
+
_DERIVATIONEXPRESSION_EXPRESSIONMAP._serialized_end=2970
|
|
182
|
+
_DERIVATIONEXPRESSION_EXPRESSIONUSERDEFINED._serialized_start=2972
|
|
183
|
+
_DERIVATIONEXPRESSION_EXPRESSIONUSERDEFINED._serialized_end=3094
|
|
184
|
+
_DERIVATIONEXPRESSION_IFELSE._serialized_start=3097
|
|
185
|
+
_DERIVATIONEXPRESSION_IFELSE._serialized_end=3266
|
|
186
|
+
_DERIVATIONEXPRESSION_UNARYOP._serialized_start=3269
|
|
187
|
+
_DERIVATIONEXPRESSION_UNARYOP._serialized_end=3471
|
|
188
|
+
_DERIVATIONEXPRESSION_UNARYOP_UNARYOPTYPE._serialized_start=3396
|
|
189
|
+
_DERIVATIONEXPRESSION_UNARYOP_UNARYOPTYPE._serialized_end=3471
|
|
190
|
+
_DERIVATIONEXPRESSION_BINARYOP._serialized_start=3474
|
|
191
|
+
_DERIVATIONEXPRESSION_BINARYOP._serialized_end=4018
|
|
192
|
+
_DERIVATIONEXPRESSION_BINARYOP_BINARYOPTYPE._serialized_start=3653
|
|
193
|
+
_DERIVATIONEXPRESSION_BINARYOP_BINARYOPTYPE._serialized_end=4018
|
|
194
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM._serialized_start=4021
|
|
195
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM._serialized_end=4255
|
|
196
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM_ASSIGNMENT._serialized_start=4176
|
|
197
|
+
_DERIVATIONEXPRESSION_RETURNPROGRAM_ASSIGNMENT._serialized_end=4255
|
|
198
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: vast_protobuf/substrait/type.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
+
from google.protobuf import message as _message
|
|
8
|
+
from google.protobuf import reflection as _reflection
|
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"vast_protobuf/substrait/type.proto\x12\tsubstrait\x1a\x1bgoogle/protobuf/empty.proto\"\xa8\x1f\n\x04Type\x12\'\n\x04\x62ool\x18\x01 \x01(\x0b\x32\x17.substrait.Type.BooleanH\x00\x12 \n\x02i8\x18\x02 \x01(\x0b\x32\x12.substrait.Type.I8H\x00\x12\"\n\x03i16\x18\x03 \x01(\x0b\x32\x13.substrait.Type.I16H\x00\x12\"\n\x03i32\x18\x05 \x01(\x0b\x32\x13.substrait.Type.I32H\x00\x12\"\n\x03i64\x18\x07 \x01(\x0b\x32\x13.substrait.Type.I64H\x00\x12$\n\x04\x66p32\x18\n \x01(\x0b\x32\x14.substrait.Type.FP32H\x00\x12$\n\x04\x66p64\x18\x0b \x01(\x0b\x32\x14.substrait.Type.FP64H\x00\x12(\n\x06string\x18\x0c \x01(\x0b\x32\x16.substrait.Type.StringH\x00\x12(\n\x06\x62inary\x18\r \x01(\x0b\x32\x16.substrait.Type.BinaryH\x00\x12.\n\ttimestamp\x18\x0e \x01(\x0b\x32\x19.substrait.Type.TimestampH\x00\x12$\n\x04\x64\x61te\x18\x10 \x01(\x0b\x32\x14.substrait.Type.DateH\x00\x12$\n\x04time\x18\x11 \x01(\x0b\x32\x14.substrait.Type.TimeH\x00\x12\x35\n\rinterval_year\x18\x13 \x01(\x0b\x32\x1c.substrait.Type.IntervalYearH\x00\x12\x33\n\x0cinterval_day\x18\x14 \x01(\x0b\x32\x1b.substrait.Type.IntervalDayH\x00\x12\x33\n\x0ctimestamp_tz\x18\x1d \x01(\x0b\x32\x1b.substrait.Type.TimestampTZH\x00\x12$\n\x04uuid\x18 \x01(\x0b\x32\x14.substrait.Type.UUIDH\x00\x12/\n\nfixed_char\x18\x15 \x01(\x0b\x32\x19.substrait.Type.FixedCharH\x00\x12*\n\x07varchar\x18\x16 \x01(\x0b\x32\x17.substrait.Type.VarCharH\x00\x12\x33\n\x0c\x66ixed_binary\x18\x17 \x01(\x0b\x32\x1b.substrait.Type.FixedBinaryH\x00\x12*\n\x07\x64\x65\x63imal\x18\x18 \x01(\x0b\x32\x17.substrait.Type.DecimalH\x00\x12(\n\x06struct\x18\x19 \x01(\x0b\x32\x16.substrait.Type.StructH\x00\x12$\n\x04list\x18\x1b \x01(\x0b\x32\x14.substrait.Type.ListH\x00\x12\"\n\x03map\x18\x1c \x01(\x0b\x32\x13.substrait.Type.MapH\x00\x12\x33\n\x0cuser_defined\x18\x1e \x01(\x0b\x32\x1b.substrait.Type.UserDefinedH\x00\x12)\n\x1buser_defined_type_reference\x18\x1f \x01(\rB\x02\x18\x01H\x00\x12*\n\x07nothing\x18! \x01(\x0b\x32\x17.substrait.Type.NothingH\x00\x1a+\n\x07Nothing\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x1a]\n\x07\x42oolean\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aX\n\x02I8\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aY\n\x03I16\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aY\n\x03I32\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aY\n\x03I64\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aZ\n\x04\x46P32\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aZ\n\x04\x46P64\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\\\n\x06String\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\\\n\x06\x42inary\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a_\n\tTimestamp\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aZ\n\x04\x44\x61te\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aZ\n\x04Time\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x61\n\x0bTimestampTZ\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x62\n\x0cIntervalYear\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x61\n\x0bIntervalDay\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aZ\n\x04UUID\x12 \n\x18type_variation_reference\x18\x01 \x01(\r\x12\x30\n\x0bnullability\x18\x02 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1ao\n\tFixedChar\x12\x0e\n\x06length\x18\x01 \x01(\x05\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1am\n\x07VarChar\x12\x0e\n\x06length\x18\x01 \x01(\x05\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1aq\n\x0b\x46ixedBinary\x12\x0e\n\x06length\x18\x01 \x01(\x05\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x7f\n\x07\x44\x65\x63imal\x12\r\n\x05scale\x18\x01 \x01(\x05\x12\x11\n\tprecision\x18\x02 \x01(\x05\x12 \n\x18type_variation_reference\x18\x03 \x01(\r\x12\x30\n\x0bnullability\x18\x04 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x8b\x01\n\x06Struct\x12\x1e\n\x05types\x18\x01 \x03(\x0b\x32\x0f.substrait.Type\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x12\r\n\x05names\x18\x04 \x03(\t\x1ay\n\x04List\x12\x1d\n\x04type\x18\x01 \x01(\x0b\x32\x0f.substrait.Type\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\x97\x01\n\x03Map\x12\x1c\n\x03key\x18\x01 \x01(\x0b\x32\x0f.substrait.Type\x12\x1e\n\x05value\x18\x02 \x01(\x0b\x32\x0f.substrait.Type\x12 \n\x18type_variation_reference\x18\x03 \x01(\r\x12\x30\n\x0bnullability\x18\x04 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x1a\xad\x01\n\x0bUserDefined\x12\x16\n\x0etype_reference\x18\x01 \x01(\r\x12 \n\x18type_variation_reference\x18\x02 \x01(\r\x12\x30\n\x0bnullability\x18\x03 \x01(\x0e\x32\x1b.substrait.Type.Nullability\x12\x32\n\x0ftype_parameters\x18\x04 \x03(\x0b\x32\x19.substrait.Type.Parameter\x1a\xae\x01\n\tParameter\x12&\n\x04null\x18\x01 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12$\n\tdata_type\x18\x02 \x01(\x0b\x32\x0f.substrait.TypeH\x00\x12\x11\n\x07\x62oolean\x18\x03 \x01(\x08H\x00\x12\x11\n\x07integer\x18\x04 \x01(\x03H\x00\x12\x0e\n\x04\x65num\x18\x05 \x01(\tH\x00\x12\x10\n\x06string\x18\x06 \x01(\tH\x00\x42\x0b\n\tparameter\"^\n\x0bNullability\x12\x1b\n\x17NULLABILITY_UNSPECIFIED\x10\x00\x12\x18\n\x14NULLABILITY_NULLABLE\x10\x01\x12\x18\n\x14NULLABILITY_REQUIRED\x10\x02\x42\x06\n\x04kind\"|\n\x0bNamedStruct\x12\r\n\x05names\x18\x01 \x03(\t\x12&\n\x06struct\x18\x02 \x01(\x0b\x32\x16.substrait.Type.Struct\x12\x36\n\x11partition_columns\x18\x03 \x01(\x0b\x32\x1b.substrait.PartitionColumns\"\x80\x01\n\x10PartitionColumns\x12;\n\x0b\x63olumn_type\x18\x01 \x03(\x0e\x32&.substrait.PartitionColumns.ColumnType\"/\n\nColumnType\x12\x0e\n\nNORMAL_COL\x10\x00\x12\x11\n\rPARTITION_COL\x10\x01\x42W\n\x12io.substrait.protoP\x01Z*github.com/substrait-io/substrait-go/proto\xaa\x02\x12Substrait.Protobufb\x06proto3')
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
_TYPE = DESCRIPTOR.message_types_by_name['Type']
|
|
23
|
+
_TYPE_NOTHING = _TYPE.nested_types_by_name['Nothing']
|
|
24
|
+
_TYPE_BOOLEAN = _TYPE.nested_types_by_name['Boolean']
|
|
25
|
+
_TYPE_I8 = _TYPE.nested_types_by_name['I8']
|
|
26
|
+
_TYPE_I16 = _TYPE.nested_types_by_name['I16']
|
|
27
|
+
_TYPE_I32 = _TYPE.nested_types_by_name['I32']
|
|
28
|
+
_TYPE_I64 = _TYPE.nested_types_by_name['I64']
|
|
29
|
+
_TYPE_FP32 = _TYPE.nested_types_by_name['FP32']
|
|
30
|
+
_TYPE_FP64 = _TYPE.nested_types_by_name['FP64']
|
|
31
|
+
_TYPE_STRING = _TYPE.nested_types_by_name['String']
|
|
32
|
+
_TYPE_BINARY = _TYPE.nested_types_by_name['Binary']
|
|
33
|
+
_TYPE_TIMESTAMP = _TYPE.nested_types_by_name['Timestamp']
|
|
34
|
+
_TYPE_DATE = _TYPE.nested_types_by_name['Date']
|
|
35
|
+
_TYPE_TIME = _TYPE.nested_types_by_name['Time']
|
|
36
|
+
_TYPE_TIMESTAMPTZ = _TYPE.nested_types_by_name['TimestampTZ']
|
|
37
|
+
_TYPE_INTERVALYEAR = _TYPE.nested_types_by_name['IntervalYear']
|
|
38
|
+
_TYPE_INTERVALDAY = _TYPE.nested_types_by_name['IntervalDay']
|
|
39
|
+
_TYPE_UUID = _TYPE.nested_types_by_name['UUID']
|
|
40
|
+
_TYPE_FIXEDCHAR = _TYPE.nested_types_by_name['FixedChar']
|
|
41
|
+
_TYPE_VARCHAR = _TYPE.nested_types_by_name['VarChar']
|
|
42
|
+
_TYPE_FIXEDBINARY = _TYPE.nested_types_by_name['FixedBinary']
|
|
43
|
+
_TYPE_DECIMAL = _TYPE.nested_types_by_name['Decimal']
|
|
44
|
+
_TYPE_STRUCT = _TYPE.nested_types_by_name['Struct']
|
|
45
|
+
_TYPE_LIST = _TYPE.nested_types_by_name['List']
|
|
46
|
+
_TYPE_MAP = _TYPE.nested_types_by_name['Map']
|
|
47
|
+
_TYPE_USERDEFINED = _TYPE.nested_types_by_name['UserDefined']
|
|
48
|
+
_TYPE_PARAMETER = _TYPE.nested_types_by_name['Parameter']
|
|
49
|
+
_NAMEDSTRUCT = DESCRIPTOR.message_types_by_name['NamedStruct']
|
|
50
|
+
_PARTITIONCOLUMNS = DESCRIPTOR.message_types_by_name['PartitionColumns']
|
|
51
|
+
_TYPE_NULLABILITY = _TYPE.enum_types_by_name['Nullability']
|
|
52
|
+
_PARTITIONCOLUMNS_COLUMNTYPE = _PARTITIONCOLUMNS.enum_types_by_name['ColumnType']
|
|
53
|
+
Type = _reflection.GeneratedProtocolMessageType('Type', (_message.Message,), {
|
|
54
|
+
|
|
55
|
+
'Nothing' : _reflection.GeneratedProtocolMessageType('Nothing', (_message.Message,), {
|
|
56
|
+
'DESCRIPTOR' : _TYPE_NOTHING,
|
|
57
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
58
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Nothing)
|
|
59
|
+
})
|
|
60
|
+
,
|
|
61
|
+
|
|
62
|
+
'Boolean' : _reflection.GeneratedProtocolMessageType('Boolean', (_message.Message,), {
|
|
63
|
+
'DESCRIPTOR' : _TYPE_BOOLEAN,
|
|
64
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
65
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Boolean)
|
|
66
|
+
})
|
|
67
|
+
,
|
|
68
|
+
|
|
69
|
+
'I8' : _reflection.GeneratedProtocolMessageType('I8', (_message.Message,), {
|
|
70
|
+
'DESCRIPTOR' : _TYPE_I8,
|
|
71
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
72
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.I8)
|
|
73
|
+
})
|
|
74
|
+
,
|
|
75
|
+
|
|
76
|
+
'I16' : _reflection.GeneratedProtocolMessageType('I16', (_message.Message,), {
|
|
77
|
+
'DESCRIPTOR' : _TYPE_I16,
|
|
78
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
79
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.I16)
|
|
80
|
+
})
|
|
81
|
+
,
|
|
82
|
+
|
|
83
|
+
'I32' : _reflection.GeneratedProtocolMessageType('I32', (_message.Message,), {
|
|
84
|
+
'DESCRIPTOR' : _TYPE_I32,
|
|
85
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
86
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.I32)
|
|
87
|
+
})
|
|
88
|
+
,
|
|
89
|
+
|
|
90
|
+
'I64' : _reflection.GeneratedProtocolMessageType('I64', (_message.Message,), {
|
|
91
|
+
'DESCRIPTOR' : _TYPE_I64,
|
|
92
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
93
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.I64)
|
|
94
|
+
})
|
|
95
|
+
,
|
|
96
|
+
|
|
97
|
+
'FP32' : _reflection.GeneratedProtocolMessageType('FP32', (_message.Message,), {
|
|
98
|
+
'DESCRIPTOR' : _TYPE_FP32,
|
|
99
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
100
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.FP32)
|
|
101
|
+
})
|
|
102
|
+
,
|
|
103
|
+
|
|
104
|
+
'FP64' : _reflection.GeneratedProtocolMessageType('FP64', (_message.Message,), {
|
|
105
|
+
'DESCRIPTOR' : _TYPE_FP64,
|
|
106
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
107
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.FP64)
|
|
108
|
+
})
|
|
109
|
+
,
|
|
110
|
+
|
|
111
|
+
'String' : _reflection.GeneratedProtocolMessageType('String', (_message.Message,), {
|
|
112
|
+
'DESCRIPTOR' : _TYPE_STRING,
|
|
113
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
114
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.String)
|
|
115
|
+
})
|
|
116
|
+
,
|
|
117
|
+
|
|
118
|
+
'Binary' : _reflection.GeneratedProtocolMessageType('Binary', (_message.Message,), {
|
|
119
|
+
'DESCRIPTOR' : _TYPE_BINARY,
|
|
120
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
121
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Binary)
|
|
122
|
+
})
|
|
123
|
+
,
|
|
124
|
+
|
|
125
|
+
'Timestamp' : _reflection.GeneratedProtocolMessageType('Timestamp', (_message.Message,), {
|
|
126
|
+
'DESCRIPTOR' : _TYPE_TIMESTAMP,
|
|
127
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
128
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Timestamp)
|
|
129
|
+
})
|
|
130
|
+
,
|
|
131
|
+
|
|
132
|
+
'Date' : _reflection.GeneratedProtocolMessageType('Date', (_message.Message,), {
|
|
133
|
+
'DESCRIPTOR' : _TYPE_DATE,
|
|
134
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
135
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Date)
|
|
136
|
+
})
|
|
137
|
+
,
|
|
138
|
+
|
|
139
|
+
'Time' : _reflection.GeneratedProtocolMessageType('Time', (_message.Message,), {
|
|
140
|
+
'DESCRIPTOR' : _TYPE_TIME,
|
|
141
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
142
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Time)
|
|
143
|
+
})
|
|
144
|
+
,
|
|
145
|
+
|
|
146
|
+
'TimestampTZ' : _reflection.GeneratedProtocolMessageType('TimestampTZ', (_message.Message,), {
|
|
147
|
+
'DESCRIPTOR' : _TYPE_TIMESTAMPTZ,
|
|
148
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
149
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.TimestampTZ)
|
|
150
|
+
})
|
|
151
|
+
,
|
|
152
|
+
|
|
153
|
+
'IntervalYear' : _reflection.GeneratedProtocolMessageType('IntervalYear', (_message.Message,), {
|
|
154
|
+
'DESCRIPTOR' : _TYPE_INTERVALYEAR,
|
|
155
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
156
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.IntervalYear)
|
|
157
|
+
})
|
|
158
|
+
,
|
|
159
|
+
|
|
160
|
+
'IntervalDay' : _reflection.GeneratedProtocolMessageType('IntervalDay', (_message.Message,), {
|
|
161
|
+
'DESCRIPTOR' : _TYPE_INTERVALDAY,
|
|
162
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
163
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.IntervalDay)
|
|
164
|
+
})
|
|
165
|
+
,
|
|
166
|
+
|
|
167
|
+
'UUID' : _reflection.GeneratedProtocolMessageType('UUID', (_message.Message,), {
|
|
168
|
+
'DESCRIPTOR' : _TYPE_UUID,
|
|
169
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
170
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.UUID)
|
|
171
|
+
})
|
|
172
|
+
,
|
|
173
|
+
|
|
174
|
+
'FixedChar' : _reflection.GeneratedProtocolMessageType('FixedChar', (_message.Message,), {
|
|
175
|
+
'DESCRIPTOR' : _TYPE_FIXEDCHAR,
|
|
176
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
177
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.FixedChar)
|
|
178
|
+
})
|
|
179
|
+
,
|
|
180
|
+
|
|
181
|
+
'VarChar' : _reflection.GeneratedProtocolMessageType('VarChar', (_message.Message,), {
|
|
182
|
+
'DESCRIPTOR' : _TYPE_VARCHAR,
|
|
183
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
184
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.VarChar)
|
|
185
|
+
})
|
|
186
|
+
,
|
|
187
|
+
|
|
188
|
+
'FixedBinary' : _reflection.GeneratedProtocolMessageType('FixedBinary', (_message.Message,), {
|
|
189
|
+
'DESCRIPTOR' : _TYPE_FIXEDBINARY,
|
|
190
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
191
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.FixedBinary)
|
|
192
|
+
})
|
|
193
|
+
,
|
|
194
|
+
|
|
195
|
+
'Decimal' : _reflection.GeneratedProtocolMessageType('Decimal', (_message.Message,), {
|
|
196
|
+
'DESCRIPTOR' : _TYPE_DECIMAL,
|
|
197
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
198
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Decimal)
|
|
199
|
+
})
|
|
200
|
+
,
|
|
201
|
+
|
|
202
|
+
'Struct' : _reflection.GeneratedProtocolMessageType('Struct', (_message.Message,), {
|
|
203
|
+
'DESCRIPTOR' : _TYPE_STRUCT,
|
|
204
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
205
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Struct)
|
|
206
|
+
})
|
|
207
|
+
,
|
|
208
|
+
|
|
209
|
+
'List' : _reflection.GeneratedProtocolMessageType('List', (_message.Message,), {
|
|
210
|
+
'DESCRIPTOR' : _TYPE_LIST,
|
|
211
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
212
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.List)
|
|
213
|
+
})
|
|
214
|
+
,
|
|
215
|
+
|
|
216
|
+
'Map' : _reflection.GeneratedProtocolMessageType('Map', (_message.Message,), {
|
|
217
|
+
'DESCRIPTOR' : _TYPE_MAP,
|
|
218
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
219
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Map)
|
|
220
|
+
})
|
|
221
|
+
,
|
|
222
|
+
|
|
223
|
+
'UserDefined' : _reflection.GeneratedProtocolMessageType('UserDefined', (_message.Message,), {
|
|
224
|
+
'DESCRIPTOR' : _TYPE_USERDEFINED,
|
|
225
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
226
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.UserDefined)
|
|
227
|
+
})
|
|
228
|
+
,
|
|
229
|
+
|
|
230
|
+
'Parameter' : _reflection.GeneratedProtocolMessageType('Parameter', (_message.Message,), {
|
|
231
|
+
'DESCRIPTOR' : _TYPE_PARAMETER,
|
|
232
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
233
|
+
# @@protoc_insertion_point(class_scope:substrait.Type.Parameter)
|
|
234
|
+
})
|
|
235
|
+
,
|
|
236
|
+
'DESCRIPTOR' : _TYPE,
|
|
237
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
238
|
+
# @@protoc_insertion_point(class_scope:substrait.Type)
|
|
239
|
+
})
|
|
240
|
+
_sym_db.RegisterMessage(Type)
|
|
241
|
+
_sym_db.RegisterMessage(Type.Nothing)
|
|
242
|
+
_sym_db.RegisterMessage(Type.Boolean)
|
|
243
|
+
_sym_db.RegisterMessage(Type.I8)
|
|
244
|
+
_sym_db.RegisterMessage(Type.I16)
|
|
245
|
+
_sym_db.RegisterMessage(Type.I32)
|
|
246
|
+
_sym_db.RegisterMessage(Type.I64)
|
|
247
|
+
_sym_db.RegisterMessage(Type.FP32)
|
|
248
|
+
_sym_db.RegisterMessage(Type.FP64)
|
|
249
|
+
_sym_db.RegisterMessage(Type.String)
|
|
250
|
+
_sym_db.RegisterMessage(Type.Binary)
|
|
251
|
+
_sym_db.RegisterMessage(Type.Timestamp)
|
|
252
|
+
_sym_db.RegisterMessage(Type.Date)
|
|
253
|
+
_sym_db.RegisterMessage(Type.Time)
|
|
254
|
+
_sym_db.RegisterMessage(Type.TimestampTZ)
|
|
255
|
+
_sym_db.RegisterMessage(Type.IntervalYear)
|
|
256
|
+
_sym_db.RegisterMessage(Type.IntervalDay)
|
|
257
|
+
_sym_db.RegisterMessage(Type.UUID)
|
|
258
|
+
_sym_db.RegisterMessage(Type.FixedChar)
|
|
259
|
+
_sym_db.RegisterMessage(Type.VarChar)
|
|
260
|
+
_sym_db.RegisterMessage(Type.FixedBinary)
|
|
261
|
+
_sym_db.RegisterMessage(Type.Decimal)
|
|
262
|
+
_sym_db.RegisterMessage(Type.Struct)
|
|
263
|
+
_sym_db.RegisterMessage(Type.List)
|
|
264
|
+
_sym_db.RegisterMessage(Type.Map)
|
|
265
|
+
_sym_db.RegisterMessage(Type.UserDefined)
|
|
266
|
+
_sym_db.RegisterMessage(Type.Parameter)
|
|
267
|
+
|
|
268
|
+
NamedStruct = _reflection.GeneratedProtocolMessageType('NamedStruct', (_message.Message,), {
|
|
269
|
+
'DESCRIPTOR' : _NAMEDSTRUCT,
|
|
270
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
271
|
+
# @@protoc_insertion_point(class_scope:substrait.NamedStruct)
|
|
272
|
+
})
|
|
273
|
+
_sym_db.RegisterMessage(NamedStruct)
|
|
274
|
+
|
|
275
|
+
PartitionColumns = _reflection.GeneratedProtocolMessageType('PartitionColumns', (_message.Message,), {
|
|
276
|
+
'DESCRIPTOR' : _PARTITIONCOLUMNS,
|
|
277
|
+
'__module__' : 'vast_protobuf.substrait.type_pb2'
|
|
278
|
+
# @@protoc_insertion_point(class_scope:substrait.PartitionColumns)
|
|
279
|
+
})
|
|
280
|
+
_sym_db.RegisterMessage(PartitionColumns)
|
|
281
|
+
|
|
282
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
283
|
+
|
|
284
|
+
DESCRIPTOR._options = None
|
|
285
|
+
DESCRIPTOR._serialized_options = b'\n\022io.substrait.protoP\001Z*github.com/substrait-io/substrait-go/proto\252\002\022Substrait.Protobuf'
|
|
286
|
+
_TYPE.fields_by_name['user_defined_type_reference']._options = None
|
|
287
|
+
_TYPE.fields_by_name['user_defined_type_reference']._serialized_options = b'\030\001'
|
|
288
|
+
_TYPE._serialized_start=79
|
|
289
|
+
_TYPE._serialized_end=4087
|
|
290
|
+
_TYPE_NOTHING._serialized_start=1199
|
|
291
|
+
_TYPE_NOTHING._serialized_end=1242
|
|
292
|
+
_TYPE_BOOLEAN._serialized_start=1244
|
|
293
|
+
_TYPE_BOOLEAN._serialized_end=1337
|
|
294
|
+
_TYPE_I8._serialized_start=1339
|
|
295
|
+
_TYPE_I8._serialized_end=1427
|
|
296
|
+
_TYPE_I16._serialized_start=1429
|
|
297
|
+
_TYPE_I16._serialized_end=1518
|
|
298
|
+
_TYPE_I32._serialized_start=1520
|
|
299
|
+
_TYPE_I32._serialized_end=1609
|
|
300
|
+
_TYPE_I64._serialized_start=1611
|
|
301
|
+
_TYPE_I64._serialized_end=1700
|
|
302
|
+
_TYPE_FP32._serialized_start=1702
|
|
303
|
+
_TYPE_FP32._serialized_end=1792
|
|
304
|
+
_TYPE_FP64._serialized_start=1794
|
|
305
|
+
_TYPE_FP64._serialized_end=1884
|
|
306
|
+
_TYPE_STRING._serialized_start=1886
|
|
307
|
+
_TYPE_STRING._serialized_end=1978
|
|
308
|
+
_TYPE_BINARY._serialized_start=1980
|
|
309
|
+
_TYPE_BINARY._serialized_end=2072
|
|
310
|
+
_TYPE_TIMESTAMP._serialized_start=2074
|
|
311
|
+
_TYPE_TIMESTAMP._serialized_end=2169
|
|
312
|
+
_TYPE_DATE._serialized_start=2171
|
|
313
|
+
_TYPE_DATE._serialized_end=2261
|
|
314
|
+
_TYPE_TIME._serialized_start=2263
|
|
315
|
+
_TYPE_TIME._serialized_end=2353
|
|
316
|
+
_TYPE_TIMESTAMPTZ._serialized_start=2355
|
|
317
|
+
_TYPE_TIMESTAMPTZ._serialized_end=2452
|
|
318
|
+
_TYPE_INTERVALYEAR._serialized_start=2454
|
|
319
|
+
_TYPE_INTERVALYEAR._serialized_end=2552
|
|
320
|
+
_TYPE_INTERVALDAY._serialized_start=2554
|
|
321
|
+
_TYPE_INTERVALDAY._serialized_end=2651
|
|
322
|
+
_TYPE_UUID._serialized_start=2653
|
|
323
|
+
_TYPE_UUID._serialized_end=2743
|
|
324
|
+
_TYPE_FIXEDCHAR._serialized_start=2745
|
|
325
|
+
_TYPE_FIXEDCHAR._serialized_end=2856
|
|
326
|
+
_TYPE_VARCHAR._serialized_start=2858
|
|
327
|
+
_TYPE_VARCHAR._serialized_end=2967
|
|
328
|
+
_TYPE_FIXEDBINARY._serialized_start=2969
|
|
329
|
+
_TYPE_FIXEDBINARY._serialized_end=3082
|
|
330
|
+
_TYPE_DECIMAL._serialized_start=3084
|
|
331
|
+
_TYPE_DECIMAL._serialized_end=3211
|
|
332
|
+
_TYPE_STRUCT._serialized_start=3214
|
|
333
|
+
_TYPE_STRUCT._serialized_end=3353
|
|
334
|
+
_TYPE_LIST._serialized_start=3355
|
|
335
|
+
_TYPE_LIST._serialized_end=3476
|
|
336
|
+
_TYPE_MAP._serialized_start=3479
|
|
337
|
+
_TYPE_MAP._serialized_end=3630
|
|
338
|
+
_TYPE_USERDEFINED._serialized_start=3633
|
|
339
|
+
_TYPE_USERDEFINED._serialized_end=3806
|
|
340
|
+
_TYPE_PARAMETER._serialized_start=3809
|
|
341
|
+
_TYPE_PARAMETER._serialized_end=3983
|
|
342
|
+
_TYPE_NULLABILITY._serialized_start=3985
|
|
343
|
+
_TYPE_NULLABILITY._serialized_end=4079
|
|
344
|
+
_NAMEDSTRUCT._serialized_start=4089
|
|
345
|
+
_NAMEDSTRUCT._serialized_end=4213
|
|
346
|
+
_PARTITIONCOLUMNS._serialized_start=4216
|
|
347
|
+
_PARTITIONCOLUMNS._serialized_end=4344
|
|
348
|
+
_PARTITIONCOLUMNS_COLUMNTYPE._serialized_start=4297
|
|
349
|
+
_PARTITIONCOLUMNS_COLUMNTYPE._serialized_end=4344
|
|
350
|
+
# @@protoc_insertion_point(module_scope)
|
|
File without changes
|