Commit f05dc69
authored
fix:
Even if the remote schema is REQUIRED
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/python-bigquery/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #1692 🦕load_table_from_dataframe now assumes there may be local null values (#1735)1 parent 5573579 commit f05dc69Copy full SHA for f05dc69
File tree
Expand file treeCollapse file tree
3 files changed
+81
-23
lines changedOpen diff view settings
Filter options
- google/cloud/bigquery
- tests
- system
- unit
Expand file treeCollapse file tree
3 files changed
+81
-23
lines changedOpen diff view settings
Collapse file
google/cloud/bigquery/_pandas_helpers.py
Copy file name to clipboardExpand all lines: google/cloud/bigquery/_pandas_helpers.py+8-2Lines changed: 8 additions & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
178 | 178 | |
179 | 179 | |
180 | 180 | |
181 | | - |
182 | 181 | |
183 | 182 | |
184 | 183 | |
185 | 184 | |
186 | | - |
| 185 | + |
| 186 | + |
| 187 | + |
| 188 | + |
| 189 | + |
| 190 | + |
| 191 | + |
| 192 | + |
187 | 193 | |
188 | 194 | |
189 | 195 | |
|
Collapse file
tests/system/test_pandas.py
Copy file name to clipboardExpand all lines: tests/system/test_pandas.py+40-7Lines changed: 40 additions & 7 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
428 | 428 | |
429 | 429 | |
430 | 430 | |
431 | | - |
432 | | - |
| 431 | + |
433 | 432 | |
434 | 433 | |
435 | 434 | |
| ||
440 | 439 | |
441 | 440 | |
442 | 441 | |
443 | | - |
444 | 442 | |
445 | 443 | |
446 | 444 | |
| ||
451 | 449 | |
452 | 450 | |
453 | 451 | |
454 | | - |
455 | | - |
456 | | - |
457 | | - |
| 452 | + |
458 | 453 | |
459 | 454 | |
460 | 455 | |
461 | 456 | |
462 | 457 | |
| 458 | + |
| 459 | + |
| 460 | + |
| 461 | + |
| 462 | + |
| 463 | + |
| 464 | + |
| 465 | + |
| 466 | + |
| 467 | + |
| 468 | + |
| 469 | + |
| 470 | + |
| 471 | + |
| 472 | + |
| 473 | + |
| 474 | + |
| 475 | + |
| 476 | + |
| 477 | + |
| 478 | + |
| 479 | + |
| 480 | + |
| 481 | + |
| 482 | + |
| 483 | + |
| 484 | + |
| 485 | + |
| 486 | + |
| 487 | + |
| 488 | + |
| 489 | + |
| 490 | + |
| 491 | + |
| 492 | + |
| 493 | + |
| 494 | + |
| 495 | + |
463 | 496 | |
464 | 497 | |
465 | 498 | |
|
Collapse file
tests/unit/test__pandas_helpers.py
Copy file name to clipboardExpand all lines: tests/unit/test__pandas_helpers.py+33-14Lines changed: 33 additions & 14 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
1017 | 1017 | |
1018 | 1018 | |
1019 | 1019 | |
1020 | | - |
1021 | | - |
1022 | | - |
1023 | | - |
1024 | | - |
1025 | | - |
1026 | | - |
| 1020 | + |
| 1021 | + |
| 1022 | + |
| 1023 | + |
| 1024 | + |
| 1025 | + |
| 1026 | + |
| 1027 | + |
| 1028 | + |
| 1029 | + |
| 1030 | + |
1027 | 1031 | |
1028 | 1032 | |
| 1033 | + |
1029 | 1034 | |
1030 | 1035 | |
1031 | | - |
1032 | | - |
| 1036 | + |
| 1037 | + |
1033 | 1038 | |
1034 | 1039 | |
1035 | 1040 | |
| 1041 | + |
1036 | 1042 | |
1037 | | - |
1038 | | - |
| 1043 | + |
| 1044 | + |
1039 | 1045 | |
1040 | 1046 | |
| 1047 | + |
1041 | 1048 | |
1042 | 1049 | |
1043 | | - |
| 1050 | + |
| 1051 | + |
| 1052 | + |
| 1053 | + |
| 1054 | + |
1044 | 1055 | |
1045 | 1056 | |
1046 | 1057 | |
| ||
1049 | 1060 | |
1050 | 1061 | |
1051 | 1062 | |
1052 | | - |
| 1063 | + |
| 1064 | + |
| 1065 | + |
| 1066 | + |
| 1067 | + |
1053 | 1068 | |
1054 | 1069 | |
1055 | 1070 | |
| ||
1101 | 1116 | |
1102 | 1117 | |
1103 | 1118 | |
1104 | | - |
| 1119 | + |
| 1120 | + |
| 1121 | + |
| 1122 | + |
| 1123 | + |
1105 | 1124 | |
1106 | 1125 | |
1107 | 1126 | |
|
0 commit comments