Dmitry Kropachev
Dmitry Kropachev
It does not report token back, and therefore token could not be released ``` return &Stmt{ Query: builder, Values: values, Types: typs, QueryType: SelectStatementType, } ```
At this moment genInsertJSONStmt have case: ` if table.IsCounterTable() { return nil, nil } `
Make it possible for users to decide what ratio it wants to see. Ratio types: 1. Raw ration score, a floating point number that indicates how often you want to...
Currently, complex types are excluded from test sets. Let's add them.
Timeout is not an standard error, it does not tell weather operation was completed or not. To handle timeout properly we need to: 1. For validations - just retry 2....
When schema is loaded from the file it is never tested on validity, as result, in some cases, it could lead to panic
Currently we delete rows, but we also need to check that deleted rows are not reappeared. Probably as part of validation workflow.
Current flow is such that only place where token is getting released from the `inflight` state is `validation` : ``` if stmt.ValuesWithToken != nil { defer func() { g.ReleaseToken(stmt.ValuesWithToken.Token) }()...
Gemini code is not optimized for memory allocations. Here is what we can do as first step to optimize it: 1. Locate most loaded peaces of the code: - Value...