Skip to content

Commit

Permalink
Fix inherited_instance_variables in prepared_statements plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Aug 1, 2017
1 parent 9a8bacf commit e51a204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sequel/plugins/prepared_statements.rb
Expand Up @@ -34,7 +34,7 @@ def self.apply(model)
end

module ClassMethods
Plugins.inherited_instance_variables(self, :@prepared_statements=>lambda{|v| {:insert=>{}, :insert_select=>{}, :update=>{}, :lookup_sql=>{}, :fixed=>{}}.freeze})
Plugins.inherited_instance_variables(self, :@prepared_statements=>lambda{|v| {:insert=>{}, :insert_select=>{}, :update=>{}}.freeze})

private

Expand Down

0 comments on commit e51a204

Please sign in to comment.