File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
third_party/bigframes_vendored/pandas/io Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -500,7 +500,7 @@ def read_gbq_query(
500
500
501
501
Raises:
502
502
ValueError:
503
- When both columns (preferred) and col_order are specified.
503
+ When both `` columns`` and `` col_order`` are specified.
504
504
"""
505
505
# NOTE: This method doesn't (yet) exist in pandas or pandas-gbq, so
506
506
# these docstrings are inline.
@@ -552,7 +552,7 @@ def read_gbq_table(
552
552
553
553
Raises:
554
554
ValueError:
555
- When both columns (preferred) and col_order are specified.
555
+ When both `` columns`` and `` col_order`` are specified.
556
556
"""
557
557
# NOTE: This method doesn't (yet) exist in pandas or pandas-gbq, so
558
558
# these docstrings are inline.
Original file line number Diff line number Diff line change @@ -160,6 +160,11 @@ def read_gbq(
160
160
bigframes.exceptions.DefaultIndexWarning:
161
161
Using the default index is discouraged, such as with clustered
162
162
or partitioned tables without primary keys.
163
+ ValueError:
164
+ When both ``columns`` and ``col_order`` are specified.
165
+ ValueError:
166
+ If ``configuration`` is specified when directly reading
167
+ from a table.
163
168
164
169
Returns:
165
170
bigframes.pandas.DataFrame: A DataFrame representing results of the query or table.
Original file line number Diff line number Diff line change @@ -237,5 +237,7 @@ def read_json(
237
237
bigframes.exceptions.DefaultIndexWarning:
238
238
Using the default index is discouraged, such as with clustered
239
239
or partitioned tables without primary keys.
240
+ ValueError:
241
+ ``lines`` is only valid when ``orient`` is ``records``.
240
242
"""
241
243
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
You can’t perform that action at this time.
0 commit comments