Commit 2f799d5
fix(sessions): strip tzinfo for MariaDB in DatabaseSessionService
MariaDB stores DATETIME/TIMESTAMP values without timezone information,
exactly like MySQL. create_session previously produced a timezone-aware
_storage_update_marker for MariaDB, but the value read back from storage is
naive, so the strict marker comparison in append_event raised a false
"The session has been modified in storage" ValueError on the first
append_event after create_session.
Add MariaDB to the set of dialects whose datetimes are stored as naive, and
consolidate the timezone-naive-dialect decision into a single
_NAIVE_DATETIME_DIALECTS constant and a _uses_naive_datetime() helper used by
create_session, so the strip logic lives in one place. Cloud Spanner is
intentionally excluded because its TIMESTAMP is timezone-aware.
Co-authored-by: Haran Rajkumar <haranrk@google.com>
PiperOrigin-RevId: 9370631021 parent ea2ea73 commit 2f799d5
2 files changed
Lines changed: 50 additions & 21 deletions
File tree
- src/google/adk/sessions
- tests/unittests/sessions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
82 | 94 | | |
83 | 95 | | |
84 | 96 | | |
| |||
348 | 360 | | |
349 | 361 | | |
350 | 362 | | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
351 | 371 | | |
352 | 372 | | |
353 | 373 | | |
| |||
531 | 551 | | |
532 | 552 | | |
533 | 553 | | |
534 | | - | |
535 | | - | |
| 554 | + | |
536 | 555 | | |
537 | 556 | | |
538 | 557 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
119 | 123 | | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
124 | 127 | | |
125 | | - | |
126 | | - | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
127 | 138 | | |
128 | | - | |
129 | | - | |
| 139 | + | |
130 | 140 | | |
131 | | - | |
| 141 | + | |
132 | 142 | | |
133 | 143 | | |
134 | 144 | | |
| |||
0 commit comments