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

#16670 Repro: Auto-binning on number field is different for SQL than it is for QB (#16735)

parent 75860174
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,46 @@ describe("binning related reproductions", () => {
cy.get(".bar");
});
});
describe("result metadata issues", () => {
/**
* Issues that arise only when we save SQL question without running it first.
* It doesn't load the necessary metadata, which results in the wrong binning results.
*/
beforeEach(() => {
// This query is the equivalent of saving the question without running it first.
cy.createNativeQuestion({
name: "SQL Binning",
native: {
query:
"SELECT ORDERS.CREATED_AT, ORDERS.TOTAL, PEOPLE.LONGITUDE FROM ORDERS JOIN PEOPLE ON orders.user_id = people.id",
},
});
cy.intercept("POST", "/api/dataset").as("dataset");
});
it.skip("should render number auto binning correctly (metabase#16670)", () => {
cy.visit("/question/new");
cy.findByText("Simple question").click();
cy.findByText("Saved Questions").click();
cy.findByText("SQL Binning").click();
cy.findByText("Summarize").click();
cy.wait("@dataset");
cy.findByTestId("sidebar-right").within(() => {
cy.findByText("TOTAL").click();
});
cy.wait("@dataset");
cy.findByText("Count by TOTAL: Auto binned");
cy.get(".bar").should("have.length.of.at.most", 10);
cy.findByText("-60");
});
});
});
function openSummarizeOptions(questionType) {
......
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