You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address Java::JavaSql::SQLException: Missing IN or OUT parameter at index:: 3:
when `offset` and `limit` used at the same time with JRuby and Oracle 11gR2 or lower
since rails/arel#450 needs 3 bind variables,
`:a1`, `:a2` and `:a1` again. It is probably due to Oracle enhanced adapter
JDBC implementation handles bind variables by their order not their name
then we need to handle first `:a1` for `offset` and last `:a1` separately.
0 commit comments