mirror of https://github.com/VinGarcia/ksql.git
Merge branch 'master' of github.com:VinGarcia/ksql into allow-user-defined-dialects
commit
9efa78a619
4
Makefile
4
Makefile
|
@ -19,8 +19,8 @@ bench: go-mod-tidy
|
||||||
@echo "Benchmark executed at: $$(date --iso)" | tee -a benchmark.tmp
|
@echo "Benchmark executed at: $$(date --iso)" | tee -a benchmark.tmp
|
||||||
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)" | tee -a benchmark.tmp
|
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)" | tee -a benchmark.tmp
|
||||||
|
|
||||||
readme: benchmark.tmp README.template.md
|
readme: benchmark.tmp readme.template.md
|
||||||
go run scripts/build-readme-from-template.go README.template.md examples/crud/crud.go benchmark.tmp
|
go run scripts/build-readme-from-template.go readme.template.md examples/crud/crud.go benchmark.tmp
|
||||||
|
|
||||||
lint: setup go-mod-tidy
|
lint: setup go-mod-tidy
|
||||||
@$(GOBIN)/staticcheck $(path) $(args)
|
@$(GOBIN)/staticcheck $(path) $(args)
|
||||||
|
|
|
@ -462,10 +462,6 @@ is configured to kill the containers after 20 seconds.
|
||||||
- Update `ksqltest.FillStructWith` to work with `ksql:"..,json"` tagged attributes
|
- Update `ksqltest.FillStructWith` to work with `ksql:"..,json"` tagged attributes
|
||||||
- Create a way for users to submit user defined dialects
|
- Create a way for users to submit user defined dialects
|
||||||
- Improve error messages (ongoing)
|
- Improve error messages (ongoing)
|
||||||
- Add support for the Patch function to work with maps for partial updates
|
|
||||||
- Add support for the Insert function to work with maps
|
|
||||||
- Add support for a `ksql.Array(params ...interface{})` for allowing queries like this:
|
|
||||||
`db.Query(ctx, &user, "SELECT * FROM user WHERE id in (?)", ksql.Array(1,2,3))`
|
|
||||||
|
|
||||||
## Optimization Oportunities
|
## Optimization Oportunities
|
||||||
|
|
||||||
|
|
|
@ -229,10 +229,6 @@ is configured to kill the containers after 20 seconds.
|
||||||
- Update `ksqltest.FillStructWith` to work with `ksql:"..,json"` tagged attributes
|
- Update `ksqltest.FillStructWith` to work with `ksql:"..,json"` tagged attributes
|
||||||
- Create a way for users to submit user defined dialects
|
- Create a way for users to submit user defined dialects
|
||||||
- Improve error messages (ongoing)
|
- Improve error messages (ongoing)
|
||||||
- Add support for the Patch function to work with maps for partial updates
|
|
||||||
- Add support for the Insert function to work with maps
|
|
||||||
- Add support for a `ksql.Array(params ...interface{})` for allowing queries like this:
|
|
||||||
`db.Query(ctx, &user, "SELECT * FROM user WHERE id in (?)", ksql.Array(1,2,3))`
|
|
||||||
|
|
||||||
## Optimization Oportunities
|
## Optimization Oportunities
|
||||||
|
|
Loading…
Reference in New Issue