Dmitry Kropachev

Results 344 issues of 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, } ```

bug

At this moment genInsertJSONStmt have case: ` if table.IsCounterTable() { return nil, nil } `

enhancement

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...

enhancement

Currently, complex types are excluded from test sets. Let's add them.

enhancement

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....

enhancement

When schema is loaded from the file it is never tested on validity, as result, in some cases, it could lead to panic

enhancement

Currently we delete rows, but we also need to check that deleted rows are not reappeared. Probably as part of validation workflow.

enhancement

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) }()...

bug

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...

enhancement