diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/engines/sql/compilers/ibm_db_compiler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/engines/sql/compilers/ibm_db_compiler.rb b/lib/arel/engines/sql/compilers/ibm_db_compiler.rb index e6be73d6a1..e15e783160 100644 --- a/lib/arel/engines/sql/compilers/ibm_db_compiler.rb +++ b/lib/arel/engines/sql/compilers/ibm_db_compiler.rb @@ -54,7 +54,7 @@ module Arel end def add_limit_on_delete(taken) - "" # Limiting the number of rows to be deleted is not supported by IBM_DB + raise "IBM_DB does not support limit on deletion" # Limiting the number of rows to be deleted is not supported by IBM_DB end end |