You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is completely valid MySQL syntax, but does not work against Vitess 7.0:
mysql> SET SESSION NET_READ_TIMEOUT= 86400, SESSION NET_WRITE_TIMEOUT= 86400;
ERROR 1105 (HY000): vtgate: http://localhost:15001/: syntax error at position 63 near 'NET_WRITE_TIMEOUT'
unfortunately, certain connectors/clients that are not easy to modify use this syntax. A good example is mysqldump in MySQL 8.0, which actually sends the above timeout variables sequence to the server, which cannot be bypassed via mysqldump CLI options.
The text was updated successfully, but these errors were encountered:
This is completely valid MySQL syntax, but does not work against Vitess 7.0:
Running them individually works fine:
unfortunately, certain connectors/clients that are not easy to modify use this syntax. A good example is mysqldump in MySQL 8.0, which actually sends the above timeout variables sequence to the server, which cannot be bypassed via mysqldump CLI options.
The text was updated successfully, but these errors were encountered: