1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/visitors
Matt Yoho f41825809c Add Relation#annotate for SQL commenting
This patch has two main portions:

1. Add SQL comment support to Arel via Arel::Nodes::Comment.
2. Implement a Relation#annotate method on top of that.

== Adding SQL comment support

Adds a new Arel::Nodes::Comment node that represents an optional SQL
comment and teachers the relevant visitors how to handle it.

Comment nodes may be added to the basic CRUD statement nodes and set
through any of the four (Select|Insert|Update|Delete)Manager objects.

For example:

    manager = Arel::UpdateManager.new
    manager.table table
    manager.comment("annotation")
    manager.to_sql # UPDATE "users" /* annotation */

This new node type will be used by ActiveRecord::Relation to enable
query annotation via SQL comments.

== Implementing the Relation#annotate method

Implements `ActiveRecord::Relation#annotate`, which accepts a comment
string that will be appeneded to any queries generated by the relation.

Some examples:

    relation = Post.where(id: 123).annotate("metadata string")
    relation.first
    # SELECT "posts".* FROM "posts" WHERE "posts"."id" = 123
    # LIMIT 1 /* metadata string */

    class Tag < ActiveRecord::Base
      scope :foo_annotated, -> { annotate("foo") }
    end
    Tag.foo_annotated.annotate("bar").first
    # SELECT "tags".* FROM "tags" LIMIT 1 /* foo */ /* bar */

Also wires up the plumbing so this works with `#update_all` and
`#delete_all` as well.

This feature is useful for instrumentation and general analysis of
queries generated at runtime.
2019-03-21 20:30:56 -07:00
..
depth_first.rb Add Relation#annotate for SQL commenting 2019-03-21 20:30:56 -07:00
dot.rb Add Relation#annotate for SQL commenting 2019-03-21 20:30:56 -07:00
ibm_db.rb Extract sanitize_as_sql_comment from SQL visitor into connection 2019-03-19 04:15:52 +09:00
informix.rb Extract sanitize_as_sql_comment from SQL visitor into connection 2019-03-19 04:15:52 +09:00
mssql.rb Merge pull request #35664 from jeremyevans/remove-roflscaling 2019-03-19 16:36:29 -04:00
mysql.rb Arel: Implemented DB-aware NULL-safe comparison (#34451) 2018-11-15 14:49:55 -05:00
oracle.rb Arel: Implemented DB-aware NULL-safe comparison (#34451) 2018-11-15 14:49:55 -05:00
oracle12.rb Enable Lint/UselessAssignment cop to avoid unused variable warnings (#34904) 2019-01-09 18:09:01 +09:00
postgresql.rb Remove roflscaling constants 2019-03-19 08:48:13 -07:00
sqlite.rb Arel: Implemented DB-aware NULL-safe comparison (#34451) 2018-11-15 14:49:55 -05:00
to_sql.rb Add Relation#annotate for SQL commenting 2019-03-21 20:30:56 -07:00
visitor.rb Arel: :nodoc: all 2018-02-24 18:11:47 +10:30
where_sql.rb Arel: :nodoc: all 2018-02-24 18:11:47 +10:30