rails--rails/activerecord/lib/arel
Keenan Brock b775f0cbdc Support NullsFirst for all databases.
Most databases order tables with the `NULL` value first, having it before
all other data values. Postgres has `NULLS` last.

Fortunately, ANSI SQL has an option to allow the database to specify where NULLS
come out in this sort order

    ORDER BY column ASC NULLS FIRST

MS SQL, SQLite, Oracle, and Postgres all follow this syntax. Unfortunately, MySql
does not.

Before:

PostgreSQL: both `.nulls_first()` and `.nulls_last()` work as designed.
Others: both raise a runtime error.

After:

MySQL: `.nulls_first()` works as designed.
MySQL: `.nulls_last()` raises a runtime error
Others: both work as designed
2021-05-18 16:58:21 -04:00
..
attributes
collectors
nodes
visitors Support NullsFirst for all databases. 2021-05-18 16:58:21 -04:00
alias_predication.rb
crud.rb
delete_manager.rb
errors.rb
expressions.rb
factory_methods.rb
insert_manager.rb
math.rb
nodes.rb
order_predications.rb
predications.rb
select_manager.rb
table.rb
tree_manager.rb
update_manager.rb
visitors.rb
window_predications.rb