Changes between Initial Version and Version 1 of Ticket #34887, comment 5


Ignore:
Timestamp:
Sep 13, 2024, 9:43:31 AM (8 weeks ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34887, comment 5

    initial v1  
    11For 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.
    22
    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`).
     3On 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`.
    44
    55The 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.
Back to Top