Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v3.1.0) is shown here.
These similar methods exist in v3.2.13:
show_variable(name)
public
SHOW VARIABLES LIKE ‘name’
Show source
def show_variable(name)
variables = select_all("SHOW VARIABLES LIKE '#{name}'")
variables.first['Value'] unless variables.empty?
end