Alexander Polyankin

Results 183 comments of Alexander Polyankin

@flamber did you manage to reproduce that? I can't do it by following the steps from the description. At least not in 0.44.4 as mentioned

Common thing with dart2js performance issues is dynamic dispatch. For example, in `dynamic s = func(); s.method();`. call of `method` will be compiled to something like `J.getInterceptor(s).method$0();`, where `getInterceptor` -...

Fixed by https://github.com/metabase/metabase/pull/35658

Steps 1-6 were fixed by https://github.com/metabase/metabase/pull/44721. Step 7 (applying the filter) is still broken because `Lib.filter` creates a filter for the wrong column (as it seems). Assigning to QPD since...

Can reproduce in `v 0.37.0.2` but not in `0.45` or `master`. It was fixed long time ago.

You can create the filter in the UI but the backend throws

For anyone reading this, the workaround is to have your custom columns **before** filters and aggregations, like this:

@flamber I don't think what's in the ticket should be fixed. The general rule is that you can only filter on columns available in the last stage of the query....