org.partiql.lang.ast.IsOrderedMeta.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partiql-lang-kotlin Show documentation
Show all versions of partiql-lang-kotlin Show documentation
An implementation of PartiQL for the JVM written in Kotlin.
package org.partiql.lang.ast
/**
* To reduce any extraneous passes over data, this [Meta] indicates whether the associated BindingsToValues Physical
* expression should be an ordered list or a bag.
*/
object IsOrderedMeta : Meta {
override val tag = "\$is_ordered"
}