Skip to content

Commit

Permalink
Use the prepared statement performance schema if available (#960)
Browse files Browse the repository at this point in the history
Possibly resolves #937
  • Loading branch information
sodabrew authored Apr 11, 2018
1 parent 0496233 commit 36ab588
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/mysql2/statement_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
end

def stmt_count
# Use the performance schema in MySQL 5.7 and above
@client.query("SELECT COUNT(1) AS count FROM performance_schema.prepared_statements_instances").first['count'].to_i
rescue Mysql2::Error
# Fall back to the global prepapred statement counter
@client.query("SHOW STATUS LIKE 'Prepared_stmt_count'").first['Value'].to_i
end

Expand Down

0 comments on commit 36ab588

Please sign in to comment.