forked from open-metadata/OpenMetadata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/add-accuracy-metric
* main: (39 commits) MINOR - Better PII classification for JSON data (open-metadata#17734) New Email Templates (OSS) (open-metadata#17606) fix pom. (open-metadata#17682) GEN-1333 Add TS validation on DQ and Porfiler data ingestion (open-metadata#17731) make cost analysis as collate only (open-metadata#17719) Minor: remove unused dependency (open-metadata#17709) test: migrate login config to playwright (open-metadata#17740) minor(test): fix ingestion related flaky for aut (open-metadata#17727) fix expand all operation on terms page (open-metadata#17733) Docs: Updating the Image Reference for Bots (open-metadata#17736) fix ui freezing due to images in feed changes (open-metadata#17703) add links to menus (open-metadata#17659) supported followed data in Following widget using search api (open-metadata#17689) minor(ui): align dependency version to fix vulnerabilities (open-metadata#17729) Fixes some things on the APICollection (open-metadata#17704) DOCS - OSS deployment is flagged as Collate False (open-metadata#17722) minor: disable image upload support in description editor (open-metadata#17697) fix user spec flaky playwright test (open-metadata#17684) fetch domains before any widget is loaded (open-metadata#17695) minor(test): migrate persona spec (open-metadata#17701) ...
- Loading branch information
Showing
467 changed files
with
5,163 additions
and
3,725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,10 @@ | |
upstreamDatasources{{ | ||
id | ||
name | ||
description | ||
tags {{ | ||
name | ||
}} | ||
fields {{ | ||
id | ||
name | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2021 Collate | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
""" | ||
Basic Scanner ABC | ||
""" | ||
from abc import ABC, abstractmethod | ||
from typing import Any | ||
|
||
|
||
class BaseScanner(ABC): | ||
"""Basic scanner abstract class""" | ||
|
||
@abstractmethod | ||
def scan(self, data: Any): | ||
"""Scan the given data from a column""" |
Oops, something went wrong.