This repository was archived by the owner on Mar 13, 2026. It is now read-only.
Commit 9ddee8b
committed
bug: backwards-compatible include_table=False when returning
In sqlalchemy 2.0, it's:
```python
self._label_select_column(None, c, True, False, {}, include_table=False)
```
In older versions, it's
```python
self._label_select_column(None, c, True, False, {'include_table': False})
```
So instead, forward a flag to `vist_column` which can set this kwarg
safely itself.1 parent d947102 commit 9ddee8b
3 files changed
Lines changed: 24 additions & 12 deletions
File tree
- google/cloud/sqlalchemy_spanner
- test/mockserver_tests
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
382 | 382 | | |
383 | 383 | | |
384 | 384 | | |
385 | | - | |
386 | | - | |
| 385 | + | |
387 | 386 | | |
388 | | - | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
389 | 390 | | |
390 | 391 | | |
391 | 392 | | |
| |||
413 | 414 | | |
414 | 415 | | |
415 | 416 | | |
416 | | - | |
417 | | - | |
418 | | - | |
419 | | - | |
420 | 417 | | |
421 | 418 | | |
422 | 419 | | |
| |||
437 | 434 | | |
438 | 435 | | |
439 | 436 | | |
440 | | - | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
441 | 440 | | |
442 | 441 | | |
443 | 442 | | |
| |||
457 | 456 | | |
458 | 457 | | |
459 | 458 | | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
460 | 474 | | |
461 | 475 | | |
462 | 476 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
128 | | - | |
129 | | - | |
130 | | - | |
| 128 | + | |
131 | 129 | | |
132 | 130 | | |
133 | 131 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
0 commit comments