Documentation ¶
Overview ¶
Package bigqueryio provides transformations and utilities to interact with Google BigQuery. See also: https://cloud.google.com/bigquery/docs.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Query ¶
Query executes a query. The output must have a schema compatible with the given type, t. It returns a PCollection<t>.
Types ¶
type QualifiedTableName ¶
type QualifiedTableName struct { // Project is the Google Cloud project ID. Project string `json:"project"` // Dataset is the dataset ID within the project. Dataset string `json:"dataset"` // Table is the table ID within the dataset. Table string `json:"table"` }
QualifiedTableName is a fully qualified name of a bigquery table.
func NewQualifiedTableName ¶
func NewQualifiedTableName(s string) (QualifiedTableName, error)
NewQualifiedTableName parses "<project>:<dataset>.<table>" into a QualifiedTableName.
func (QualifiedTableName) String ¶
func (qn QualifiedTableName) String() string
String formats the qualified name as "<project>:<dataset>.<table>".
Click to show internal directories.
Click to hide internal directories.