Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Part of the goal of Arrow DataFusion Python is to easily allow datafusion to parse and execute sql on different python runtimes. Given this there is lots of behavior that is shared between the implementations of all of these runtimes. We should create an "abstract like" BaseSessionContext class that is extended by all implementations that wish to use our built in sql processing logic.
For example currently we have examples for polars and cudf but that will certainly grow.
Describe the solution you'd like
Create a base class BaseSessionContext that defines the common methods and behaviors across all implementations.
Describe alternatives you've considered
None
Additional context
None
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Part of the goal of Arrow DataFusion Python is to easily allow datafusion to parse and execute sql on different python runtimes. Given this there is lots of behavior that is shared between the implementations of all of these runtimes. We should create an "abstract like"
BaseSessionContextclass that is extended by all implementations that wish to use our built in sql processing logic.For example currently we have examples for polars and cudf but that will certainly grow.
Describe the solution you'd like
Create a base class
BaseSessionContextthat defines the common methods and behaviors across all implementations.Describe alternatives you've considered
None
Additional context
None