rails--rails/activerecord/lib/arel/visitors
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
..
dot.rb Arel::Visitors::Dot renders all attributes of some AST node types 2021-05-03 09:35:23 -04:00
mysql.rb Support NullsFirst for all databases. 2021-05-18 16:58:21 -04:00
postgresql.rb Support NullsFirst for all databases. 2021-05-18 16:58:21 -04:00
sqlite.rb
to_sql.rb Support NullsFirst for all databases. 2021-05-18 16:58:21 -04:00
visitor.rb