-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
results.py
53 lines (51 loc) · 1.18 KB
/
results.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# flake8: noqa
# This file is temporary, in order to not break various adapter tests, etc, until
# they are updated to use the new locations.
from dbt.artifacts.schemas.base import (
ArtifactMixin,
BaseArtifactMetadata,
VersionedSchema,
schema_version,
)
from dbt.artifacts.schemas.catalog import (
CatalogArtifact,
CatalogKey,
CatalogMetadata,
CatalogResults,
CatalogTable,
ColumnMetadata,
StatsItem,
TableMetadata,
)
from dbt.artifacts.schemas.freshness import (
FreshnessErrorEnum,
FreshnessExecutionResultArtifact,
FreshnessMetadata,
FreshnessNodeOutput,
FreshnessNodeResult,
FreshnessResult,
PartialSourceFreshnessResult,
SourceFreshnessOutput,
SourceFreshnessResult,
SourceFreshnessRuntimeError,
process_freshness_result,
)
from dbt.artifacts.schemas.results import (
BaseResult,
ExecutionResult,
FreshnessStatus,
NodeResult,
NodeStatus,
RunningStatus,
RunStatus,
TestStatus,
TimingInfo,
collect_timing_info,
)
from dbt.artifacts.schemas.run import (
RunExecutionResult,
RunResult,
RunResultsArtifact,
RunResultsMetadata,
process_run_result,
)