Skip to content
Merged
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
5 changes: 5 additions & 0 deletions ingestify/infra/store/dataset/sqlalchemy/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def process_result_value(self, value, dialect):


class PathString(TypeDecorator):
cache_ok = True
impl = String(255)

def process_bind_param(self, value: Path, dialect):
Expand Down Expand Up @@ -115,6 +116,7 @@ def process_result_value(self, value, dialect):


class RevisionStateString(TypeDecorator):
cache_ok = True
impl = String(255)

def process_bind_param(self, value: RevisionState, dialect):
Expand All @@ -128,6 +130,7 @@ def process_result_value(self, value, dialect):


class OperationString(TypeDecorator):
cache_ok = True
impl = String(255)

def process_bind_param(self, value: Operation, dialect):
Expand All @@ -141,6 +144,7 @@ def process_result_value(self, value, dialect):


class TaskStateString(TypeDecorator):
cache_ok = True
impl = String(255)

def process_bind_param(self, value: TaskState, dialect):
Expand All @@ -154,6 +158,7 @@ def process_result_value(self, value, dialect):


class IngestionJobStateString(TypeDecorator):
cache_ok = True
impl = String(255)

def process_bind_param(self, value: IngestionJobState, dialect):
Expand Down
Loading