You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
148134: sqlccl: remove ignored internal error in ExplainGist that's been fixed r=yuzefovich a=yuzefovich
See: #133129.
Epic: None
Release note: None
148168: workloadccl: remove stale comment around importing fixtures r=yuzefovich a=yuzefovich
This commit deletes now-stale comment that was added in 09abc26. That change made a switch from using IMPORT TABLE to IMPORT INTO for importing fixtures as a temporary workaround. However, since then we completely deprecated IMPORT TABLE syntax, so the only way to import the data now is to create the tables separately, which makes the comment confusing.
Epic: None
Release note: None
148248: parser: remove IMPORT TABLE and IMPORT non-INTO support r=yuzefovich a=yuzefovich
**parser: remove IMPORT TABLE and IMPORT non-INTO support**
PGDUMP and MYSQLDUMP code is now being removed, so remove the parser support.
Release note (sql change): IMPORT TABLE as well PGDUMP and MYSQLDUMP
formats of IMPORT are now fully removed. These have been deprecated
since 23.2.
**tree: remove unused Into and Bundle fields of Import**
Also update one spot under assumption that `tree.Import.Table` is now
always non-nil.
Epic: None
148329: execbuilder: fix a silly bug around finding the most recent full stat r=yuzefovich a=yuzefovich
This commit fixes a bug that was added in 3bc0992. In short, in a complicated logical expression we had `v1 && v2 || v3` when we wanted `v1 && (v2 || v3)`. This allowed us to hit an index of bounds when evaluating `v3`, which in this concrete case could mean that we iterated over all stats and didn't find any full ones.
There are two other places with similar conditionals, and they have the correct usage of parenthesis, so I didn't change the structure overall. I did find that we want to also skip the merged stat, depending on the session variable.
Also the bug seems quite difficult to hit, so I omitted the release note.
Fixes: #148316.
Release note: None
Co-authored-by: Yahor Yuzefovich <[email protected]>
0 commit comments