Luc Didry 44507c
# vim:set sw=4 ts=4 sts=4 ft=perl expandtab:
Luc Didry 44507c
package Lufi::DB::Slice::Mysql;
Luc Didry 44507c
use Mojo::Base 'Lufi::DB::Slice';
Luc Didry 44507c
Luc Didry 44507c
sub new {
Luc Didry 44507c
    my $c = shift;
Luc Didry 44507c
Luc Didry 44507c
    $c = $c->SUPER::new(@_);
Luc Didry 44507c
Luc Didry 8d6f10
    $c = $c->_slurp if defined $c->record;
Luc Didry 8d6f10
Luc Didry 44507c
    return $c;
Luc Didry 44507c
}
Luc Didry 44507c
Luc Didry 44507c
1;