| 197 | |
| 198 | |
| 199 | class String(VarChar): |
| 200 | |
| 201 | CMP_VALUE = 102 |
| 202 | |
| 203 | MIN = VarChar.MAX + 1 # This is used to differentiate between VarChar and String. |
| 204 | MAX = 1000 # This is not the true max. |
| 205 | |
| 206 | |
| 207 | class Timestamp(DataType): |
no outgoing calls
no test coverage detected