amrnn90 / laravel-cursor-paginator

Cursor pagination for Laravel
MIT License
18 stars 6 forks source link

fix: use unionAll #22

Open jaulz opened 3 years ago

jaulz commented 3 years ago

Union does not work well with JSON columns:

could not identify an equality operator for type json

In this case we can also use unionAll because we don't need deduplication.

jaulz commented 3 years ago

This might be up to discussion because it can be solved by using "jsonb" instead of "json".