target database can persist/return an empty string with a varchar.
(self)
| 1031 | |
| 1032 | @property |
| 1033 | def empty_strings_varchar(self): |
| 1034 | """ |
| 1035 | target database can persist/return an empty string with a varchar. |
| 1036 | """ |
| 1037 | |
| 1038 | return fails_if( |
| 1039 | ["oracle"], "oracle converts empty strings to a blank space" |
| 1040 | ) |
| 1041 | |
| 1042 | @property |
| 1043 | def empty_strings_text(self): |
nothing calls this directly
no test coverage detected