This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new d8093101f80 [fix](repository) fix NullPointerException when execute create repository statement without properties (#30972) (#31056) d8093101f80 is described below commit d8093101f804712e035e57e89c8e9e050562f379 Author: caiconghui <55968745+caicong...@users.noreply.github.com> AuthorDate: Sun Feb 18 16:47:28 2024 +0800 [fix](repository) fix NullPointerException when execute create repository statement without properties (#30972) (#31056) bp #30972 Co-authored-by: caiconghui1 <caicongh...@jd.com> --- fe/fe-core/src/main/cup/sql_parser.cup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fe/fe-core/src/main/cup/sql_parser.cup b/fe/fe-core/src/main/cup/sql_parser.cup index bee869915a2..51aae6ad6af 100644 --- a/fe/fe-core/src/main/cup/sql_parser.cup +++ b/fe/fe-core/src/main/cup/sql_parser.cup @@ -3145,7 +3145,7 @@ key_value_map ::= opt_properties ::= {: - RESULT = null; + RESULT = Maps.newHashMap(); :} | properties:properties {: @@ -3155,7 +3155,7 @@ opt_properties ::= opt_ext_properties ::= {: - RESULT = null; + RESULT = Maps.newHashMap(); :} | KW_BROKER properties:properties {: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org