Refactor Makefile tools installation (#313)

* Refactor Makefile tools installation

Updating tools is not easy due to the bad Makefile design
Make it easier to update tools, preparing to golang and gocql update.

* Apply make fix

* Cleanup github workflow
This commit is contained in:
Dmitry Kropachev
2025-04-25 08:34:30 -04:00
committed by GitHub
parent c12236d8f3
commit 439a1ba517
3 changed files with 56 additions and 22 deletions

View File

@@ -31,13 +31,13 @@ func (a assignment) writeCql(cql *bytes.Buffer) (names []string) {
// UpdateBuilder builds CQL UPDATE statements.
type UpdateBuilder struct {
table string
assignments []assignment
where where
_if _if
using using
exists bool
allowFiltering bool
table string
assignments []assignment
where where
_if _if
using using
exists bool
allowFiltering bool
}
// Update returns a new UpdateBuilder with the given table name.