@@ -66,7 +66,14 @@ def read_sql_query(
66
66
con : _SQLConnection ,
67
67
index_col : str | list [str ] | None = ...,
68
68
coerce_float : bool = ...,
69
- params : list [Scalar ] | tuple [Scalar , ...] | Mapping [str , Scalar ] | None = ...,
69
+ params : (
70
+ list [Scalar ]
71
+ | tuple [Scalar , ...]
72
+ | tuple [tuple [Scalar , ...], ...]
73
+ | Mapping [str , Scalar ]
74
+ | Mapping [str , tuple [Scalar , ...]]
75
+ | None
76
+ ) = ...,
70
77
parse_dates : list [str ] | dict [str , str ] | dict [str , dict [str , Any ]] | None = ...,
71
78
* ,
72
79
chunksize : int ,
@@ -79,7 +86,14 @@ def read_sql_query(
79
86
con : _SQLConnection ,
80
87
index_col : str | list [str ] | None = ...,
81
88
coerce_float : bool = ...,
82
- params : list [Scalar ] | tuple [Scalar , ...] | Mapping [str , Scalar ] | None = ...,
89
+ params : (
90
+ list [Scalar ]
91
+ | tuple [Scalar , ...]
92
+ | tuple [tuple [Scalar , ...], ...]
93
+ | Mapping [str , Scalar ]
94
+ | Mapping [str , tuple [Scalar , ...]]
95
+ | None
96
+ ) = ...,
83
97
parse_dates : list [str ] | dict [str , str ] | dict [str , dict [str , Any ]] | None = ...,
84
98
chunksize : None = ...,
85
99
dtype : DtypeArg | None = ...,
@@ -91,7 +105,14 @@ def read_sql(
91
105
con : _SQLConnection ,
92
106
index_col : str | list [str ] | None = ...,
93
107
coerce_float : bool = ...,
94
- params : list [Scalar ] | tuple [Scalar , ...] | Mapping [str , Scalar ] | None = ...,
108
+ params : (
109
+ list [Scalar ]
110
+ | tuple [Scalar , ...]
111
+ | tuple [tuple [Scalar , ...], ...]
112
+ | Mapping [str , Scalar ]
113
+ | Mapping [str , tuple [Scalar , ...]]
114
+ | None
115
+ ) = ...,
95
116
parse_dates : list [str ] | dict [str , str ] | dict [str , dict [str , Any ]] | None = ...,
96
117
columns : list [str ] = ...,
97
118
* ,
@@ -105,7 +126,14 @@ def read_sql(
105
126
con : _SQLConnection ,
106
127
index_col : str | list [str ] | None = ...,
107
128
coerce_float : bool = ...,
108
- params : list [Scalar ] | tuple [Scalar , ...] | Mapping [str , Scalar ] | None = ...,
129
+ params : (
130
+ list [Scalar ]
131
+ | tuple [Scalar , ...]
132
+ | tuple [tuple [Scalar , ...], ...]
133
+ | Mapping [str , Scalar ]
134
+ | Mapping [str , tuple [Scalar , ...]]
135
+ | None
136
+ ) = ...,
109
137
parse_dates : list [str ] | dict [str , str ] | dict [str , dict [str , Any ]] | None = ...,
110
138
columns : list [str ] = ...,
111
139
chunksize : None = ...,
0 commit comments