Hannes Ljungberg
Hannes Ljungberg
> @hannseman Thanks for this patch 👍 One of potential uses mentioned in the ticket and the previous PR is to pass hints (see [Oracle](https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Comments.html#GUID-D316D545-89E2-4D54-977F-FC97815CD62E) and [MySQL](https://dev.mysql.com/doc/refman/8.0/en/optimizer-hints.html) docs), however they're...
Updated to add the comments after `SELECT` and `UPDATE`, supporting `DELETE` proved to be a rabbit hole.. Edit: Found Adam's [implementation](https://django-mysql.readthedocs.io/en/latest/queryset_extensions.html#django_mysql.models.label) of this. And notably the comment about executable comments...
> Agreed, let's add a whitespace after /* and before */. We can add support for hints in a separate method. Sounds good, what do you think about the position...
> I think the front is better, for the reason Nick says. Monitoring tools like innotop show the first N characters of a query. Seeing "SELECT /* example.views */" in...
I encountered your issue when trying to find a solution and came up with the following, maybe it can help. ```python import logging.config from typing import Tuple import structlog import...
Good idea, it would be interesting to try it out. It could be as simple as overriding `db_type` on the `EnumField`-class. https://docs.djangoproject.com/en/dev/howto/custom-model-fields/#custom-database-types
It’s a very new feature and AFAIK Docker API 1.41 has not been released yet. The latest Docker engine release is supporting 1.40. We also need to have [docker-py](https://github.com/docker/docker-py) support...
Thanks for you report! Yes using `lineinfile` is probably the safest approach. I plan on upgrading this package to be fully buster compatible in the near future and I'll try...
Not really sure about these test failures. They look unrelated and caused by timeouts.
Let me know if there's anything I can help with regarding this PR. Thanks!