Module datafusion_jit::api

source ·
Expand description

Constructing a function AST at runtime.

Structs

  • The very first step for constructing a function at runtime.
  • State of Assembler, keep tracking of generated function names and registered external functions.
  • Code block consists of statements and acts as anonymous namespace scope for items and variable declarations.
  • Function builder API. Stores the state while we are constructing an AST for a function.
  • A function consisting of AST nodes that JIT can compile.