glushkovds / phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel
MIT License
147 stars 26 forks source link

Pagination methods (paginate, simplePaginate, cursorPaginate) not working with Eloquent model #35

Open azerioid opened 1 month ago

azerioid commented 1 month ago

The paginate(), simplePaginate(), and cursorPaginate() methods are not returning expected results when used with an Eloquent model.

glushkovds commented 1 month ago

@azerioid could you please give a more detailed example?

azerioid commented 1 month ago

@glushkovds when i use $query = Users:select()->paginate(10); return: Error: Call to undefined method PhpClickHouseLaravel\Builder::paginate() in file

glushkovds commented 1 month ago

Unfortunately, this functionality has not yet been implemented. You can use limit method. Or suggest your own implementation of these methods.