rewrite: Update data ORM.
Fix parsing bug in Update Query. Fix parsing bug in Insert Query. Add mapping interface to Model. Implement OrderMixin, with ORDER and NULLS Enums. Add `result` field to Query.
This commit is contained in:
@@ -115,7 +115,7 @@ class Column(ColumnExpr, Generic[T]):
|
||||
self.expr = sql.Identifier(owner._tablename_, self.name)
|
||||
|
||||
@overload
|
||||
def __get__(self: 'Column[T]', obj: None, objtype: None) -> 'Column[T]':
|
||||
def __get__(self: 'Column[T]', obj: None, objtype: "None | Type['RowModel']") -> 'Column[T]':
|
||||
...
|
||||
|
||||
@overload
|
||||
|
||||
Reference in New Issue
Block a user