(self, **kw)
| 1218 | """the SQL Server REAL datatype.""" |
| 1219 | |
| 1220 | def __init__(self, **kw): |
| 1221 | # REAL is a synonym for FLOAT(24) on SQL server. |
| 1222 | # it is only accepted as the word "REAL" in DDL, the numeric |
| 1223 | # precision value is not allowed to be present |
| 1224 | kw.setdefault("precision", 24) |
| 1225 | super().__init__(**kw) |
| 1226 | |
| 1227 | |
| 1228 | class DOUBLE_PRECISION(sqltypes.DOUBLE_PRECISION): |