-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathdto.py
94 lines (78 loc) · 2.19 KB
/
dto.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
from enum import Enum
from typing import Any
from pydantic import BaseModel, Field
from app.model import ConnectionInfo
class MetadataDTO(BaseModel):
connection_info: ConnectionInfo = Field(alias="connectionInfo")
class RustWrenEngineColumnType(Enum):
BOOL = "BOOL"
TINYINT = "TINYINT"
INT2 = "INT2"
SMALLINT = "SMALLINT"
INT4 = "INT4"
INT = "INT"
INTEGER = "INTEGER"
INT8 = "INT8"
BIGINT = "BIGINT"
NUMERIC = "NUMERIC"
DECIMAL = "DECIMAL"
VARCHAR = "VARCHAR"
CHAR = "CHAR"
BPCHAR = "BPCHAR"
TEXT = "TEXT"
STRING = "STRING"
NAME = "NAME"
FLOAT4 = "FLOAT4"
REAL = "REAL"
FLOAT = "FLOAT"
FLOAT8 = "FLOAT8"
DOUBLE = "DOUBLE"
TIMESTAMP = "TIMESTAMP"
TIMESTAMPTZ = "TIMESTAMPTZ"
DATE = "DATE"
INTERVAL = "INTERVAL"
JSON = "JSON"
OID = "OID"
BYTEA = "BYTEA"
UUID = "UUID"
INET = "INET"
UNKNOWN = "UNKNOWN"
BIGNUMERIC = "BIGNUMERIC"
BYTES = "BYTES"
DATETIME = "DATETIME"
FLOAT64 = "FLOAT64"
INT64 = "INT64"
TIME = "TIME"
NULL = "NULL"
class Column(BaseModel):
name: str
type: str
notNull: bool
description: str | None = None
properties: dict[str, Any] | None = None
nestedColumns: list["Column"] | None = None
class TableProperties(BaseModel):
# To prevent schema shadowing in Pydantic, avoid using schema as a field name
schema_: str | None = Field(alias="schema", default=None)
catalog: str | None
table: str | None # only table name without schema or catalog
path: str | None = Field(
alias="path", default=None
) # the full path of the table for file-based table
class Table(BaseModel):
name: str # unique table name (might contain schema name or catalog name as well)
columns: list[Column]
description: str | None = None
properties: TableProperties = None
primaryKey: str | None = None
class ConstraintType(Enum):
PRIMARY_KEY = "PRIMARY KEY"
FOREIGN_KEY = "FOREIGN KEY"
UNIQUE = "UNIQUE"
class Constraint(BaseModel):
constraintName: str
constraintType: ConstraintType
constraintTable: str
constraintColumn: str
constraintedTable: str
constraintedColumn: str