class Google::Cloud::Bigquery::Schema::Field

def bignumeric name, description: nil, mode: :nullable, policy_tags: nil, precision: nil, scale: nil

Parameters:
  • scale (Integer) -- The scale (maximum number of digits in the
  • precision (Integer) -- The precision (maximum number of total
  • policy_tags (Array, String) -- The policy tag list or
  • mode (Symbol) -- The field's mode. The possible values are
  • description (String) -- A description of the field.
  • name (String) -- The field name. The name must contain only
def bignumeric name, description: nil, mode: :nullable, policy_tags: nil, precision: nil, scale: nil
  record_check!
  add_field name,
            :bignumeric,
            description: description,
            mode: mode,
            policy_tags: policy_tags,
            precision: precision,
            scale: scale
end