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 7f0f4f05b9f921706f3c3d9000a87f9fbeda0025 Author: Zhengqiang Duan <[email protected]> AuthorDate: Fri Feb 9 07:29:58 2024 +0800 [CALCITE-6256] Fix incorrect rendering of HTML on InnoDB adapter page --- site/_docs/innodb_adapter.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/site/_docs/innodb_adapter.md b/site/_docs/innodb_adapter.md index 58ef596526..1395d7d43e 100644 --- a/site/_docs/innodb_adapter.md +++ b/site/_docs/innodb_adapter.md @@ -95,9 +95,8 @@ 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 -d -u<username> -p<password> -h <hostname> <dbname>` in command-line. The file content of `/path/scott.sql` is as follows:
