Changes between Initial Version and Version 1 of Ticket #34887, comment 5
- Timestamp:
- Sep 13, 2024, 9:43:31 AM (8 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34887, comment 5
initial v1 1 1 For the record I've opted into accepting this feature in ticket:35759#comment:6 as to me the situation on SQLite is similar to Postgres. 2 2 3 On SQLite both `varchar` and `text` are an alias for the same internal type but it's also the case on Postgres where [https://www.depesz.com/2010/03/02/charx-vs-varcharx-vs-varchar-vs-text/ they are aliases] for `varlena` ).3 On SQLite both `varchar` and `text` are an alias for the same internal type but it's also the case on Postgres where [https://www.depesz.com/2010/03/02/charx-vs-varcharx-vs-varchar-vs-text/ they are aliases] for `varlena`. 4 4 5 5 The lack of constraint enforcement on SQLite is a distinct problem (see #21471) that allowing `max_length=None` could help solving by providing a way to restore the previous behaviour for users that need it.