jayvynl

Results 34 comments of jayvynl

写给遇到相同问题的朋友,可以通过升级 goctl 解决该问题: ```shell git clone https://github.com/zeromicro/goctl-swagger cd goctl-swagger go get github.com/zeromicro/go-zero/tools/[email protected] go install ``` 但是有个问题啊,api 文件里不能含有 json/form/path/header 之外的 tag,否则生成的 swagger 文件会有问题。

> 写给遇到相同问题的朋友,可以通过升级 goctl 解决该问题: > > ```shell > git clone https://github.com/zeromicro/goctl-swagger > cd goctl-swagger > go get github.com/zeromicro/go-zero/tools/[email protected] > go install > ``` > > 但是有个问题啊,api 文件里不能含有 json/form/path/header 之外的 tag,否则生成的...

由于 PR 没有被合并, 新开了仓库解决 ISSUES 提到的大部分问题, 并支持 openapi 3 生成, https://github.com/jayvynl/goctl-openapi

> > 由于 PR 没有被合并, 新开了仓库解决 ISSUES 提到的大部分问题, 并支持 openapi 3 生成, https://github.com/jayvynl/goctl-openapi > > @jayvynl 为啥没合并 why unmerged? 不确定,可能是什么地方不符合维护者的想法,但是也没有 review 。

#88 修复了这个问题

Django always add an id field to model if you don't specify a primary key. To avoid this issue, just choose a field and add primary_key=True

For all the ClickHouse features which this project does not support, you can try use [unmanaged model](https://docs.djangoproject.com/en/4.2/ref/models/options/#managed). Assert there is a test table in postgreSQL: ```ssh postgres=# CREATE TABLE "public"."test"...

Is it caused by a SELECT query filtering JSON field?

@vigneshshettyin What is the query like

As shown in your profiling, `clickhouse_driver.varint.read_varint` take most of the execution time. The problem is not caused by this project. 1. Check if Django queryset generate expected SQL query, check...