Documentation
¶
Overview ¶
Package dialect provides SQL dialect definitions for the transpiler.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dialect ¶
type Dialect int
Dialect represents a SQL dialect that the transpiler can target.
const ( // DialectUnspecified is the zero value, indicating no dialect was set. // This will cause an error if used - users must explicitly set a dialect. DialectUnspecified Dialect = iota // DialectBigQuery targets Google BigQuery SQL syntax. DialectBigQuery // DialectSpanner targets Google Cloud Spanner SQL syntax. DialectSpanner )
Click to show internal directories.
Click to hide internal directories.