Skip to content

Commit

Permalink
Add joins_implicitly as arg to column_valued() (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshvoigts committed Oct 29, 2023
1 parent 99a9287 commit 20436f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy-stubs/sql/functions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class FunctionElement( # type: ignore[misc]
) -> ScalarFunctionColumn[_TE]: ...
def table_valued(self, *expr: Any, **kw: Any) -> TableValuedAlias: ... # type: ignore[override]
def column_valued(
self, name: Optional[Any] = ...
self, name: Optional[Any], joins_implicitly: bool = False
) -> TableValuedColumn[Any]: ...
@property
def columns(self) -> ColumnCollection[ColumnElement[Any]]: ... # type: ignore[override]
Expand Down

0 comments on commit 20436f7

Please sign in to comment.