Low commit activity in last 3 years
No release in over a year
Gives a hook on MySQL warnings that allow you to either raise or log them.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 3.0

Runtime

>= 0.3.12
 Project Readme

Activerecord::PedantMysql2

Build Status Code Climate Coverage Status Gem Version

This gem is deprecated as of Active Record 7.1, and will be archived once a subsequent version of Active Record is released.

SQL warning reporting is available on all MySQL Active Record adapter classes as of version 7.1. Please migrate to the upstream API.


ActiveRecord adapter for MySQL that report warnings.

The main usage is to progressively identify and fix MySQL warnings generated by legacy rails applications, and ultimately enable strict mode.

Alternatively it can be used to treat all MySQL warnings as errors.

Installation

Add this line to your application's Gemfile:

gem 'activerecord-pedantmysql2-adapter'

And then execute:

$ bundle

Finally in your database.yml:

adapter: pedant_mysql2

Or if you're using DATABASE_URL or the url key in database.yml, you can use the pedant-mysql2 URL scheme:

url: pedant-mysql2://host/database

Usage

By default it will raise warnings as errors. But you can define any behaviour yourself in an initializer.

You can report them to your exception tracker:

  PedantMysql2.on_warning = lambda { |warning| Airbrake.notify(warning) }

or totally silence them:

  PedantMysql2.silence_warnings!

and to restore it to raising warnings as errors:

  PedantMysql2.raise_warnings!

You can easily whitelist some types of warnings:

PedantMysql2.ignore(/Some warning I don't care about/i)

If you want to silence warnings for a limited scope, you can capture the warnings:

warnings = PedantMysql2.capture_warnings do
  # perform query that may raise an error you want to stifle
end

Thread-safe

This gem is tested to be thread safe with a couple known exceptions.

PedantMysql2.ignore is not thread safe and should only be called during initialization of your app. Changing this within a thread while another is updating it could be problematic. PedantMysql2.on_warning= is not thread safe, this should also be called only during initialization.

If you find any other parts that are not thread-safe, please create an issue or PR.

Development

Setting up the development environment is very straightforward. In order to keep the test as simple as possible we rely on your MySQL database to have a travis user and a pedant_mysql2_test database.

You can set this up easily using the following commands as your root MySQL user:

CREATE USER 'travis'@'localhost';
CREATE DATABASE pedant_mysql2_test;
GRANT ALL PRIVILEGES ON pedant_mysql2_test.* TO 'travis'@'localhost';

Contributing

  1. Fork it ( http://github.com/Shopify/activerecord-pedantmysql2-adapter/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request