You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## DIFFing files locally
➜ gh repo clone rockset/rockset-go-client
Cloning into 'rockset-go-client'...
[...]
Resolving deltas: 100% (2397/2397), done.
➜ cd rockset-go-client
➜ git diff c91aa14:openapi/model_query_request_sql.go 4b9a1a6:openapi/model_query_request_sql.go | grep "^\+[^+]\|^-[^-]"| grep -wi paginate
- // Flag to paginate and store the results of this query for later / sequential retrieval.
- Paginate *bool `json:"paginate,omitempty"`
-// GetPaginate returns the Paginate field value if set, zero value otherwise.
- if o == nil || o.Paginate == nil {
- return*o.Paginate
-// GetPaginateOk returns a tuple with the Paginate field value if set, nil otherwise
- if o == nil || o.Paginate == nil {
- return o.Paginate, true
- if o != nil && o.Paginate != nil {
-// SetPaginate gets a reference to the given bool and assigns it to the Paginate field.
- o.Paginate = &v
- if o.Paginate != nil {
- toSerialize["paginate"] = o.Paginate
You can also check openapi/model_query_request_sql.go PR #103diff.
This broke our code which was relying on this feature.
Can you please confirm that this features were removed on purpose and you plan to re-introduce it in the future?
If not please advise what we could use instead.
Thank you for your support with this issue!
Regards,
George M.
The text was updated successfully, but these errors were encountered:
Hello rockset team,
As far as I can tell the paginate related features were removed in:
v0.18.0
You can also check
openapi/model_query_request_sql.go
PR #103 diff.This broke our code which was relying on this feature.
Can you please confirm that this features were removed on purpose and you plan to re-introduce it in the future?
If not please advise what we could use instead.
Thank you for your support with this issue!
Regards,
George M.
The text was updated successfully, but these errors were encountered: