Skip to content

Commit

Permalink
Use the prepared statement performance schema if available
Browse files Browse the repository at this point in the history
  • Loading branch information
sodabrew committed Apr 11, 2018
1 parent 0496233 commit 35e0bf4
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 35e0bf4

Please sign in to comment.