Skip to content
Snippets Groups Projects
Unverified Commit 4ce56d49 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Repro #30743: Sorting on the breakout column in joined questions crashes (#30755)

[ci skip]
parent f250798a
No related branches found
No related tags found
No related merge requests found
import {
restore,
visitQuestionAdhoc,
popover,
visualize,
} from "e2e/support/helpers";
import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database";
import { SAMPLE_DB_ID } from "e2e/support/cypress_data";
const { ORDERS, ORDERS_ID, PRODUCTS, PRODUCTS_ID } = SAMPLE_DATABASE;
const query = {
display: "table",
dataset_query: {
database: SAMPLE_DB_ID,
type: "query",
query: {
"source-table": ORDERS_ID,
joins: [
{
fields: "all",
"source-table": PRODUCTS_ID,
condition: [
"=",
["field", ORDERS.PRODUCT_ID, null],
["field", PRODUCTS.ID, { "join-alias": "Products" }],
],
alias: "Products",
},
],
aggregation: [["count"]],
breakout: [["field", PRODUCTS.CATEGORY, { "join-alias": "Products" }]],
},
},
};
describe.skip("issue 20743", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
visitQuestionAdhoc(query, { mode: "notebook" });
});
it("should be possible to sort on the breakout column (metabase#20743)", () => {
cy.findByLabelText("Sort").click();
popover().contains("Category").click();
visualize();
cy.get(".bar").should("have.length", 4);
});
});
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