(self, **kw)
| 1233 | class="st">""" |
| 1234 | |
| 1235 | def __init__(self, **kw): |
| 1236 | class="cm"># DOUBLE PRECISION is a synonym for FLOAT(53) on SQL server. |
| 1237 | class="cm"># it is only accepted as the word class="st">"DOUBLE PRECISION" in DDL, |
| 1238 | class="cm"># the numeric precision value is not allowed to be present |
| 1239 | kw.setdefault(class="st">"precision", 53) |
| 1240 | super().__init__(**kw) |
| 1241 | |
| 1242 | |
| 1243 | class TINYINT(sqltypes.Integer): |
nothing calls this directly
no test coverage detected