ViewRepresentation

A structure that contains the dialect of the view, and the query that defines the view.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The dialect of the query engine.

Link copied to clipboard

The version of the dialect of the query engine. For example, 3.0.0.

Link copied to clipboard

Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.

Link copied to clipboard

The name of the connection to be used to validate the specific representation of the view.

Link copied to clipboard

The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example:

Link copied to clipboard

The SELECT query provided by the customer during CREATE VIEW DDL. This SQL is not used during a query on a view (ViewExpandedText is used instead). ViewOriginalText is used for cases like SHOW CREATE VIEW where users want to see the original DDL command that created the view.

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String