Skip to content
Snippets Groups Projects
Commit 7fc3ff62 authored by Arseniy Volynets's avatar Arseniy Volynets :boy_tone5:
Browse files

fix: merge tuple transformation didn't group cols

- merge tuple transformation that merges several
and-ed equalities into equlities of rows didn't
group columns by child they refer to. This led
to rows where we couldn't find sharding keys,
because they were scattered across the different
rows:

```
sk(t1) = (a, b), sk(t2) = (e, f)
... on (t1.a, t2.f) = (t2.e, t1.b)
```

But now correct rows are generated:

```
... on (t1.a, t1.b) = (t2.e, t2.f)
```
parent f84401ec
No related branches found
No related tags found
1 merge request!1414sbroad import
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment