fix(frontend): allow "constructor" property in response data (#25407)

(cherry picked from commit a1983e468b)
This commit is contained in:
Spencer Torres
2024-04-06 01:46:12 -04:00
committed by Michael S. Molina
parent cb39fcd67d
commit 23cd2b138b
5 changed files with 23 additions and 6 deletions

View File

@@ -1479,7 +1479,7 @@ class TestDatabaseApi(SupersetTestCase):
"indexes": [],
"name": "wrong_table",
"primaryKey": {"constrained_columns": None, "name": None},
"selectStar": "SELECT\n *\nFROM wrong_table\nLIMIT 100\nOFFSET 0",
"selectStar": "SELECT *\nFROM wrong_table\nLIMIT 100\nOFFSET 0",
},
)
elif example_db.backend == "mysql":