diff --git a/docs/source/intro.rst b/docs/source/intro.rst index a7ec65c7..49f46614 100644 --- a/docs/source/intro.rst +++ b/docs/source/intro.rst @@ -9,23 +9,6 @@ Pandas supports all these `BigQuery data types `__ - -While this trade-off works well for most cases, it breaks down for storing -values greater than 2**53. Such values in BigQuery can represent identifiers -and unnoticed precision lost for identifier is what we want to avoid. - Logging +++++++ diff --git a/docs/source/reading.rst b/docs/source/reading.rst index b188c392..add61ed2 100644 --- a/docs/source/reading.rst +++ b/docs/source/reading.rst @@ -50,6 +50,7 @@ your job. For more information about query configuration parameters see `here .. note:: The ``dialect`` argument can be used to indicate whether to use BigQuery's ``'legacy'`` SQL - or BigQuery's ``'standard'`` SQL (beta). The default value is ``'legacy'``. For more information + or BigQuery's ``'standard'`` SQL (beta). The default value is ``'legacy'``, though this will change + in a subsequent release to ``'standard'``. For more information on BigQuery's standard SQL, see `BigQuery SQL Reference `__ diff --git a/docs/source/tables.rst b/docs/source/tables.rst index ba07125d..dcf891ee 100644 --- a/docs/source/tables.rst +++ b/docs/source/tables.rst @@ -14,9 +14,3 @@ Creating Tables {'name': 'my_int64', 'type': 'INTEGER'}, {'name': 'my_string', 'type': 'STRING'}]} -.. note:: - - If you delete and re-create a BigQuery table with the same name, but different table schema, - you must wait 2 minutes before streaming data into the table. As a workaround, consider creating - the new table with a different name. Refer to - `Google BigQuery issue 191 `__. diff --git a/docs/source/writing.rst b/docs/source/writing.rst index 14124d03..e649d7fd 100644 --- a/docs/source/writing.rst +++ b/docs/source/writing.rst @@ -49,11 +49,6 @@ a ``TableCreationError`` if the destination table already exists. If an error occurs while streaming data to BigQuery, see `Troubleshooting BigQuery Errors `__. -.. note:: - - The BigQuery SQL query language has some oddities, see the - `BigQuery Query Reference Documentation `__. - .. note:: While BigQuery uses SQL-like syntax, it has some important differences