Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,6 @@ class CatalogDeclarativeReference(Base):
source_columns: list[str] | None = None
source_column_data_types: list[str] | None = None
sources: list[CatalogDeclarativeReferenceSource] | None = None
is_nullable: bool | None = None
null_value: str | None = None

@staticmethod
def client_class() -> type[DeclarativeReference]:
Expand All @@ -231,6 +229,8 @@ class CatalogDeclarativeReferenceSource(Base):
column: str
target: CatalogGrainIdentifier
data_type: str | None = None
is_nullable: bool | None = None
null_value: str | None = None

@staticmethod
def client_class() -> type[DeclarativeReferenceSource]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ interactions:
sources:
- column: campaign_id
dataType: INT
isNullable: true
target:
id: campaign_id
type: attribute
Expand Down Expand Up @@ -321,6 +322,7 @@ interactions:
sources:
- column: campaign_id
dataType: INT
isNullable: true
target:
id: campaign_id
type: attribute
Expand All @@ -331,6 +333,7 @@ interactions:
sources:
- column: customer_id
dataType: INT
isNullable: true
target:
id: customer_id
type: attribute
Expand All @@ -341,6 +344,7 @@ interactions:
sources:
- column: date
dataType: DATE
isNullable: true
target:
id: date
type: date
Expand All @@ -351,6 +355,7 @@ interactions:
sources:
- column: product_id
dataType: INT
isNullable: true
target:
id: product_id
type: attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ interactions:
sources:
- column: campaign_id
dataType: INT
isNullable: true
target:
id: campaigns.campaign_id
type: attribute
Expand Down Expand Up @@ -670,7 +669,6 @@ interactions:
sources:
- column: campaign_id
dataType: INT
isNullable: true
target:
id: campaigns.campaign_id
type: attribute
Expand All @@ -681,7 +679,6 @@ interactions:
sources:
- column: customer_id
dataType: INT
isNullable: true
target:
id: customers.customer_id
type: attribute
Expand All @@ -692,7 +689,6 @@ interactions:
sources:
- column: date
dataType: DATE
isNullable: true
target:
id: date
type: date
Expand All @@ -703,7 +699,6 @@ interactions:
sources:
- column: product_id
dataType: INT
isNullable: true
target:
id: products.product_id
type: attribute
Expand Down
Loading