# File lib/active_record/connection_adapters/abstract_mysql_adapter.rb, line 519
      def show_variable(name)
        variables = select_all("SHOW VARIABLES LIKE '#{name}'")
        variables.first['Value'] unless variables.empty?
      end