Changes between Version 1 and Version 2 of Ticket #33647, comment 2
- Timestamp:
- Apr 16, 2022, 5:41:04 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33647, comment 2
v1 v2 33 33 Edit: 34 34 Just tested it - affected by falsey truncation are `bit`, `bit varying`, `character` and `character varying`. All others are specifying precision, which is either not explicitly set by django, or would raise anyway for non-suitable values (thats the case for `numeric`). 35 36 Edit2: 37 Arrayfields also might be affected for these 4 types, as `select '{1234567890}'::varchar(6)[]` also silently truncates the content.