sort out all test folders into passable and TODOs

This commit is contained in:
Maxim Kurnikov
2019-01-30 22:43:09 +03:00
parent b1153204d7
commit c9e8fe53a5
20 changed files with 819 additions and 49 deletions

View File

@@ -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: ...