QueryResult

data class QueryResult(val table: PsiNamedElement? = null, val columns: List<QueryElement.QueryColumn>, val synthesizedColumns: List<QueryElement.SynthesizedColumn> = emptyList(), val joinConstraint: SqlJoinConstraint? = null, val adjacent: Boolean = false)

Parameters

adjacent

true if this query result comes from a FROM clause adjacent to the element asking for query results.

Constructors

Link copied to clipboard
constructor(column: PsiElement)
constructor(table: PsiNamedElement? = null, columns: List<QueryElement.QueryColumn>, synthesizedColumns: List<QueryElement.SynthesizedColumn> = emptyList(), joinConstraint: SqlJoinConstraint? = null, adjacent: Boolean = false)

Properties

Link copied to clipboard
val adjacent: Boolean = false
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val table: PsiNamedElement? = null

Functions

Link copied to clipboard
open override fun toString(): String