mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 08:17:08 +08:00
sort out all test folders into passable and TODOs
This commit is contained in:
@@ -15,13 +15,14 @@ from django.db.models.sql.where import WhereNode
|
||||
JoinInfo = namedtuple("JoinInfo", ["final_field", "targets", "opts", "joins", "path", "transform_function"])
|
||||
|
||||
class RawQuery:
|
||||
high_mark: None
|
||||
low_mark: int
|
||||
high_mark: Optional[int]
|
||||
low_mark: Optional[int]
|
||||
params: Union[Any] = ...
|
||||
sql: str = ...
|
||||
using: str = ...
|
||||
extra_select: Dict[Any, Any] = ...
|
||||
annotation_select: Dict[Any, Any] = ...
|
||||
cursor: object = ...
|
||||
def __init__(self, sql: str, using: str, params: Any = ...) -> None: ...
|
||||
def chain(self, using: str) -> RawQuery: ...
|
||||
def clone(self, using: str) -> RawQuery: ...
|
||||
|
||||
Reference in New Issue
Block a user