Skip to content
Snippets Groups Projects
Unverified Commit a4a68f42 authored by Uladzimir Havenchyk's avatar Uladzimir Havenchyk Committed by GitHub
Browse files

Add a repro for 'Visible Columns errors when source query is a table joined on itself' (#44737)

* Add a repro for 'Visible Columns errors when source query is a table joined on itself'

* verify warning icon is not rendered
parent 6667721a
No related branches found
No related tags found
No related merge requests found
......@@ -592,6 +592,56 @@ describe("issue 36669", () => {
});
});
describe("issue 35290", () => {
beforeEach(() => {
restore();
cy.signInAsNormalUser();
});
it("should render column settings when source query is a table joined on itself (metabase#35290)", () => {
const questionDetails = {
name: "Orders + Orders",
query: {
"source-table": ORDERS_ID,
joins: [
{
"source-table": ORDERS_ID,
condition: [
"=",
["field", ORDERS.ID, null],
["field", ORDERS.ID, null],
],
alias: "Orders",
},
],
limit: 5,
},
};
createQuestion(questionDetails).then(({ body: { id: questionId } }) => {
const questionDetails = {
name: "35290",
query: {
"source-table": `card__${questionId}`,
},
};
createQuestion(questionDetails, { visitQuestion: true });
});
cy.findByTestId("viz-settings-button").click();
cy.findByTestId("chartsettings-sidebar")
// verify panel is shown
.should("contain", "Add or remove columns")
// verify column name is shown
.should("contain", "Created At");
cy.findByTestId("chartsettings-sidebar").within(() => {
cy.icon("warning").should("not.exist");
});
});
});
function updateQuestion() {
queryBuilderHeader().findByText("Save").click();
cy.findByTestId("save-question-modal").within(modal => {
......
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