type stringclasses 5
values | name stringlengths 1 55 | qualified_name stringlengths 5 147 | docstring stringlengths 15 4.52k ⌀ | filepath stringclasses 206
values | is_public bool 2
classes | is_private bool 2
classes | line_start int64 0 1.99k ⌀ | line_end int64 0 2.01k ⌀ | annotation stringclasses 14
values | returns stringclasses 308
values | value stringclasses 152
values | parameters listlengths 0 117 ⌀ | bases listlengths 0 3 ⌀ | parent_class stringclasses 376
values | api_element_summary stringlengths 199 33.8k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
method | __init__ | fenic.core._serde.proto.serde_context.PathTracker.__init__ | Initialize a PathTracker. | null | true | false | 986 | 988 | null | null | null | [
"self"
] | null | PathTracker | Type: method
Member Name: __init__
Qualified Name: fenic.core._serde.proto.serde_context.PathTracker.__init__
Docstring: Initialize a PathTracker.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: none
Parent Class: PathTracker |
method | push | fenic.core._serde.proto.serde_context.PathTracker.push | Push a field name onto the path stack. | null | true | false | 995 | 997 | null | None | null | [
"self",
"field_name"
] | null | PathTracker | Type: method
Member Name: push
Qualified Name: fenic.core._serde.proto.serde_context.PathTracker.push
Docstring: Push a field name onto the path stack.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "field_name"]
Returns: None
Parent Class: PathTracker |
method | pop | fenic.core._serde.proto.serde_context.PathTracker.pop | Pop the last field name from the path stack. | null | true | false | 999 | 1,002 | null | None | null | [
"self"
] | null | PathTracker | Type: method
Member Name: pop
Qualified Name: fenic.core._serde.proto.serde_context.PathTracker.pop
Docstring: Pop the last field name from the path stack.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: None
Parent Class: PathTracker |
method | clear | fenic.core._serde.proto.serde_context.PathTracker.clear | Clear the entire path stack. | null | true | false | 1,004 | 1,006 | null | None | null | [
"self"
] | null | PathTracker | Type: method
Member Name: clear
Qualified Name: fenic.core._serde.proto.serde_context.PathTracker.clear
Docstring: Clear the entire path stack.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: None
Parent Class: PathTracker |
module | types | fenic.core._serde.proto.types | Protobuf type imports with Proto suffix for use in serialization.
This module imports all generated protobuf classes with a 'Proto' suffix
to avoid naming conflicts with the Python classes they serialize. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/types.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: types
Qualified Name: fenic.core._serde.proto.types
Docstring: Protobuf type imports with Proto suffix for use in serialization.
This module imports all generated protobuf classes with a 'Proto' suffix
to avoid naming conflicts with the Python classes they serialize.
Value: none
Annotation: n... |
attribute | __all__ | fenic.core._serde.proto.types.__all__ | null | null | false | false | 585 | 789 | null | null | ['DataTypeProto', 'StringTypeProto', 'IntegerTypeProto', 'FloatTypeProto', 'DoubleTypeProto', 'BooleanTypeProto', 'ArrayTypeProto', 'StructTypeProto', 'StructFieldProto', 'EmbeddingTypeProto', 'TranscriptTypeProto', 'DocumentPathTypeProto', 'MarkdownTypeProto', 'HTMLTypeProto', 'JSONTypeProto', 'DateTypeProto', 'Timest... | null | null | null | Type: attribute
Member Name: __all__
Qualified Name: fenic.core._serde.proto.types.__all__
Docstring: none
Value: ['DataTypeProto', 'StringTypeProto', 'IntegerTypeProto', 'FloatTypeProto', 'DoubleTypeProto', 'BooleanTypeProto', 'ArrayTypeProto', 'StructTypeProto', 'StructFieldProto', 'EmbeddingTypeProto', 'TranscriptTy... |
module | enum_serde | fenic.core._serde.proto.enum_serde | Enum serialization/deserialization. Handles the serialization of enums to and from protobuf ints. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/enum_serde.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: enum_serde
Qualified Name: fenic.core._serde.proto.enum_serde
Docstring: Enum serialization/deserialization. Handles the serialization of enums to and from protobuf ints.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | serialize_enum_value | fenic.core._serde.proto.enum_serde.serialize_enum_value | Serialize an enum value to the protobuf int representation.
This function uses singledispatch to handle different enum types. If the enum names
are 1:1 matches to the proto enum names, this auto-serde function can be used.
Otherwise, define a `_serialize_<type>` function below to add custom enum mappings.
Args:
v... | null | true | false | 13 | 43 | null | int | null | [
"value",
"target_proto",
"context"
] | null | null | Type: function
Member Name: serialize_enum_value
Qualified Name: fenic.core._serde.proto.enum_serde.serialize_enum_value
Docstring: Serialize an enum value to the protobuf int representation.
This function uses singledispatch to handle different enum types. If the enum names
are 1:1 matches to the proto enum names, th... |
function | deserialize_enum_value | fenic.core._serde.proto.enum_serde.deserialize_enum_value | Deserialize an enum value from its protobuf int representation.
This function uses singledispatch to handle different enum types. If the enum names
are 1:1 matches to the proto enum names, this auto-serde function can be used.
Otherwise, define a `_deserialize_<type>` function below to add custom enum mappings.
Args:... | null | true | false | 46 | 90 | null | Optional[Enum] | null | [
"target_type",
"proto_enum_type",
"_serialized_value",
"context"
] | null | null | Type: function
Member Name: deserialize_enum_value
Qualified Name: fenic.core._serde.proto.enum_serde.deserialize_enum_value
Docstring: Deserialize an enum value from its protobuf int representation.
This function uses singledispatch to handle different enum types. If the enum names
are 1:1 matches to the proto enum n... |
module | datatype_serde | fenic.core._serde.proto.datatype_serde | Data type serialization/deserialization using singledispatch. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/datatype_serde.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: datatype_serde
Qualified Name: fenic.core._serde.proto.datatype_serde
Docstring: Data type serialization/deserialization using singledispatch.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | serialize_data_type | fenic.core._serde.proto.datatype_serde.serialize_data_type | Serialize a data type to its protobuf representation.
This function uses singledispatch to handle different data type classes.
Each data type class should have a corresponding register function that
implements the specific serialization logic.
Args:
data_type: The data type to serialize. Must be a registered type... | null | true | false | 66 | 88 | null | DataTypeProto | null | [
"data_type",
"context"
] | null | null | Type: function
Member Name: serialize_data_type
Qualified Name: fenic.core._serde.proto.datatype_serde.serialize_data_type
Docstring: Serialize a data type to its protobuf representation.
This function uses singledispatch to handle different data type classes.
Each data type class should have a corresponding register ... |
function | deserialize_data_type | fenic.core._serde.proto.datatype_serde.deserialize_data_type | Deserialize a data type from its protobuf representation.
This function determines which oneof field is set in the DataTypeProto
and delegates to the appropriate deserialization helper function.
Args:
data_type_proto: The protobuf representation to deserialize.
context: The serde context for error reporting a... | null | true | false | 91 | 114 | null | DataType | null | [
"data_type_proto",
"context"
] | null | null | Type: function
Member Name: deserialize_data_type
Qualified Name: fenic.core._serde.proto.datatype_serde.deserialize_data_type
Docstring: Deserialize a data type from its protobuf representation.
This function determines which oneof field is set in the DataTypeProto
and delegates to the appropriate deserialization hel... |
function | _deserialize_data_type_helper | fenic.core._serde.proto.datatype_serde._deserialize_data_type_helper | Deserialize a data type from its underlying protobuf message.
This function uses singledispatch to handle different protobuf message types.
Each protobuf message type should have a corresponding register function that
implements the specific deserialization logic.
Args:
underlying_proto: The underlying protobuf m... | null | false | true | 117 | 141 | null | DataType | null | [
"underlying_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_data_type_helper
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_data_type_helper
Docstring: Deserialize a data type from its underlying protobuf message.
This function uses singledispatch to handle different protobuf message types.
Each protobuf message typ... |
function | _serialize_string_type | fenic.core._serde.proto.datatype_serde._serialize_string_type | Serialize a string type. | null | false | true | 149 | 152 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_string_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_string_type
Docstring: Serialize a string type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_string_type | fenic.core._serde.proto.datatype_serde._deserialize_string_type | Deserialize a string type. | null | false | true | 155 | 158 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_string_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_string_type
Docstring: Deserialize a string type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_integer_type | fenic.core._serde.proto.datatype_serde._serialize_integer_type | Serialize an integer type. | null | false | true | 166 | 169 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_integer_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_integer_type
Docstring: Serialize an integer type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_integer_type | fenic.core._serde.proto.datatype_serde._deserialize_integer_type | Deserialize an integer type. | null | false | true | 172 | 175 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_integer_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_integer_type
Docstring: Deserialize an integer type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_float_type | fenic.core._serde.proto.datatype_serde._serialize_float_type | Serialize a float type. | null | false | true | 183 | 186 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_float_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_float_type
Docstring: Serialize a float type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_float_type | fenic.core._serde.proto.datatype_serde._deserialize_float_type | Deserialize a float type. | null | false | true | 189 | 192 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_float_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_float_type
Docstring: Deserialize a float type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_double_type | fenic.core._serde.proto.datatype_serde._serialize_double_type | Serialize a double type. | null | false | true | 200 | 203 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_double_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_double_type
Docstring: Serialize a double type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_double_type | fenic.core._serde.proto.datatype_serde._deserialize_double_type | Deserialize a double type. | null | false | true | 206 | 209 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_double_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_double_type
Docstring: Deserialize a double type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_boolean_type | fenic.core._serde.proto.datatype_serde._serialize_boolean_type | Serialize a boolean type. | null | false | true | 217 | 220 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_boolean_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_boolean_type
Docstring: Serialize a boolean type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_boolean_type | fenic.core._serde.proto.datatype_serde._deserialize_boolean_type | Deserialize a boolean type. | null | false | true | 223 | 226 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_boolean_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_boolean_type
Docstring: Deserialize a boolean type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_array_type | fenic.core._serde.proto.datatype_serde._serialize_array_type | Serialize an array type. | null | false | true | 234 | 242 | null | DataTypeProto | null | [
"array_type",
"context"
] | null | null | Type: function
Member Name: _serialize_array_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_array_type
Docstring: Serialize an array type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["array_type", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_array_type | fenic.core._serde.proto.datatype_serde._deserialize_array_type | Deserialize an array type. | null | false | true | 245 | 253 | null | DataType | null | [
"array_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_array_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_array_type
Docstring: Deserialize an array type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["array_proto", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_struct_type | fenic.core._serde.proto.datatype_serde._serialize_struct_type | Serialize a struct type. | null | false | true | 261 | 274 | null | DataTypeProto | null | [
"struct_type",
"context"
] | null | null | Type: function
Member Name: _serialize_struct_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_struct_type
Docstring: Serialize a struct type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["struct_type", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_struct_type | fenic.core._serde.proto.datatype_serde._deserialize_struct_type | Deserialize a struct type. | null | false | true | 277 | 290 | null | DataType | null | [
"struct_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_struct_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_struct_type
Docstring: Deserialize a struct type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["struct_proto", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_embedding_type | fenic.core._serde.proto.datatype_serde._serialize_embedding_type | Serialize an embedding type. | null | false | true | 298 | 308 | null | DataTypeProto | null | [
"embedding_type",
"context"
] | null | null | Type: function
Member Name: _serialize_embedding_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_embedding_type
Docstring: Serialize an embedding type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["embedding_type", "context"]
Returns: DataTypeProto
Parent Class:... |
function | _deserialize_embedding_type | fenic.core._serde.proto.datatype_serde._deserialize_embedding_type | Deserialize an embedding type. | null | false | true | 311 | 319 | null | DataType | null | [
"embedding_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_embedding_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_embedding_type
Docstring: Deserialize an embedding type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["embedding_proto", "context"]
Returns: DataType
Parent Clas... |
function | _serialize_transcript_type | fenic.core._serde.proto.datatype_serde._serialize_transcript_type | Serialize a transcript type. | null | false | true | 327 | 332 | null | DataTypeProto | null | [
"transcript_type",
"context"
] | null | null | Type: function
Member Name: _serialize_transcript_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_transcript_type
Docstring: Serialize a transcript type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["transcript_type", "context"]
Returns: DataTypeProto
Parent Cla... |
function | _deserialize_transcript_type | fenic.core._serde.proto.datatype_serde._deserialize_transcript_type | Deserialize a transcript type. | null | false | true | 335 | 340 | null | DataType | null | [
"transcript_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_transcript_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_transcript_type
Docstring: Deserialize a transcript type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["transcript_proto", "context"]
Returns: DataType
Parent C... |
function | _serialize_document_path_type | fenic.core._serde.proto.datatype_serde._serialize_document_path_type | Serialize a document path type. | null | false | true | 348 | 355 | null | DataTypeProto | null | [
"document_path_type",
"context"
] | null | null | Type: function
Member Name: _serialize_document_path_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_document_path_type
Docstring: Serialize a document path type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["document_path_type", "context"]
Returns: DataTypeProt... |
function | _deserialize_document_path_type | fenic.core._serde.proto.datatype_serde._deserialize_document_path_type | Deserialize a document path type. | null | false | true | 358 | 363 | null | DataType | null | [
"document_path_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_document_path_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_document_path_type
Docstring: Deserialize a document path type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["document_path_proto", "context"]
Returns: DataT... |
function | _serialize_markdown_type | fenic.core._serde.proto.datatype_serde._serialize_markdown_type | Serialize a markdown type. | null | false | true | 371 | 374 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_markdown_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_markdown_type
Docstring: Serialize a markdown type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_markdown_type | fenic.core._serde.proto.datatype_serde._deserialize_markdown_type | Deserialize a markdown type. | null | false | true | 377 | 380 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_markdown_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_markdown_type
Docstring: Deserialize a markdown type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_html_type | fenic.core._serde.proto.datatype_serde._serialize_html_type | Serialize an HTML type. | null | false | true | 388 | 391 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_html_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_html_type
Docstring: Serialize an HTML type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_html_type | fenic.core._serde.proto.datatype_serde._deserialize_html_type | Deserialize an HTML type. | null | false | true | 394 | 397 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_html_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_html_type
Docstring: Deserialize an HTML type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_json_type | fenic.core._serde.proto.datatype_serde._serialize_json_type | Serialize a JSON type. | null | false | true | 405 | 408 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_json_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_json_type
Docstring: Serialize a JSON type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_json_type | fenic.core._serde.proto.datatype_serde._deserialize_json_type | Deserialize a JSON type. | null | false | true | 411 | 414 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_json_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_json_type
Docstring: Deserialize a JSON type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_date_type | fenic.core._serde.proto.datatype_serde._serialize_date_type | Serialize a date type. | null | false | true | 420 | 423 | null | DataTypeProto | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _serialize_date_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_date_type
Docstring: Serialize a date type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_date_type | fenic.core._serde.proto.datatype_serde._deserialize_date_type | Deserialize a date type. | null | false | true | 425 | 428 | null | DataType | null | [
"_",
"context"
] | null | null | Type: function
Member Name: _deserialize_date_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_date_type
Docstring: Deserialize a date type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["_", "context"]
Returns: DataType
Parent Class: none |
function | _serialize_timestamp_type | fenic.core._serde.proto.datatype_serde._serialize_timestamp_type | Serialize a timestamp type. | null | false | true | 434 | 437 | null | DataTypeProto | null | [
"ts",
"context"
] | null | null | Type: function
Member Name: _serialize_timestamp_type
Qualified Name: fenic.core._serde.proto.datatype_serde._serialize_timestamp_type
Docstring: Serialize a timestamp type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["ts", "context"]
Returns: DataTypeProto
Parent Class: none |
function | _deserialize_timestamp_type | fenic.core._serde.proto.datatype_serde._deserialize_timestamp_type | Deserialize a timestamp type. | null | false | true | 439 | 442 | null | DataType | null | [
"ts_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_timestamp_type
Qualified Name: fenic.core._serde.proto.datatype_serde._deserialize_timestamp_type
Docstring: Deserialize a timestamp type.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["ts_proto", "context"]
Returns: DataType
Parent Class: none |
module | errors | fenic.core._serde.proto.errors | Errors for the proto serde module. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/errors.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: errors
Qualified Name: fenic.core._serde.proto.errors
Docstring: Errors for the proto serde module.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | SerdeError | fenic.core._serde.proto.errors.SerdeError | Base exception for serialization/deserialization errors.
All serde-specific exceptions inherit from this class. Provides
consistent error handling with optional path and type information. | null | true | false | 8 | 15 | null | null | null | null | [
"Exception"
] | null | Type: class
Member Name: SerdeError
Qualified Name: fenic.core._serde.proto.errors.SerdeError
Docstring: Base exception for serialization/deserialization errors.
All serde-specific exceptions inherit from this class. Provides
consistent error handling with optional path and type information.
Value: none
Annotation: no... |
class | DeserializationError | fenic.core._serde.proto.errors.DeserializationError | Errors during deserialization from protobuf format. | null | true | false | 18 | 39 | null | null | null | null | [
"SerdeError"
] | null | Type: class
Member Name: DeserializationError
Qualified Name: fenic.core._serde.proto.errors.DeserializationError
Docstring: Errors during deserialization from protobuf format.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._serde.proto.errors.DeserializationError.__init__ | Initialize a DeserializationError.
Args:
message: The error message.
object_type: Optional type information for the error.
field_path: Optional field path where the error occurred. | null | true | false | 21 | 39 | null | null | null | [
"self",
"message",
"object_type",
"field_path"
] | null | DeserializationError | Type: method
Member Name: __init__
Qualified Name: fenic.core._serde.proto.errors.DeserializationError.__init__
Docstring: Initialize a DeserializationError.
Args:
message: The error message.
object_type: Optional type information for the error.
field_path: Optional field path where the error occurred.
Val... |
class | SerializationError | fenic.core._serde.proto.errors.SerializationError | Errors during serialization to protobuf format. | null | true | false | 42 | 63 | null | null | null | null | [
"SerdeError"
] | null | Type: class
Member Name: SerializationError
Qualified Name: fenic.core._serde.proto.errors.SerializationError
Docstring: Errors during serialization to protobuf format.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._serde.proto.errors.SerializationError.__init__ | Initialize a SerializationError.
Args:
message: The error message.
object_type: Optional type information for the error.
field_path: Optional field path where the error occurred. | null | true | false | 45 | 63 | null | null | null | [
"self",
"message",
"object_type",
"field_path"
] | null | SerializationError | Type: method
Member Name: __init__
Qualified Name: fenic.core._serde.proto.errors.SerializationError.__init__
Docstring: Initialize a SerializationError.
Args:
message: The error message.
object_type: Optional type information for the error.
field_path: Optional field path where the error occurred.
Value: ... |
class | UnsupportedTypeError | fenic.core._serde.proto.errors.UnsupportedTypeError | Errors for unsupported types. | null | true | false | 65 | 86 | null | null | null | null | [
"SerdeError"
] | null | Type: class
Member Name: UnsupportedTypeError
Qualified Name: fenic.core._serde.proto.errors.UnsupportedTypeError
Docstring: Errors for unsupported types.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._serde.proto.errors.UnsupportedTypeError.__init__ | Initialize an UnsupportedType error.
Args:
reason: The reason why the type is unsupported.
object_type: The unsupported type.
field_path: Optional field path where the error occurred. | null | true | false | 68 | 86 | null | null | null | [
"self",
"reason",
"object_type",
"field_path"
] | null | UnsupportedTypeError | Type: method
Member Name: __init__
Qualified Name: fenic.core._serde.proto.errors.UnsupportedTypeError.__init__
Docstring: Initialize an UnsupportedType error.
Args:
reason: The reason why the type is unsupported.
object_type: The unsupported type.
field_path: Optional field path where the error occurred.
... |
module | expression_serde | fenic.core._serde.proto.expression_serde | Expression serialization/deserialization using singledispatch.
This module provides the main dispatch functions for expression serialization.
The actual serialization implementations are organized in the expressions/ subdirectory. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/expression_serde.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: expression_serde
Qualified Name: fenic.core._serde.proto.expression_serde
Docstring: Expression serialization/deserialization using singledispatch.
This module provides the main dispatch functions for expression serialization.
The actual serialization implementations are organized in the expr... |
function | serialize_logical_expr | fenic.core._serde.proto.expression_serde.serialize_logical_expr | Serialize a logical expression to protobuf format.
This function uses singledispatch to handle different logical expression types.
Each expression type should have a corresponding register function that implements
the specific serialization logic.
Args:
logical: The logical expression to serialize.
context: T... | null | true | false | 21 | 47 | null | LogicalExprProto | null | [
"logical",
"context"
] | null | null | Type: function
Member Name: serialize_logical_expr
Qualified Name: fenic.core._serde.proto.expression_serde.serialize_logical_expr
Docstring: Serialize a logical expression to protobuf format.
This function uses singledispatch to handle different logical expression types.
Each expression type should have a correspondi... |
function | deserialize_logical_expr | fenic.core._serde.proto.expression_serde.deserialize_logical_expr | Deserialize a logical expression from protobuf format.
This function determines which oneof field is set in the LogicalExprProto
and delegates to the appropriate deserialization helper function.
Args:
logical_proto: The protobuf representation to deserialize.
context: The serde context for error reporting and... | null | true | false | 50 | 73 | null | Optional[LogicalExpr] | null | [
"logical_proto",
"context"
] | null | null | Type: function
Member Name: deserialize_logical_expr
Qualified Name: fenic.core._serde.proto.expression_serde.deserialize_logical_expr
Docstring: Deserialize a logical expression from protobuf format.
This function determines which oneof field is set in the LogicalExprProto
and delegates to the appropriate deserializa... |
function | _deserialize_logical_expr_helper | fenic.core._serde.proto.expression_serde._deserialize_logical_expr_helper | Deserialize a logical expression helper.
The actual deserialization implementations are registered in the expressions/ submodules. | null | false | true | 76 | 87 | null | LogicalExpr | null | [
"logical_proto",
"context"
] | null | null | Type: function
Member Name: _deserialize_logical_expr_helper
Qualified Name: fenic.core._serde.proto.expression_serde._deserialize_logical_expr_helper
Docstring: Deserialize a logical expression helper.
The actual deserialization implementations are registered in the expressions/ submodules.
Value: none
Annotation: no... |
module | plans | fenic.core._serde.proto.plans | Plan serialization/deserialization modules.
This module organizes plan serde functions according to the same structure
as the logical plan modules in _logical_plan/plans. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/__init__.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: plans
Qualified Name: fenic.core._serde.proto.plans
Docstring: Plan serialization/deserialization modules.
This module organizes plan serde functions according to the same structure
as the logical plan modules in _logical_plan/plans.
Value: none
Annotation: none
is Public? : true
is Private? ... |
module | aggregate | fenic.core._serde.proto.plans.aggregate | Aggregate plan serialization/deserialization. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/aggregate.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: aggregate
Qualified Name: fenic.core._serde.proto.plans.aggregate
Docstring: Aggregate plan serialization/deserialization.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | _serialize_aggregate | fenic.core._serde.proto.plans.aggregate._serialize_aggregate | Serialize an aggregate (wrapper). | null | false | true | 17 | 29 | null | LogicalPlanProto | null | [
"aggregate",
"context"
] | null | null | Type: function
Member Name: _serialize_aggregate
Qualified Name: fenic.core._serde.proto.plans.aggregate._serialize_aggregate
Docstring: Serialize an aggregate (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["aggregate", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_aggregate | fenic.core._serde.proto.plans.aggregate._deserialize_aggregate | Deserialize an Aggregate LogicalPlan Node. | null | false | true | 32 | 44 | null | Aggregate | null | [
"aggregate",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_aggregate
Qualified Name: fenic.core._serde.proto.plans.aggregate._deserialize_aggregate
Docstring: Deserialize an Aggregate LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["aggregate", "context", "schema"]
Returns: Aggregate
Par... |
module | sink | fenic.core._serde.proto.plans.sink | Sink plan serialization/deserialization. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/sink.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: sink
Qualified Name: fenic.core._serde.proto.plans.sink
Docstring: Sink plan serialization/deserialization.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | _serialize_file_sink | fenic.core._serde.proto.plans.sink._serialize_file_sink | Serialize a file sink (wrapper). | null | false | true | 21 | 33 | null | LogicalPlanProto | null | [
"file_sink",
"context"
] | null | null | Type: function
Member Name: _serialize_file_sink
Qualified Name: fenic.core._serde.proto.plans.sink._serialize_file_sink
Docstring: Serialize a file sink (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["file_sink", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_file_sink | fenic.core._serde.proto.plans.sink._deserialize_file_sink | Deserialize a FileSink LogicalPlan Node. | null | false | true | 36 | 47 | null | FileSink | null | [
"file_sink",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_file_sink
Qualified Name: fenic.core._serde.proto.plans.sink._deserialize_file_sink
Docstring: Deserialize a FileSink LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["file_sink", "context", "schema"]
Returns: FileSink
Parent Clas... |
function | _serialize_table_sink | fenic.core._serde.proto.plans.sink._serialize_table_sink | Serialize a table sink (wrapper). | null | false | true | 55 | 66 | null | LogicalPlanProto | null | [
"table_sink",
"context"
] | null | null | Type: function
Member Name: _serialize_table_sink
Qualified Name: fenic.core._serde.proto.plans.sink._serialize_table_sink
Docstring: Serialize a table sink (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["table_sink", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_table_sink | fenic.core._serde.proto.plans.sink._deserialize_table_sink | Deserialize a TableSink LogicalPlan Node. | null | false | true | 69 | 78 | null | null | null | [
"table_sink",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_table_sink
Qualified Name: fenic.core._serde.proto.plans.sink._deserialize_table_sink
Docstring: Deserialize a TableSink LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["table_sink", "context", "schema"]
Returns: none
Parent Clas... |
module | join | fenic.core._serde.proto.plans.join | Join plan serialization/deserialization. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/join.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: join
Qualified Name: fenic.core._serde.proto.plans.join
Docstring: Join plan serialization/deserialization.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | _serialize_join | fenic.core._serde.proto.plans.join._serialize_join | Serialize a join (wrapper). | null | false | true | 32 | 43 | null | LogicalPlanProto | null | [
"join",
"context"
] | null | null | Type: function
Member Name: _serialize_join
Qualified Name: fenic.core._serde.proto.plans.join._serialize_join
Docstring: Serialize a join (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["join", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_join | fenic.core._serde.proto.plans.join._deserialize_join | Deserialize a Join LogicalPlan Node. | null | false | true | 46 | 56 | null | Join | null | [
"join",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_join
Qualified Name: fenic.core._serde.proto.plans.join._deserialize_join
Docstring: Deserialize a Join LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["join", "context", "schema"]
Returns: Join
Parent Class: none |
function | _serialize_semantic_join | fenic.core._serde.proto.plans.join._serialize_semantic_join | Serialize a semantic join (wrapper). | null | false | true | 64 | 94 | null | LogicalPlanProto | null | [
"semantic_join",
"context"
] | null | null | Type: function
Member Name: _serialize_semantic_join
Qualified Name: fenic.core._serde.proto.plans.join._serialize_semantic_join
Docstring: Serialize a semantic join (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_join", "context"]
Returns: LogicalPlanProto
Parent Cl... |
function | _deserialize_semantic_join | fenic.core._serde.proto.plans.join._deserialize_semantic_join | Deserialize a SemanticJoin LogicalPlan Node. | null | false | true | 97 | 126 | null | SemanticJoin | null | [
"semantic_join",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_semantic_join
Qualified Name: fenic.core._serde.proto.plans.join._deserialize_semantic_join
Docstring: Deserialize a SemanticJoin LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_join", "context", "schema"]
Returns: Sema... |
function | _serialize_semantic_similarity_join | fenic.core._serde.proto.plans.join._serialize_semantic_similarity_join | Serialize a semantic similarity join (wrapper). | null | false | true | 134 | 154 | null | LogicalPlanProto | null | [
"semantic_similarity_join",
"context"
] | null | null | Type: function
Member Name: _serialize_semantic_similarity_join
Qualified Name: fenic.core._serde.proto.plans.join._serialize_semantic_similarity_join
Docstring: Serialize a semantic similarity join (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_similarity_join", "c... |
function | _deserialize_semantic_similarity_join | fenic.core._serde.proto.plans.join._deserialize_semantic_similarity_join | Deserialize a SemanticSimilarityJoin LogicalPlan Node. | null | false | true | 157 | 178 | null | SemanticSimilarityJoin | null | [
"semantic_similarity_join",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_semantic_similarity_join
Qualified Name: fenic.core._serde.proto.plans.join._deserialize_semantic_similarity_join
Docstring: Deserialize a SemanticSimilarityJoin LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_similarit... |
module | transform | fenic.core._serde.proto.plans.transform | Transform plan serialization/deserialization. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/transform.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: transform
Qualified Name: fenic.core._serde.proto.plans.transform
Docstring: Transform plan serialization/deserialization.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | _serialize_projection | fenic.core._serde.proto.plans.transform._serialize_projection | Serialize a projection (wrapper). | null | false | true | 43 | 53 | null | LogicalPlanProto | null | [
"projection",
"context"
] | null | null | Type: function
Member Name: _serialize_projection
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_projection
Docstring: Serialize a projection (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["projection", "context"]
Returns: LogicalPlanProto
Parent Class: no... |
function | _deserialize_projection | fenic.core._serde.proto.plans.transform._deserialize_projection | Deserialize a Projection LogicalPlan Node. | null | false | true | 56 | 63 | null | Projection | null | [
"projection",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_projection
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_projection
Docstring: Deserialize a Projection LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["projection", "context", "schema"]
Returns: Projection... |
function | _serialize_filter | fenic.core._serde.proto.plans.transform._serialize_filter | Serialize a filter (wrapper). | null | false | true | 71 | 81 | null | LogicalPlanProto | null | [
"filter_plan",
"context"
] | null | null | Type: function
Member Name: _serialize_filter
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_filter
Docstring: Serialize a filter (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["filter_plan", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_filter | fenic.core._serde.proto.plans.transform._deserialize_filter | Deserialize a Filter LogicalPlan Node. | null | false | true | 84 | 91 | null | Filter | null | [
"filter_proto",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_filter
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_filter
Docstring: Deserialize a Filter LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["filter_proto", "context", "schema"]
Returns: Filter
Parent Class:... |
function | _serialize_union | fenic.core._serde.proto.plans.transform._serialize_union | Serialize a union (wrapper). | null | false | true | 99 | 106 | null | LogicalPlanProto | null | [
"union",
"context"
] | null | null | Type: function
Member Name: _serialize_union
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_union
Docstring: Serialize a union (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["union", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_union | fenic.core._serde.proto.plans.transform._deserialize_union | Deserialize a Union LogicalPlan Node. | null | false | true | 109 | 115 | null | Union | null | [
"union",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_union
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_union
Docstring: Deserialize a Union LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["union", "context", "schema"]
Returns: Union
Parent Class: none |
function | _serialize_limit | fenic.core._serde.proto.plans.transform._serialize_limit | Serialize a limit (wrapper). | null | false | true | 123 | 131 | null | LogicalPlanProto | null | [
"limit",
"context"
] | null | null | Type: function
Member Name: _serialize_limit
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_limit
Docstring: Serialize a limit (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["limit", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_limit | fenic.core._serde.proto.plans.transform._deserialize_limit | Deserialize a Limit LogicalPlan Node. | null | false | true | 134 | 141 | null | Limit | null | [
"limit",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_limit
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_limit
Docstring: Deserialize a Limit LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["limit", "context", "schema"]
Returns: Limit
Parent Class: none |
function | _serialize_explode | fenic.core._serde.proto.plans.transform._serialize_explode | Serialize an explode (wrapper). | null | false | true | 149 | 160 | null | LogicalPlanProto | null | [
"explode",
"context"
] | null | null | Type: function
Member Name: _serialize_explode
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_explode
Docstring: Serialize an explode (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["explode", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_explode | fenic.core._serde.proto.plans.transform._deserialize_explode | Deserialize an Explode LogicalPlan Node. | null | false | true | 163 | 171 | null | Explode | null | [
"explode",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_explode
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_explode
Docstring: Deserialize an Explode LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["explode", "context", "schema"]
Returns: Explode
Parent Class:... |
function | _serialize_explode_with_index | fenic.core._serde.proto.plans.transform._serialize_explode_with_index | Serialize an explode_with_index (wrapper). | null | false | true | 179 | 192 | null | LogicalPlanProto | null | [
"explode_with_index",
"context"
] | null | null | Type: function
Member Name: _serialize_explode_with_index
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_explode_with_index
Docstring: Serialize an explode_with_index (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["explode_with_index", "context"]
Returns: ... |
function | _deserialize_explode_with_index | fenic.core._serde.proto.plans.transform._deserialize_explode_with_index | Deserialize an ExplodeWithIndex LogicalPlan Node. | null | false | true | 195 | 205 | null | ExplodeWithIndex | null | [
"explode_with_index",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_explode_with_index
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_explode_with_index
Docstring: Deserialize an ExplodeWithIndex LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["explode_with_index", "context"... |
function | _serialize_drop_duplicates | fenic.core._serde.proto.plans.transform._serialize_drop_duplicates | Serialize a drop duplicates (wrapper). | null | false | true | 213 | 223 | null | LogicalPlanProto | null | [
"drop_duplicates",
"context"
] | null | null | Type: function
Member Name: _serialize_drop_duplicates
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_drop_duplicates
Docstring: Serialize a drop duplicates (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["drop_duplicates", "context"]
Returns: LogicalPlanPr... |
function | _deserialize_drop_duplicates | fenic.core._serde.proto.plans.transform._deserialize_drop_duplicates | Deserialize a DropDuplicates LogicalPlan Node. | null | false | true | 226 | 237 | null | DropDuplicates | null | [
"drop_duplicates",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_drop_duplicates
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_drop_duplicates
Docstring: Deserialize a DropDuplicates LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["drop_duplicates", "context", "schema"]
... |
function | _serialize_sort | fenic.core._serde.proto.plans.transform._serialize_sort | Serialize a sort (wrapper). | null | false | true | 245 | 253 | null | LogicalPlanProto | null | [
"sort",
"context"
] | null | null | Type: function
Member Name: _serialize_sort
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_sort
Docstring: Serialize a sort (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["sort", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_sort | fenic.core._serde.proto.plans.transform._deserialize_sort | Deserialize a Sort LogicalPlan Node. | null | false | true | 256 | 263 | null | Sort | null | [
"sort",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_sort
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_sort
Docstring: Deserialize a Sort LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["sort", "context", "schema"]
Returns: Sort
Parent Class: none |
function | _serialize_unnest | fenic.core._serde.proto.plans.transform._serialize_unnest | Serialize an unnest (wrapper). | null | false | true | 271 | 281 | null | LogicalPlanProto | null | [
"unnest",
"context"
] | null | null | Type: function
Member Name: _serialize_unnest
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_unnest
Docstring: Serialize an unnest (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["unnest", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_unnest | fenic.core._serde.proto.plans.transform._deserialize_unnest | Deserialize an Unnest LogicalPlan Node. | null | false | true | 284 | 291 | null | Unnest | null | [
"unnest",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_unnest
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_unnest
Docstring: Deserialize an Unnest LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["unnest", "context", "schema"]
Returns: Unnest
Parent Class: none |
function | _serialize_sql | fenic.core._serde.proto.plans.transform._serialize_sql | Serialize a SQL (wrapper). | null | false | true | 299 | 308 | null | LogicalPlanProto | null | [
"sql",
"context"
] | null | null | Type: function
Member Name: _serialize_sql
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_sql
Docstring: Serialize a SQL (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["sql", "context"]
Returns: LogicalPlanProto
Parent Class: none |
function | _deserialize_sql | fenic.core._serde.proto.plans.transform._deserialize_sql | Deserialize a SQL LogicalPlan Node. | null | false | true | 311 | 319 | null | SQL | null | [
"sql",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_sql
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_sql
Docstring: Deserialize a SQL LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["sql", "context", "schema"]
Returns: SQL
Parent Class: none |
function | _serialize_semantic_cluster | fenic.core._serde.proto.plans.transform._serialize_semantic_cluster | Serialize a semantic cluster (wrapper). | null | false | true | 327 | 342 | null | LogicalPlanProto | null | [
"semantic_cluster",
"context"
] | null | null | Type: function
Member Name: _serialize_semantic_cluster
Qualified Name: fenic.core._serde.proto.plans.transform._serialize_semantic_cluster
Docstring: Serialize a semantic cluster (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_cluster", "context"]
Returns: LogicalPl... |
function | _deserialize_semantic_cluster | fenic.core._serde.proto.plans.transform._deserialize_semantic_cluster | Deserialize a SemanticCluster LogicalPlan Node. | null | false | true | 345 | 361 | null | SemanticCluster | null | [
"semantic_cluster_proto",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_semantic_cluster
Qualified Name: fenic.core._serde.proto.plans.transform._deserialize_semantic_cluster
Docstring: Deserialize a SemanticCluster LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["semantic_cluster_proto", "context", ... |
module | source | fenic.core._serde.proto.plans.source | Source plan serialization/deserialization. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_serde/proto/plans/source.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: source
Qualified Name: fenic.core._serde.proto.plans.source
Docstring: Source plan serialization/deserialization.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
function | _serialize_in_memory_source | fenic.core._serde.proto.plans.source._serialize_in_memory_source | Serialize a logical plan in memory (wrapper). | null | false | true | 34 | 43 | null | LogicalPlanProto | null | [
"in_memory_source",
"context"
] | null | null | Type: function
Member Name: _serialize_in_memory_source
Qualified Name: fenic.core._serde.proto.plans.source._serialize_in_memory_source
Docstring: Serialize a logical plan in memory (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["in_memory_source", "context"]
Returns: Logica... |
function | _deserialize_in_memory_source | fenic.core._serde.proto.plans.source._deserialize_in_memory_source | Deserialize an InMemorySource LogicalPlan Node. | null | false | true | 46 | 56 | null | null | null | [
"in_memory_source",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_in_memory_source
Qualified Name: fenic.core._serde.proto.plans.source._deserialize_in_memory_source
Docstring: Deserialize an InMemorySource LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["in_memory_source", "context", "schema"]... |
function | _serialize_file_source | fenic.core._serde.proto.plans.source._serialize_file_source | Serialize a file source (wrapper). | null | false | true | 64 | 85 | null | LogicalPlanProto | null | [
"file_source",
"context"
] | null | null | Type: function
Member Name: _serialize_file_source
Qualified Name: fenic.core._serde.proto.plans.source._serialize_file_source
Docstring: Serialize a file source (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["file_source", "context"]
Returns: LogicalPlanProto
Parent Class: n... |
function | _deserialize_file_source | fenic.core._serde.proto.plans.source._deserialize_file_source | Deserialize a FileSource LogicalPlan Node. | null | false | true | 88 | 103 | null | FileSource | null | [
"file_source",
"context",
"schema"
] | null | null | Type: function
Member Name: _deserialize_file_source
Qualified Name: fenic.core._serde.proto.plans.source._deserialize_file_source
Docstring: Deserialize a FileSource LogicalPlan Node.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["file_source", "context", "schema"]
Returns: FileSource... |
function | _serialize_table_source | fenic.core._serde.proto.plans.source._serialize_table_source | Serialize a table source (wrapper). | null | false | true | 111 | 120 | null | LogicalPlanProto | null | [
"table_source",
"context"
] | null | null | Type: function
Member Name: _serialize_table_source
Qualified Name: fenic.core._serde.proto.plans.source._serialize_table_source
Docstring: Serialize a table source (wrapper).
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["table_source", "context"]
Returns: LogicalPlanProto
Parent Clas... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.