django-clickhouse icon indicating copy to clipboard operation
django-clickhouse copied to clipboard

This project's goal is to build Yandex ClickHouse database into Django project.

Results 6 django-clickhouse issues
Sort by recently updated
recently updated
newest added

Original issue: https://github.com/M1ha-Shvn/django-pg-bulk-update/issues/89

bug

Hi as I realize, before any migration router check to find out list of allowed databases for specific operation. for model operation, allowed databases are specified in the model itself,...

enhancement

Hi, thanks for this interesting project! While playing with it, I had to dive a little into `infi.clickhouse_orm` and found out that there are many unresolved issues and unmerged PRs....

question
compatibility

CollapsingMergeTree can process delete as adding sign=-1 record without adding sign=1 record. By now, RedisStorage collects delete info, but it is ignored in sync process, as no database objects are...

enhancement

How i can use Window func in your orm?? Now i user raw() but its hard))) exclude_next = Q(value=F('next_value')) | Q(value=F('second_next_value')) exclude_prev = Q(value=F('prev_value')) | Q(value=F('second_prev_value')) queryset = ValueChart.objects.filter(signal_id=signal.id, date_time__range=(validated_data.get('date_time_before',...

question