mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-13 17:58:36 +00:00
15 lines
313 B
Python
15 lines
313 B
Python
![]() |
"""Models for the TableDiff test case"""
|
||
|
from typing import List, Optional
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class TableDiffRuntimeParameters(BaseModel):
|
||
|
service1Url: str
|
||
|
service2Url: str
|
||
|
table1: str
|
||
|
table2: str
|
||
|
keyColumns: List[str]
|
||
|
extraColumns: List[str]
|
||
|
whereClause: Optional[str]
|