Fix typo s/InvalidStatement/StatementInvalid/ [ci skip]

This commit is contained in:
Ryuta Kamizono 2020-09-15 18:57:25 +09:00
parent 47f5459138
commit 77fc1c2b8e
1 changed files with 2 additions and 2 deletions

View File

@ -5,12 +5,12 @@
*Eileen M. Uchitelle*, *John Crepezzi*
* All connection adapters `execute` now raises `ActiveRecord::ConnectionNotEstablished` rather than
`ActiveRecord::InvalidStatement` when they encounter a connection error.
`ActiveRecord::StatementInvalid` when they encounter a connection error.
*Jean Boussier*
* `Mysql2Adapter#quote_string` now raises `ActiveRecord::ConnectionNotEstablished` rather than
`ActiveRecord::InvalidStatement` when it can't connect to the MySQL server.
`ActiveRecord::StatementInvalid` when it can't connect to the MySQL server.
*Jean Boussier*