mirror of
https://github.com/apache/superset.git
synced 2026-04-25 19:14:27 +00:00
feat(sip-95): new endpoint for extra table metadata (#28063)
This commit is contained in:
@@ -67,7 +67,7 @@ beforeEach(() => {
|
||||
columns: table.columns,
|
||||
},
|
||||
});
|
||||
fetchMock.get('glob:*/api/v1/database/*/table_extra/*/*', {
|
||||
fetchMock.get('glob:*/api/v1/database/*/table_metadata/extra/', {
|
||||
status: 200,
|
||||
body: {},
|
||||
});
|
||||
|
||||
@@ -49,7 +49,7 @@ jest.mock(
|
||||
);
|
||||
const getTableMetadataEndpoint = 'glob:**/api/v1/database/*/table/*/*/';
|
||||
const getExtraTableMetadataEndpoint =
|
||||
'glob:**/api/v1/database/*/table_extra/*/*/';
|
||||
'glob:**/api/v1/database/*/table_metadata/extra/*';
|
||||
const updateTableSchemaEndpoint = 'glob:*/tableschemaview/*/expanded';
|
||||
|
||||
beforeEach(() => {
|
||||
|
||||
Reference in New Issue
Block a user