We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user_session_vars
With the following config .yaml:
config .yaml
user_saession_vars: - user: "root" vars: "dolt_show_system_tables": 1
I get the folloowing error after connecting to root to that server:
ERRO[0023] unable to process ComInitDB: Variable 'dolt_show_system_tables' can't be set to the value of '1' database=config_blog
Same with autocommit
autocommit
MySQL [(none)]> select @@autocommit; ERROR 1105 (HY000): Variable 'autocommit' can't be set to the value of '0'
However, string variables seems fine:
user_session_vars: - name: "root" vars: "version": "the best"
And on the client:
MySQL [(none)]> select @@version; +-----------+ | @@version | +-----------+ | the best | +-----------+ 1 row in set (0.001 sec)
The text was updated successfully, but these errors were encountered:
interface{}
string
jycor
Successfully merging a pull request may close this issue.
With the following
config .yaml
:I get the folloowing error after connecting to root to that server:
Same with
autocommit
However, string variables seems fine:
And on the client:
The text was updated successfully, but these errors were encountered: