From 2de54d104269488db4905e6eec1b80b8a7c65d2e Mon Sep 17 00:00:00 2001 From: jongmin-won Date: Thu, 11 Apr 2024 14:31:05 +0900 Subject: [PATCH] style: Fixed PT_CHANGE_OWNER conditional check inside semantic_check --- src/parser/semantic_check.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/parser/semantic_check.c b/src/parser/semantic_check.c index 7725b7ccdeb..3ca6c3c9617 100644 --- a/src/parser/semantic_check.c +++ b/src/parser/semantic_check.c @@ -10000,8 +10000,7 @@ pt_check_alter_serial (PARSER_CONTEXT * parser, PT_NODE * node) if (!start_val && !increment_val && !max_val && !min_val && cyclic == 0 && no_max == 0 && no_min == 0 - && no_cyclic == 0 && !cached_num_val && no_cache == 0 - && owner_name == NULL && node->info.serial.comment == NULL) + && no_cyclic == 0 && !cached_num_val && no_cache == 0 && node->info.serial.comment == NULL) { PT_ERRORmf (parser, node, MSGCAT_SET_PARSER_SEMANTIC, MSGCAT_SEMANTIC_SERIAL_ALTER_NO_OPTION, 0); return;