This is an automated email from the ASF dual-hosted git repository. jhyde pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 80f96bbcb5d75421df5e005bdc67c165f451e56d Author: Zhengqiang Duan <[email protected]> AuthorDate: Fri Feb 9 08:41:31 2024 +0800 [CALCITE-6256] Correct incorrect rendering of HTML on InnoDB adapter page --- site/_docs/innodb_adapter.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/site/_docs/innodb_adapter.md b/site/_docs/innodb_adapter.md index 1395d7d43e..6d5c760410 100644 --- a/site/_docs/innodb_adapter.md +++ b/site/_docs/innodb_adapter.md @@ -95,8 +95,12 @@ a MySQL "scott" database: } {% endhighlight %} -`sqlFilePath` is a list of DDL files, you can generate table definitions by executing -`mysqldump -d -u<username> -p<password> -h <hostname> <dbname>` in command-line. +`sqlFilePath` is a list of DDL files, you can generate table +definitions by executing `mysqldump` in command-line: + +{% highlight bash %} +mysqldump -d -u<username> -p<password> -h <hostname> <dbname> +{% endhighlight %} The file content of `/path/scott.sql` is as follows:
