This is an automated email from the ASF dual-hosted git repository. jongyoul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 7586318cca [MINOR] Update jdbc.md Change postgres username (#4704) 7586318cca is described below commit 7586318cca0677417ced02ba8fc39a3f3e52421b Author: bigpear0201 <bigpear0...@gmail.com> AuthorDate: Mon Feb 5 20:36:36 2024 +0800 [MINOR] Update jdbc.md Change postgres username (#4704) change postgres default username mysql_user/mysql_password to pg_user/pg_password. --- docs/interpreter/jdbc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/interpreter/jdbc.md b/docs/interpreter/jdbc.md index 35f8695c50..19749bbfb0 100644 --- a/docs/interpreter/jdbc.md +++ b/docs/interpreter/jdbc.md @@ -450,11 +450,11 @@ Here are some examples you can refer to. Including the below connectors, you can </tr> <tr> <td>default.user</td> - <td>mysql_user</td> + <td>pg_user</td> </tr> <tr> <td>default.password</td> - <td>mysql_password</td> + <td>pg_password</td> </tr> </table>