Current section

92 Versions

Jump to

Compare versions

4 files changed
+4 additions
-4 deletions
  @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
11 11
12 12 ```elixir
13 13 def deps do
14 - [{:google_api_big_query, "~> 0.27"}]
14 + [{:google_api_big_query, "~> 0.28"}]
15 15 end
16 16 ```
  @@ -139,4 +139,4 @@
139 139 {<<"optional">>,false},
140 140 {<<"repository">>,<<"hexpm">>},
141 141 {<<"requirement">>,<<"~> 0.2">>}]]}.
142 - {<<"version">>,<<"0.27.0">>}.
142 + {<<"version">>,<<"0.28.0">>}.
  @@ -26,7 +26,7 @@ defmodule GoogleApi.BigQuery.V2.Model.CsvOptions do
26 26 * `encoding` (*type:* `String.t`, *default:* `nil`) - [Optional] The character encoding of the data. The supported values are UTF-8 or ISO-8859-1. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
27 27 * `fieldDelimiter` (*type:* `String.t`, *default:* `nil`) - [Optional] The separator for fields in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. BigQuery also supports the escape sequence "\\t" to specify a tab separator. The default value is a comma (',').
28 28 * `quote` (*type:* `String.t`, *default:* `"`) - [Optional] The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote ('"'). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true.
29 - * `skipLeadingRows` (*type:* `String.t`, *default:* `nil`) - [Optional] The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped.
29 + * `skipLeadingRows` (*type:* `String.t`, *default:* `nil`) - [Optional] The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N > 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
30 30 """
31 31
32 32 use GoogleApi.Gax.ModelBase
  @@ -18,7 +18,7 @@
18 18 defmodule GoogleApi.BigQuery.Mixfile do
19 19 use Mix.Project
20 20
21 - @version "0.27.0"
21 + @version "0.28.0"
22 22
23 23 def project() do
24 24 [