Skip to content

Commit 5edf438

Browse files
committed
Make some indentation in gram.y consistent
Reviewed-by: Amit Langote <amitlangote09@gmail.com> Discussion: https://www.postgresql.org/message-id/flat/CA+HiwqE4XTdfb1nW=Ojoy_tQSRhYt-q_kb6i5d4xcKyrLC1Nbg@mail.gmail.com
1 parent 9f62536 commit 5edf438

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

src/backend/parser/gram.y

+13-16
Original file line numberDiff line numberDiff line change
@@ -645,23 +645,20 @@ static Node *makeRecursiveViewSelect(char *relname, List *aliases, Node *query);
645645
%type <list> hash_partbound
646646
%type <defelt> hash_partbound_elem
647647

648+
%type <node> json_format_clause_opt
649+
json_value_expr
650+
json_output_clause_opt
651+
json_name_and_value
652+
json_aggregate_func
653+
%type <list> json_name_and_value_list
654+
json_value_expr_list
655+
json_array_aggregate_order_by_clause_opt
656+
%type <ival> json_encoding_clause_opt
657+
json_predicate_type_constraint
658+
%type <boolean> json_key_uniqueness_constraint_opt
659+
json_object_constructor_null_clause_opt
660+
json_array_constructor_null_clause_opt
648661

649-
%type <node> json_format_clause_opt
650-
json_value_expr
651-
json_output_clause_opt
652-
json_name_and_value
653-
json_aggregate_func
654-
655-
%type <list> json_name_and_value_list
656-
json_value_expr_list
657-
json_array_aggregate_order_by_clause_opt
658-
659-
%type <ival> json_encoding_clause_opt
660-
json_predicate_type_constraint
661-
662-
%type <boolean> json_key_uniqueness_constraint_opt
663-
json_object_constructor_null_clause_opt
664-
json_array_constructor_null_clause_opt
665662

666663
/*
667664
* Non-keyword token types. These are hard-wired into the "flex" lexer.

0 commit comments

Comments
 (0)