This repository was archived by the owner on May 7, 2026. It is now read-only.
Commit 1d81b41
authored
fix: allow IsInOp with same dtypes regardless nullable (#2466)
- Update Ibis isin_op_impl to compare types by name, allowing
comparisons between columns and literals with different nullability.
- Update SQLGlot IsInOp implementation to use dtypes.can_compare for
more robust type compatibility checking.
- Improve dtypes.can_compare to gracefully handle type coercion
failures.
- Migrate TPCH verification script to tests/system/large/test_tpch.py
for better integration with the test suite.
Fixes 485642936 🦕1 parent 6306478 commit 1d81b41Copy full SHA for 1d81b41
5 files changed
+108-137Lines changed: 108 additions & 137 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- bigframes
- core/compile
- ibis_compiler
- sqlglot/expressions
- scripts
- tests/system/large
Expand file treeCollapse file tree
Open diff view settings
Collapse file
bigframes/core/compile/ibis_compiler/scalar_op_registry.py
Copy file name to clipboardExpand all lines: bigframes/core/compile/ibis_compiler/scalar_op_registry.py+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
962 | 962 | |
963 | 963 | |
964 | 964 | |
965 | | - |
| 965 | + |
966 | 966 | |
967 | 967 | |
968 | 968 | |
|
Collapse file
bigframes/core/compile/sqlglot/expressions/comparison_ops.py
Copy file name to clipboardExpand all lines: bigframes/core/compile/sqlglot/expressions/comparison_ops.py+1-6Lines changed: 1 addition & 6 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
33 | 33 | |
34 | 34 | |
35 | 35 | |
36 | | - |
37 | 36 | |
38 | 37 | |
39 | 38 | |
40 | 39 | |
41 | | - |
42 | | - |
43 | | - |
44 | | - |
45 | | - |
| 40 | + |
46 | 41 | |
47 | 42 | |
48 | 43 | |
|
Collapse file
+5-2Lines changed: 5 additions & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
370 | 370 | |
371 | 371 | |
372 | 372 | |
373 | | - |
374 | | - |
| 373 | + |
| 374 | + |
| 375 | + |
| 376 | + |
| 377 | + |
375 | 378 | |
376 | 379 | |
377 | 380 | |
|
Collapse file
scripts/tpch_result_verify.py
Copy file name to clipboardExpand all lines: scripts/tpch_result_verify.py-128Lines changed: 0 additions & 128 deletions
This file was deleted.
Collapse file
tests/system/large/test_tpch.py
Copy file name to clipboard+101Lines changed: 101 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | + |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | + |
| 72 | + |
| 73 | + |
| 74 | + |
| 75 | + |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | + |
| 85 | + |
| 86 | + |
| 87 | + |
| 88 | + |
| 89 | + |
| 90 | + |
| 91 | + |
| 92 | + |
| 93 | + |
| 94 | + |
| 95 | + |
| 96 | + |
| 97 | + |
| 98 | + |
| 99 | + |
| 100 | + |
| 101 | + |
0 commit comments