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

#14843 Repro: Filtering a Custom Column does not give correct results when...

#14843 Repro: Filtering a Custom Column does not give correct results when using "Not equal to" (#14847)

This issue is fixed on dc50e8a2
Closes #14843
parent d175536f
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,14 @@ import {
import { SAMPLE_DATASET } from "__support__/cypress_sample_dataset";
const { ORDERS, ORDERS_ID, PRODUCTS, PRODUCTS_ID } = SAMPLE_DATASET;
const {
ORDERS,
ORDERS_ID,
PRODUCTS,
PRODUCTS_ID,
PEOPLE,
PEOPLE_ID,
} = SAMPLE_DATASET;
describe("scenarios > question > filter", () => {
beforeEach(() => {
......@@ -731,4 +738,30 @@ describe("scenarios > question > filter", () => {
.type("m");
popover().contains(/Sum of Total/i);
});
it("should correctly filter custom column by 'Not equal to' (metabase#14843)", () => {
const CC_NAME = "City Length";
cy.server();
cy.route("POST", "/api/card/*/query").as("cardQuery");
cy.request("POST", "/api/card", {
name: "14843",
dataset_query: {
database: 1,
query: {
"source-table": PEOPLE_ID,
expressions: { [CC_NAME]: ["length", ["field-id", PEOPLE.CITY]] },
filter: ["!=", ["expression", CC_NAME], 3],
},
type: "query",
},
display: "table",
visualization_settings: {},
}).then(({ body: { id: QUESTION_ID } }) => {
cy.visit(`/question/${QUESTION_ID}`);
});
cy.wait("@cardQuery");
cy.findByText("Rye").should("not.exist");
});
});
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