gogrisohil
Results
2
issues of
gogrisohil
Hi, We are trying to run the KCL multilang daemon using the properties file and have it read records from a certain point in time. We tried setting `initialPositionInStream =...
Minimal working example ``` package main import ( "fmt" sq "github.com/Masterminds/squirrel" ) func main() { var ids []uint64 query, args, err := sq.Select("sub_account_id").From("someTable").Where(sq.Eq{"id": ids}).ToSql() fmt.Println(query, args, err) } ``` Ideally...