• S
    Allow the connection adapters to determine the order of bind params · 96f3f3d8
    Sean Griffin 提交于
    In 5.0 we use bind parameters for limit and offset, while in 4.2 we used
    the values directly. The code as it was written assumed that limit and
    offset worked as `LIMIT ? OFFSET ?`. Both Oracle and SQL Server have a
    different syntax, where the offset is stated before the limit. We
    delegate this behavior to the connection adapter so that these adapters
    are able to determine how the bind parameters are flattened based on
    what order their specification has the various clauses appear.
    
    Fixes #24775
    96f3f3d8
query_methods.rb 40.5 KB