Changes between Initial Version and Version 1 of Ticket #33539
- Timestamp:
- Feb 23, 2022, 7:31:49 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33539 – Description
initial v1 7 7 `CREATE INDEX "zerver_message_search_tsvector" ON "zerver_message" USING gin ("search_tsvector")WITH (fastupdate = off) ;` 8 8 9 Note the missing space before `WITH`. 10 11 Patch: https://github.com/django/django/pull/15459 9 Note the missing space before `WITH`. It happens that it doesn’t affect the behavior since it follows `)` (at least in all currently supported syntaxes), but it should be cleaned up anyway, so I submitted https://github.com/django/django/pull/15459.