Sergei Makarov

Results 19 comments of Sergei Makarov

So, now `GreaterThani` is assert only for array. It's my mistake. I think. if we add comparing(equal) for numbers with error on zero case, it will be ok

Sorry for long answer. My point is need to copy logic assertion from assert package and implement it. If it will break backwards compatibility, it's ok.

Thank you @shalimski for https://github.com/ozontech/cute/pull/18

Yes, thank you. Main problem in crud is examples, it's really hard to integrate. Could you also write example for `crud.MakeUpsertManyRequest`?

@oleg-jukovec. One more question with crud. How implement pagination select request? For example in Lua ``` s:select({0},{iterator='GT',offset=1,limit=2}) ``` In [Options](https://github.com/tarantool/go-tarantool/blob/master/crud/select.go#L33) i found this ``` // First describes the maximum count...

Okay :( So I should make 2 requests: First for get object for `After`, Second for make select with pagination?