All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.partiql.lang.eval.physical.VariableBinding.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0-perf.1
Show newest version
package org.partiql.lang.eval.physical

import org.partiql.lang.eval.physical.operators.ValueExpression

/**
 * A compiled variable binding.
 *
 * @property setFunc The function to be invoked at evaluation-time to set the value of the variable.
 * @property expr The function to be invoked at evaluation-time to compute the value of the variable.
 */
class VariableBinding(
    val setFunc: SetVariableFunc,
    val expr: ValueExpression
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy