substrait
Allows conversion execution of Substrait query plans
Maintainer(s): anshuldata, cgkiran, EpsilonPrime
Installing and Loading
INSTALL substrait FROM community;LOAD substrait;Example
.mode lineCALL get_substrait('SELECT count(exercise) AS exercise FROM crossfit WHERE difficulty_level <= 5');Added Functions
| function_name | function_type | description | comment | examples |
|---|---|---|---|---|
| get_substrait | table | Converts the provided query into a binary Substrait plan | NULL | NULL |
| get_substrait_json | table | Converts the provided query into a Substrait plan in JSON | NULL | NULL |
| from_substrait | table | Executes a binary Substrait plan (provided as bytes) against DuckDB and returns the results | NULL | NULL |
| from_substrait_json | table | Executes a Substrait plan written in JSON against DuckDB and returns the results | NULL | NULL |
Overloaded Functions
This extension does not add any function overloads.
Added Types
This extension does not add any types.
Added Settings
This extension does not add any settings.