package bigquery
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- bigquery
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- sealed trait CastError extends Product with Serializable
-
type
CastResult = Validated[NonEmptyList[CastError], Row]
Result of (Schema, JSON) -> Row transformation
-
case class
Field(name: String, fieldType: Type, mode: Mode) extends Product with Serializable
Type-safe AST proxy to
com.google.cloud.bigquery.Field
schema type Up to client's code to convert it -
sealed
trait
Mode extends Product with Serializable
BigQuery SQL mode
-
sealed
trait
Row extends Product with Serializable
Run-time value, conforming
Field
(type) -
type
Suggestion = (Schema, Boolean) ⇒ Option[(String) ⇒ Field]
Suggest the BigQuery field, based on JSON Schema
-
sealed
trait
Type extends Product with Serializable
BigQuery field type; "array" and "null" are expressed via
Mode