"Foo" // string
'F' // Char
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
class SerializableReport < JSONAPI::Serializable::Resource | |
using Refinements::SerializableHash | |
id { @object['id'] } | |
attributes :foo, :bar | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
module Arel | |
module Visitors | |
class SQLServer < Arel::Visitors::ToSql | |
def table_From_Statement o | |
core = o.cores.first | |
table_From_Node(core.from) || table_From_Node(core.source) |
OlderNewer