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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
class | OptimizationResult | fenic.core._logical_plan.optimizer.base.OptimizationResult | Holds the result of an optimization pass.
Includes both the optimized plan and whether any changes were made. | null | true | false | 9 | 17 | null | null | null | null | [] | null | Type: class
Member Name: OptimizationResult
Qualified Name: fenic.core._logical_plan.optimizer.base.OptimizationResult
Docstring: Holds the result of an optimization pass.
Includes both the optimized plan and whether any changes were made.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ... |
method | __init__ | fenic.core._logical_plan.optimizer.base.OptimizationResult.__init__ | null | null | true | false | 0 | 0 | null | None | null | [
"self",
"plan",
"was_modified"
] | null | OptimizationResult | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.optimizer.base.OptimizationResult.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "plan", "was_modified"]
Returns: None
Parent Class: OptimizationResult |
class | LogicalPlanOptimizerRule | fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizerRule | null | null | true | false | 20 | 32 | null | null | null | null | [
"ABC"
] | null | Type: class
Member Name: LogicalPlanOptimizerRule
Qualified Name: fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizerRule
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | apply | fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizerRule.apply | Apply the optimization rule to the logical plan.
Args:
logical_plan: The logical plan to optimize
session_state: The session state to use for the optimization
Returns:
OptimizationResult: The optimized plan and whether any changes were made | null | true | false | 21 | 32 | null | OptimizationResult | null | [
"self",
"logical_plan",
"session_state"
] | null | LogicalPlanOptimizerRule | Type: method
Member Name: apply
Qualified Name: fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizerRule.apply
Docstring: Apply the optimization rule to the logical plan.
Args:
logical_plan: The logical plan to optimize
session_state: The session state to use for the optimization
Returns:
Optimiza... |
class | LogicalPlanOptimizer | fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer | null | null | true | false | 35 | 58 | null | null | null | null | [] | null | Type: class
Member Name: LogicalPlanOptimizer
Qualified Name: fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer.__init__ | null | null | true | false | 36 | 38 | null | null | null | [
"self",
"session_state",
"rules"
] | null | LogicalPlanOptimizer | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "session_state", "rules"]
Returns: none
Parent Class: LogicalPlanOptimizer |
method | optimize | fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer.optimize | Optimize the logical plan using all rules.
Args:
logical_plan: The logical plan to optimize
session_state: The session state to use for the optimization
Returns:
OptimizationResult: The optimized plan and whether any changes were made | null | true | false | 40 | 58 | null | OptimizationResult | null | [
"self",
"logical_plan"
] | null | LogicalPlanOptimizer | Type: method
Member Name: optimize
Qualified Name: fenic.core._logical_plan.optimizer.base.LogicalPlanOptimizer.optimize
Docstring: Optimize the logical plan using all rules.
Args:
logical_plan: The logical plan to optimize
session_state: The session state to use for the optimization
Returns:
Optimization... |
module | plans | fenic.core._logical_plan.plans | Logical plan module for query representation.
Note: These classes are not part of the public API and should not be used directly. | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/plans/__init__.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: plans
Qualified Name: fenic.core._logical_plan.plans
Docstring: Logical plan module for query representation.
Note: These classes are not part of the public API and should not be used directly.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
P... |
attribute | __all__ | fenic.core._logical_plan.plans.__all__ | null | null | false | false | 35 | 61 | null | null | ['Aggregate', 'SemanticAggregate', 'SemanticCluster', 'CacheInfo', 'DocSource', 'LogicalPlan', 'Join', 'SemanticJoin', 'SemanticSimilarityJoin', 'FileSink', 'TableSink', 'FileSource', 'InMemorySource', 'TableSource', 'SQL', 'DropDuplicates', 'Explode', 'ExplodeWithIndex', 'Filter', 'Limit', 'Projection', 'Sort', 'Union... | null | null | null | Type: attribute
Member Name: __all__
Qualified Name: fenic.core._logical_plan.plans.__all__
Docstring: none
Value: ['Aggregate', 'SemanticAggregate', 'SemanticCluster', 'CacheInfo', 'DocSource', 'LogicalPlan', 'Join', 'SemanticJoin', 'SemanticSimilarityJoin', 'FileSink', 'TableSink', 'FileSource', 'InMemorySource', 'Ta... |
module | aggregate | fenic.core._logical_plan.plans.aggregate | null | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/plans/aggregate.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: aggregate
Qualified Name: fenic.core._logical_plan.plans.aggregate
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | Aggregate | fenic.core._logical_plan.plans.aggregate.Aggregate | null | null | true | false | 18 | 108 | null | null | null | null | [
"LogicalPlan"
] | null | Type: class
Member Name: Aggregate
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.aggregate.Aggregate.__init__ | null | null | true | false | 19 | 34 | null | null | null | [
"self",
"input",
"group_exprs",
"agg_exprs",
"session_state",
"schema"
] | null | Aggregate | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "input", "group_exprs", "agg_exprs", "session_state", "schema"]
Returns: none
Parent Class: Aggregate |
method | from_session_state | fenic.core._logical_plan.plans.aggregate.Aggregate.from_session_state | null | null | true | false | 36 | 44 | null | Aggregate | null | [
"cls",
"input",
"group_exprs",
"agg_exprs",
"session_state"
] | null | Aggregate | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "input", "group_exprs", "agg_exprs", "session_state"]
Returns: Aggregate
Parent Class:... |
method | from_schema | fenic.core._logical_plan.plans.aggregate.Aggregate.from_schema | null | null | true | false | 46 | 54 | null | Aggregate | null | [
"cls",
"input",
"group_exprs",
"agg_exprs",
"schema"
] | null | Aggregate | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "input", "group_exprs", "agg_exprs", "schema"]
Returns: Aggregate
Parent Class: Aggregate |
method | children | fenic.core._logical_plan.plans.aggregate.Aggregate.children | null | null | true | false | 56 | 57 | null | List[LogicalPlan] | null | [
"self"
] | null | Aggregate | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: Aggregate |
method | _build_schema | fenic.core._logical_plan.plans.aggregate.Aggregate._build_schema | null | null | false | true | 59 | 77 | null | Schema | null | [
"self",
"session_state"
] | null | Aggregate | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate._build_schema
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class: Aggregate |
method | _repr | fenic.core._logical_plan.plans.aggregate.Aggregate._repr | null | null | false | true | 79 | 80 | null | str | null | [
"self"
] | null | Aggregate | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate._repr
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: Aggregate |
method | group_exprs | fenic.core._logical_plan.plans.aggregate.Aggregate.group_exprs | null | null | true | false | 82 | 83 | null | List[LogicalExpr] | null | [
"self"
] | null | Aggregate | Type: method
Member Name: group_exprs
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.group_exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Aggregate |
method | agg_exprs | fenic.core._logical_plan.plans.aggregate.Aggregate.agg_exprs | null | null | true | false | 85 | 86 | null | List[LogicalExpr] | null | [
"self"
] | null | Aggregate | Type: method
Member Name: agg_exprs
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.agg_exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Aggregate |
method | exprs | fenic.core._logical_plan.plans.aggregate.Aggregate.exprs | null | null | true | false | 88 | 91 | null | List[LogicalExpr] | null | [
"self"
] | null | Aggregate | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Aggregate |
method | with_children | fenic.core._logical_plan.plans.aggregate.Aggregate.with_children | null | null | true | false | 93 | 98 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | Aggregate | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate.with_children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "children", "session_state"]
Returns: LogicalPlan
Parent Class: Aggregate |
method | _eq_specific | fenic.core._logical_plan.plans.aggregate.Aggregate._eq_specific | null | null | false | true | 100 | 108 | null | bool | null | [
"self",
"other"
] | null | Aggregate | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.aggregate.Aggregate._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: Aggregate |
function | _validate_groupby_expr | fenic.core._logical_plan.plans.aggregate._validate_groupby_expr | Validate groupby expressions. | null | false | true | 110 | 121 | null | null | null | [
"expr"
] | null | null | Type: function
Member Name: _validate_groupby_expr
Qualified Name: fenic.core._logical_plan.plans.aggregate._validate_groupby_expr
Docstring: Validate groupby expressions.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["expr"]
Returns: none
Parent Class: none |
module | sink | fenic.core._logical_plan.plans.sink | null | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/plans/sink.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: sink
Qualified Name: fenic.core._logical_plan.plans.sink
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | FileSink | fenic.core._logical_plan.plans.sink.FileSink | Logical plan node that represents a file writing operation. | null | true | false | 14 | 117 | null | null | null | null | [
"LogicalPlan"
] | null | Type: class
Member Name: FileSink
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink
Docstring: Logical plan node that represents a file writing operation.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.sink.FileSink.__init__ | Initialize a file sink node.
Args:
child: The logical plan that produces data to be written
sink_type: The type of file sink (CSV, Parquet)
path: File path to write to
mode: Write mode - "error" or "overwrite". Default: "overwrite"
- error: Raises an error if file exists
- overwrite: ... | null | true | false | 17 | 42 | null | null | null | [
"self",
"child",
"sink_type",
"path",
"mode",
"session_state",
"schema"
] | null | FileSink | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.__init__
Docstring: Initialize a file sink node.
Args:
child: The logical plan that produces data to be written
sink_type: The type of file sink (CSV, Parquet)
path: File path to write to
mode: Write mode - ... |
method | from_session_state | fenic.core._logical_plan.plans.sink.FileSink.from_session_state | null | null | true | false | 44 | 53 | null | FileSink | null | [
"cls",
"child",
"sink_type",
"path",
"mode",
"session_state"
] | null | FileSink | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "child", "sink_type", "path", "mode", "session_state"]
Returns: FileSink
Parent Class: FileS... |
method | from_schema | fenic.core._logical_plan.plans.sink.FileSink.from_schema | null | null | true | false | 55 | 64 | null | FileSink | null | [
"cls",
"child",
"sink_type",
"path",
"mode",
"schema"
] | null | FileSink | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "child", "sink_type", "path", "mode", "schema"]
Returns: FileSink
Parent Class: FileSink |
method | children | fenic.core._logical_plan.plans.sink.FileSink.children | Returns the child node of this sink operator. | null | true | false | 66 | 68 | null | List[LogicalPlan] | null | [
"self"
] | null | FileSink | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.children
Docstring: Returns the child node of this sink operator.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: FileSink |
method | exprs | fenic.core._logical_plan.plans.sink.FileSink.exprs | null | null | true | false | 70 | 71 | null | List[LogicalExpr] | null | [
"self"
] | null | FileSink | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: FileSink |
method | _build_schema | fenic.core._logical_plan.plans.sink.FileSink._build_schema | The schema of a sink node is the same as its child's schema. | null | false | true | 73 | 75 | null | Schema | null | [
"self",
"session_state"
] | null | FileSink | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink._build_schema
Docstring: The schema of a sink node is the same as its child's schema.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class... |
method | _repr | fenic.core._logical_plan.plans.sink.FileSink._repr | Return the string representation for this file sink plan. | null | false | true | 77 | 81 | null | str | null | [
"self"
] | null | FileSink | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink._repr
Docstring: Return the string representation for this file sink plan.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: FileSink |
method | with_children | fenic.core._logical_plan.plans.sink.FileSink.with_children | Create a new file sink with the same properties but different children.
Args:
children: The new children for this node. Must contain exactly one child.
session_state: The session state to use for the new node.
Returns:
A new FileSink instance with the updated child.
Raises:
ValueError: If children do... | null | true | false | 83 | 110 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | FileSink | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink.with_children
Docstring: Create a new file sink with the same properties but different children.
Args:
children: The new children for this node. Must contain exactly one child.
session_state: The session state ... |
method | _eq_specific | fenic.core._logical_plan.plans.sink.FileSink._eq_specific | null | null | false | true | 112 | 117 | null | bool | null | [
"self",
"other"
] | null | FileSink | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.sink.FileSink._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: FileSink |
class | TableSink | fenic.core._logical_plan.plans.sink.TableSink | Logical plan node that represents a table writing operation. | null | true | false | 119 | 215 | null | null | null | null | [
"LogicalPlan"
] | null | Type: class
Member Name: TableSink
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink
Docstring: Logical plan node that represents a table writing operation.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.sink.TableSink.__init__ | Initialize a table sink node.
Args:
child: The logical plan that produces data to be written
table_name: Name of the table to write to
mode: Write mode. Default: "error"
- error: Raises an error if table exists
- append: Appends data to table if it exists
- overwrite: Overwrites ... | null | true | false | 122 | 146 | null | null | null | [
"self",
"child",
"table_name",
"mode",
"session_state",
"schema"
] | null | TableSink | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.__init__
Docstring: Initialize a table sink node.
Args:
child: The logical plan that produces data to be written
table_name: Name of the table to write to
mode: Write mode. Default: "error"
- error: Ra... |
method | from_session_state | fenic.core._logical_plan.plans.sink.TableSink.from_session_state | null | null | true | false | 148 | 156 | null | TableSink | null | [
"cls",
"child",
"table_name",
"mode",
"session_state"
] | null | TableSink | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "child", "table_name", "mode", "session_state"]
Returns: TableSink
Parent Class: TableSink |
method | from_schema | fenic.core._logical_plan.plans.sink.TableSink.from_schema | null | null | true | false | 158 | 166 | null | TableSink | null | [
"cls",
"child",
"table_name",
"mode",
"schema"
] | null | TableSink | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "child", "table_name", "mode", "schema"]
Returns: TableSink
Parent Class: TableSink |
method | children | fenic.core._logical_plan.plans.sink.TableSink.children | Returns the child node of this sink operator. | null | true | false | 168 | 170 | null | List[LogicalPlan] | null | [
"self"
] | null | TableSink | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.children
Docstring: Returns the child node of this sink operator.
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: TableSink |
method | exprs | fenic.core._logical_plan.plans.sink.TableSink.exprs | null | null | true | false | 172 | 173 | null | List[LogicalExpr] | null | [
"self"
] | null | TableSink | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: TableSink |
method | _build_schema | fenic.core._logical_plan.plans.sink.TableSink._build_schema | The schema of a sink node is the same as its child's schema. | null | false | true | 175 | 177 | null | Schema | null | [
"self",
"session_state"
] | null | TableSink | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink._build_schema
Docstring: The schema of a sink node is the same as its child's schema.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Clas... |
method | _repr | fenic.core._logical_plan.plans.sink.TableSink._repr | Return the string representation for this table sink plan. | null | false | true | 179 | 181 | null | str | null | [
"self"
] | null | TableSink | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink._repr
Docstring: Return the string representation for this table sink plan.
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: TableSink |
method | with_children | fenic.core._logical_plan.plans.sink.TableSink.with_children | Create a new table sink with the same properties but different children.
Args:
children: The new children for this node. Must contain exactly one child.
session_state: The session state to use for the new node.
Returns:
A new TableSink instance with the updated child.
Raises:
ValueError: If children ... | null | true | false | 183 | 209 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | TableSink | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink.with_children
Docstring: Create a new table sink with the same properties but different children.
Args:
children: The new children for this node. Must contain exactly one child.
session_state: The session stat... |
method | _eq_specific | fenic.core._logical_plan.plans.sink.TableSink._eq_specific | null | null | false | true | 211 | 215 | null | bool | null | [
"self",
"other"
] | null | TableSink | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.sink.TableSink._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: TableSink |
module | join | fenic.core._logical_plan.plans.join | null | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/plans/join.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: join
Qualified Name: fenic.core._logical_plan.plans.join
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | Join | fenic.core._logical_plan.plans.join.Join | null | null | true | false | 30 | 150 | null | null | null | null | [
"LogicalPlan"
] | null | Type: class
Member Name: Join
Qualified Name: fenic.core._logical_plan.plans.join.Join
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.join.Join.__init__ | null | null | true | false | 31 | 49 | null | null | null | [
"self",
"left",
"right",
"left_on",
"right_on",
"how",
"session_state",
"schema"
] | null | Join | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.join.Join.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "left", "right", "left_on", "right_on", "how", "session_state", "schema"]
Returns: none
Parent Class: Join |
method | from_session_state | fenic.core._logical_plan.plans.join.Join.from_session_state | null | null | true | false | 51 | 59 | null | Join | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"how",
"session_state"
] | null | Join | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.join.Join.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "how", "session_state"]
Returns: Join
Parent Class: Join |
method | from_schema | fenic.core._logical_plan.plans.join.Join.from_schema | null | null | true | false | 61 | 69 | null | Join | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"how",
"schema"
] | null | Join | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.join.Join.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "how", "schema"]
Returns: Join
Parent Class: Join |
method | children | fenic.core._logical_plan.plans.join.Join.children | null | null | true | false | 71 | 72 | null | List[LogicalPlan] | null | [
"self"
] | null | Join | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.join.Join.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: Join |
method | exprs | fenic.core._logical_plan.plans.join.Join.exprs | null | null | true | false | 74 | 75 | null | List[LogicalExpr] | null | [
"self"
] | null | Join | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.join.Join.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Join |
method | _build_schema | fenic.core._logical_plan.plans.join.Join._build_schema | null | null | false | true | 77 | 124 | null | Schema | null | [
"self",
"session_state"
] | null | Join | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.join.Join._build_schema
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class: Join |
method | _repr | fenic.core._logical_plan.plans.join.Join._repr | null | null | false | true | 126 | 127 | null | str | null | [
"self"
] | null | Join | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.join.Join._repr
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: Join |
method | left_on | fenic.core._logical_plan.plans.join.Join.left_on | null | null | true | false | 129 | 130 | null | List[LogicalExpr] | null | [
"self"
] | null | Join | Type: method
Member Name: left_on
Qualified Name: fenic.core._logical_plan.plans.join.Join.left_on
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Join |
method | right_on | fenic.core._logical_plan.plans.join.Join.right_on | null | null | true | false | 132 | 133 | null | List[LogicalExpr] | null | [
"self"
] | null | Join | Type: method
Member Name: right_on
Qualified Name: fenic.core._logical_plan.plans.join.Join.right_on
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Join |
method | how | fenic.core._logical_plan.plans.join.Join.how | null | null | true | false | 135 | 136 | null | str | null | [
"self"
] | null | Join | Type: method
Member Name: how
Qualified Name: fenic.core._logical_plan.plans.join.Join.how
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: Join |
method | with_children | fenic.core._logical_plan.plans.join.Join.with_children | null | null | true | false | 138 | 143 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | Join | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.join.Join.with_children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "children", "session_state"]
Returns: LogicalPlan
Parent Class: Join |
method | _eq_specific | fenic.core._logical_plan.plans.join.Join._eq_specific | null | null | false | true | 145 | 150 | null | bool | null | [
"self",
"other"
] | null | Join | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.join.Join._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: Join |
class | BaseSemanticJoin | fenic.core._logical_plan.plans.join.BaseSemanticJoin | null | null | true | false | 153 | 192 | null | null | null | null | [
"LogicalPlan",
"ABC"
] | null | Type: class
Member Name: BaseSemanticJoin
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.join.BaseSemanticJoin.__init__ | null | null | true | false | 154 | 166 | null | null | null | [
"self",
"left",
"right",
"left_on",
"right_on",
"session_state",
"schema"
] | null | BaseSemanticJoin | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "left", "right", "left_on", "right_on", "session_state", "schema"]
Returns: none
Parent Class: BaseSema... |
method | _validate_columns | fenic.core._logical_plan.plans.join.BaseSemanticJoin._validate_columns | null | null | false | true | 168 | 170 | null | None | null | [
"self",
"session_state"
] | null | BaseSemanticJoin | Type: method
Member Name: _validate_columns
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin._validate_columns
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: None
Parent Class: BaseSemanticJoin |
method | _build_schema | fenic.core._logical_plan.plans.join.BaseSemanticJoin._build_schema | null | null | false | true | 172 | 176 | null | Schema | null | [
"self",
"session_state"
] | null | BaseSemanticJoin | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin._build_schema
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class: BaseSemanticJoin |
method | left_on | fenic.core._logical_plan.plans.join.BaseSemanticJoin.left_on | null | null | true | false | 178 | 179 | null | LogicalExpr | null | [
"self"
] | null | BaseSemanticJoin | Type: method
Member Name: left_on
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.left_on
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: LogicalExpr
Parent Class: BaseSemanticJoin |
method | right_on | fenic.core._logical_plan.plans.join.BaseSemanticJoin.right_on | null | null | true | false | 181 | 182 | null | LogicalExpr | null | [
"self"
] | null | BaseSemanticJoin | Type: method
Member Name: right_on
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.right_on
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: LogicalExpr
Parent Class: BaseSemanticJoin |
method | children | fenic.core._logical_plan.plans.join.BaseSemanticJoin.children | null | null | true | false | 184 | 185 | null | List[LogicalPlan] | null | [
"self"
] | null | BaseSemanticJoin | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: BaseSemanticJoin |
method | exprs | fenic.core._logical_plan.plans.join.BaseSemanticJoin.exprs | null | null | true | false | 187 | 188 | null | List[LogicalExpr] | null | [
"self"
] | null | BaseSemanticJoin | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: BaseSemanticJoin |
method | with_children | fenic.core._logical_plan.plans.join.BaseSemanticJoin.with_children | null | null | true | false | 190 | 192 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | BaseSemanticJoin | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.join.BaseSemanticJoin.with_children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "children", "session_state"]
Returns: LogicalPlan
Parent Class: BaseSemanticJoin |
class | SemanticJoin | fenic.core._logical_plan.plans.join.SemanticJoin | null | null | true | false | 195 | 335 | null | null | null | null | [
"BaseSemanticJoin"
] | null | Type: class
Member Name: SemanticJoin
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.join.SemanticJoin.__init__ | null | null | true | false | 196 | 221 | null | null | null | [
"self",
"left",
"right",
"left_on",
"right_on",
"jinja_template",
"strict",
"temperature",
"model_alias",
"examples",
"request_timeout",
"session_state",
"schema"
] | null | SemanticJoin | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "left", "right", "left_on", "right_on", "jinja_template", "strict", "temperature", "model_alias", "examples... |
method | from_session_state | fenic.core._logical_plan.plans.join.SemanticJoin.from_session_state | null | null | true | false | 223 | 246 | null | SemanticJoin | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"jinja_template",
"strict",
"temperature",
"model_alias",
"examples",
"request_timeout",
"session_state"
] | null | SemanticJoin | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "jinja_template", "strict", "temperature", "mode... |
method | from_schema | fenic.core._logical_plan.plans.join.SemanticJoin.from_schema | null | null | true | false | 248 | 271 | null | SemanticJoin | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"jinja_template",
"strict",
"temperature",
"model_alias",
"examples",
"request_timeout",
"schema"
] | null | SemanticJoin | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "jinja_template", "strict", "temperature", "model_alias", "exa... |
method | _validate_columns | fenic.core._logical_plan.plans.join.SemanticJoin._validate_columns | null | null | false | true | 274 | 288 | null | None | null | [
"self",
"session_state"
] | null | SemanticJoin | Type: method
Member Name: _validate_columns
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin._validate_columns
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: None
Parent Class: SemanticJoin |
method | jinja_template | fenic.core._logical_plan.plans.join.SemanticJoin.jinja_template | null | null | true | false | 290 | 291 | null | str | null | [
"self"
] | null | SemanticJoin | Type: method
Member Name: jinja_template
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.jinja_template
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: str
Parent Class: SemanticJoin |
method | strict | fenic.core._logical_plan.plans.join.SemanticJoin.strict | null | null | true | false | 293 | 294 | null | bool | null | [
"self"
] | null | SemanticJoin | Type: method
Member Name: strict
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.strict
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: bool
Parent Class: SemanticJoin |
method | examples | fenic.core._logical_plan.plans.join.SemanticJoin.examples | null | null | true | false | 296 | 297 | null | Optional[JoinExampleCollection] | null | [
"self"
] | null | SemanticJoin | Type: method
Member Name: examples
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.examples
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: Optional[JoinExampleCollection]
Parent Class: SemanticJoin |
method | _repr | fenic.core._logical_plan.plans.join.SemanticJoin._repr | null | null | false | true | 299 | 303 | null | str | null | [
"self"
] | null | SemanticJoin | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin._repr
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: SemanticJoin |
method | with_children | fenic.core._logical_plan.plans.join.SemanticJoin.with_children | null | null | true | false | 305 | 323 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | SemanticJoin | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin.with_children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "children", "session_state"]
Returns: LogicalPlan
Parent Class: SemanticJoin |
method | _eq_specific | fenic.core._logical_plan.plans.join.SemanticJoin._eq_specific | null | null | false | true | 325 | 335 | null | bool | null | [
"self",
"other"
] | null | SemanticJoin | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.join.SemanticJoin._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: SemanticJoin |
class | SemanticSimilarityJoin | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin | null | null | true | false | 338 | 474 | null | null | null | null | [
"BaseSemanticJoin"
] | null | Type: class
Member Name: SemanticSimilarityJoin
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.__init__ | null | null | true | false | 339 | 358 | null | null | null | [
"self",
"left",
"right",
"left_on",
"right_on",
"k",
"similarity_metric",
"similarity_score_column",
"request_timeout",
"session_state",
"schema"
] | null | SemanticSimilarityJoin | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "left", "right", "left_on", "right_on", "k", "similarity_metric", "similarity_score_column", "req... |
method | from_session_state | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.from_session_state | null | null | true | false | 360 | 379 | null | SemanticSimilarityJoin | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"k",
"similarity_metric",
"similarity_score_column",
"request_timeout",
"session_state"
] | null | SemanticSimilarityJoin | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "k", "similarity_metric", "similarity_... |
method | from_schema | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.from_schema | null | null | true | false | 381 | 400 | null | SemanticSimilarityJoin | null | [
"cls",
"left",
"right",
"left_on",
"right_on",
"k",
"similarity_metric",
"similarity_score_column",
"request_timeout",
"schema"
] | null | SemanticSimilarityJoin | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "left", "right", "left_on", "right_on", "k", "similarity_metric", "similarity_score_column",... |
method | _validate_columns | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._validate_columns | null | null | false | true | 402 | 412 | null | None | null | [
"self",
"session_state"
] | null | SemanticSimilarityJoin | Type: method
Member Name: _validate_columns
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._validate_columns
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: None
Parent Class: SemanticSimilarityJoin |
method | k | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.k | null | null | true | false | 414 | 415 | null | int | null | [
"self"
] | null | SemanticSimilarityJoin | Type: method
Member Name: k
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.k
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: int
Parent Class: SemanticSimilarityJoin |
method | similarity_metric | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.similarity_metric | null | null | true | false | 417 | 418 | null | SemanticSimilarityMetric | null | [
"self"
] | null | SemanticSimilarityJoin | Type: method
Member Name: similarity_metric
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.similarity_metric
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: SemanticSimilarityMetric
Parent Class: SemanticSimilarityJoin |
method | similarity_score_column | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.similarity_score_column | null | null | true | false | 420 | 421 | null | Optional[str] | null | [
"self"
] | null | SemanticSimilarityJoin | Type: method
Member Name: similarity_score_column
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.similarity_score_column
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: Optional[str]
Parent Class: SemanticSimilarityJoin |
method | _repr | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._repr | null | null | false | true | 423 | 427 | null | str | null | [
"self"
] | null | SemanticSimilarityJoin | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._repr
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: SemanticSimilarityJoin |
method | _build_schema | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._build_schema | null | null | false | true | 429 | 444 | null | Schema | null | [
"self",
"session_state"
] | null | SemanticSimilarityJoin | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._build_schema
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class: SemanticSimilarityJoin |
method | with_children | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.with_children | null | null | true | false | 446 | 464 | null | LogicalPlan | null | [
"self",
"children",
"session_state"
] | null | SemanticSimilarityJoin | Type: method
Member Name: with_children
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin.with_children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "children", "session_state"]
Returns: LogicalPlan
Parent Class: SemanticSimilarityJoin |
method | _eq_specific | fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._eq_specific | null | null | false | true | 466 | 474 | null | bool | null | [
"self",
"other"
] | null | SemanticSimilarityJoin | Type: method
Member Name: _eq_specific
Qualified Name: fenic.core._logical_plan.plans.join.SemanticSimilarityJoin._eq_specific
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "other"]
Returns: bool
Parent Class: SemanticSimilarityJoin |
module | transform | fenic.core._logical_plan.plans.transform | null | /private/var/folders/w2/dyfkx_354cqghs4b74vb_x380000gn/T/fenic-clone-0.11.0-a2lcuovw/fenic/src/fenic/core/_logical_plan/plans/transform.py | true | false | null | null | null | null | null | null | null | null | Type: module
Member Name: transform
Qualified Name: fenic.core._logical_plan.plans.transform
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
attribute | logger | fenic.core._logical_plan.plans.transform.logger | null | null | true | false | 38 | 38 | null | null | logging.getLogger(__name__) | null | null | null | Type: attribute
Member Name: logger
Qualified Name: fenic.core._logical_plan.plans.transform.logger
Docstring: none
Value: logging.getLogger(__name__)
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
class | Projection | fenic.core._logical_plan.plans.transform.Projection | null | null | true | false | 40 | 88 | null | null | null | null | [
"LogicalPlan"
] | null | Type: class
Member Name: Projection
Qualified Name: fenic.core._logical_plan.plans.transform.Projection
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: none
Returns: none
Parent Class: none |
method | __init__ | fenic.core._logical_plan.plans.transform.Projection.__init__ | null | null | true | false | 41 | 51 | null | null | null | [
"self",
"input",
"exprs",
"session_state",
"schema"
] | null | Projection | Type: method
Member Name: __init__
Qualified Name: fenic.core._logical_plan.plans.transform.Projection.__init__
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self", "input", "exprs", "session_state", "schema"]
Returns: none
Parent Class: Projection |
method | from_schema | fenic.core._logical_plan.plans.transform.Projection.from_schema | null | null | true | false | 53 | 55 | null | Projection | null | [
"cls",
"input",
"exprs",
"schema"
] | null | Projection | Type: method
Member Name: from_schema
Qualified Name: fenic.core._logical_plan.plans.transform.Projection.from_schema
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "input", "exprs", "schema"]
Returns: Projection
Parent Class: Projection |
method | from_session_state | fenic.core._logical_plan.plans.transform.Projection.from_session_state | null | null | true | false | 57 | 59 | null | Projection | null | [
"cls",
"input",
"exprs",
"session_state"
] | null | Projection | Type: method
Member Name: from_session_state
Qualified Name: fenic.core._logical_plan.plans.transform.Projection.from_session_state
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["cls", "input", "exprs", "session_state"]
Returns: Projection
Parent Class: Projection |
method | children | fenic.core._logical_plan.plans.transform.Projection.children | null | null | true | false | 61 | 62 | null | List[LogicalPlan] | null | [
"self"
] | null | Projection | Type: method
Member Name: children
Qualified Name: fenic.core._logical_plan.plans.transform.Projection.children
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalPlan]
Parent Class: Projection |
method | _build_schema | fenic.core._logical_plan.plans.transform.Projection._build_schema | null | null | false | true | 64 | 68 | null | Schema | null | [
"self",
"session_state"
] | null | Projection | Type: method
Member Name: _build_schema
Qualified Name: fenic.core._logical_plan.plans.transform.Projection._build_schema
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self", "session_state"]
Returns: Schema
Parent Class: Projection |
method | exprs | fenic.core._logical_plan.plans.transform.Projection.exprs | null | null | true | false | 70 | 71 | null | List[LogicalExpr] | null | [
"self"
] | null | Projection | Type: method
Member Name: exprs
Qualified Name: fenic.core._logical_plan.plans.transform.Projection.exprs
Docstring: none
Value: none
Annotation: none
is Public? : true
is Private? : false
Parameters: ["self"]
Returns: List[LogicalExpr]
Parent Class: Projection |
method | _repr | fenic.core._logical_plan.plans.transform.Projection._repr | null | null | false | true | 73 | 75 | null | str | null | [
"self"
] | null | Projection | Type: method
Member Name: _repr
Qualified Name: fenic.core._logical_plan.plans.transform.Projection._repr
Docstring: none
Value: none
Annotation: none
is Public? : false
is Private? : true
Parameters: ["self"]
Returns: str
Parent Class: Projection |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.