This is an automated email from the ASF dual-hosted git repository.
msyavuz pushed a change to branch msyavuz/feat/join-editor
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 89aea1c67b feat: join editor
add 11c6d7151f feat(datasource-connector): add schema editor for
AI-analyzed tables and columns
add c58aeca441 feat: join editor
add 6352396bfd fix: types
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (89aea1c67b)
\
N -- N -- N refs/heads/msyavuz/feat/join-editor (6352396bfd)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../superset-ui-core/src/components/index.ts | 2 +
.../components/ConnectorLayout.tsx | 29 ++-
.../components/DatasourceEditorPanel.tsx | 222 +++++++++++++++++++
.../components/EditableDescription.tsx | 150 +++++++++++++
.../components/ReviewSchemaPanel.tsx | 6 +-
.../components/SchemaDetailPanel.tsx | 244 +++++++++++++++++++++
.../components/SchemaTreeView.tsx | 230 +++++++++++++++++++
.../pages/DatasourceConnector/config.ts} | 6 +-
.../hooks/useSchemaEditorMutations.ts | 163 ++++++++++++++
.../DatasourceConnector/hooks/useSchemaReport.ts | 223 +++++++++++++++++++
.../src/pages/DatasourceConnector/index.tsx | 50 ++++-
.../src/pages/DatasourceConnector/types.ts | 56 ++++-
superset/commands/database_analyzer/analyze.py | 38 ++--
superset/databases/analyzer_api.py | 50 ++++-
superset/models/database_analyzer.py | 2 +
superset/views/datasource_connector.py | 26 ---
16 files changed, 1438 insertions(+), 59 deletions(-)
create mode 100644
superset-frontend/src/pages/DatasourceConnector/components/DatasourceEditorPanel.tsx
create mode 100644
superset-frontend/src/pages/DatasourceConnector/components/EditableDescription.tsx
create mode 100644
superset-frontend/src/pages/DatasourceConnector/components/SchemaDetailPanel.tsx
create mode 100644
superset-frontend/src/pages/DatasourceConnector/components/SchemaTreeView.tsx
copy superset-frontend/{packages/superset-ui-core/types/external.d.ts =>
src/pages/DatasourceConnector/config.ts} (85%)
create mode 100644
superset-frontend/src/pages/DatasourceConnector/hooks/useSchemaEditorMutations.ts
create mode 100644
superset-frontend/src/pages/DatasourceConnector/hooks/useSchemaReport.ts