This repository was archived by the owner on May 7, 2026. It is now read-only.
Commit d2d38f9
feat: SQL Cell no longer escapes formatted string values (#2245)
This change updates bigframes/core/pyformat.py to directly embed str
values rather than escaping them first. Unit tests have been updated to
reflect this change.
---
*PR created automatically by Jules for task
[5189763854933796072](https://jules.google.com/task/5189763854933796072)*
---------
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: Shenyang Cai <sycai@users.noreply.github.com>1 parent 0d7d7e4 commit d2d38f9Copy full SHA for d2d38f9
5 files changed
+14-13Lines changed: 14 additions & 13 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- bigframes/core
- tests
- system/small/session
- unit
- core
- pandas/io
- session
Expand file treeCollapse file tree
Open diff view settings
Collapse file
+3Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
104 | 104 | |
105 | 105 | |
106 | 106 | |
| 107 | + |
| 108 | + |
| 109 | + |
107 | 110 | |
108 | 111 | |
109 | 112 | |
|
Collapse file
tests/system/small/session/test_read_gbq_colab.py
Copy file name to clipboardExpand all lines: tests/system/small/session/test_read_gbq_colab.py+3-3Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
143 | 143 | |
144 | 144 | |
145 | 145 | |
146 | | - |
| 146 | + |
147 | 147 | |
148 | 148 | |
149 | 149 | |
| ||
153 | 153 | |
154 | 154 | |
155 | 155 | |
156 | | - |
| 156 | + |
157 | 157 | |
158 | 158 | |
159 | 159 | |
| ||
165 | 165 | |
166 | 166 | |
167 | 167 | |
168 | | - |
| 168 | + |
169 | 169 | |
170 | 170 | |
171 | 171 | |
|
Collapse file
tests/unit/core/test_pyformat.py
Copy file name to clipboardExpand all lines: tests/unit/core/test_pyformat.py+5-7Lines changed: 5 additions & 7 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
444 | 444 | |
445 | 445 | |
446 | 446 | |
447 | | - |
| 447 | + |
448 | 448 | |
449 | 449 | |
450 | 450 | |
| ||
456 | 456 | |
457 | 457 | |
458 | 458 | |
459 | | - |
460 | | - |
461 | | - |
| 459 | + |
| 460 | + |
462 | 461 | |
463 | 462 | |
464 | 463 | |
465 | 464 | |
466 | 465 | |
467 | 466 | |
468 | 467 | |
469 | | - |
470 | | - |
471 | | - |
| 468 | + |
| 469 | + |
472 | 470 | |
473 | 471 | |
474 | 472 | |
|
Collapse file
tests/unit/pandas/io/test_api.py
Copy file name to clipboardExpand all lines: tests/unit/pandas/io/test_api.py+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
108 | 108 | |
109 | 109 | |
110 | 110 | |
111 | | - |
| 111 | + |
112 | 112 | |
113 | 113 | |
114 | 114 | |
|
Collapse file
tests/unit/session/test_read_gbq_colab.py
Copy file name to clipboardExpand all lines: tests/unit/session/test_read_gbq_colab.py+2-2Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
60 | 60 | |
61 | 61 | |
62 | 62 | |
63 | | - |
| 63 | + |
64 | 64 | |
65 | 65 | |
66 | 66 | |
| ||
84 | 84 | |
85 | 85 | |
86 | 86 | |
87 | | - |
| 87 | + |
88 | 88 | |
89 | 89 | |
90 | 90 | |
|
0 commit comments