Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 79692d7

Browse files
WalterHubcrwilcox
andauthored
Fixes doc urls. (#719)
The current links result in 404 errors. Co-authored-by: Christopher Wilcox <[email protected]>
1 parent 0bc9ac3 commit 79692d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/datalab/bigquery/_schema.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def from_data(source):
216216
a definition of the schema as a list of dictionaries with 'name' and 'type' entries
217217
and possibly 'mode' and 'description' entries. Only used if no data argument was provided.
218218
'mode' can be 'NULLABLE', 'REQUIRED' or 'REPEATED'. For the allowed types, see:
219-
https://cloud.google.com/bigquery/preparing-data-for-bigquery#datatypes
219+
https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types
220220
221221
Note that there is potential ambiguity when passing a list of lists or a list of
222222
dicts between whether that should be treated as a list of records or a single record
@@ -263,7 +263,7 @@ def __init__(self, definition=None):
263263
definition: a definition of the schema as a list of dictionaries with 'name' and 'type'
264264
entries and possibly 'mode' and 'description' entries. Only used if no data argument was
265265
provided. 'mode' can be 'NULLABLE', 'REQUIRED' or 'REPEATED'. For the allowed types, see:
266-
https://cloud.google.com/bigquery/preparing-data-for-bigquery#datatypes
266+
https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types
267267
"""
268268
super(Schema, self).__init__()
269269
self._map = {}

0 commit comments

Comments
 (0)