File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1068,7 +1068,7 @@ array_to_json(PG_FUNCTION_ARGS)
1068
1068
array_to_json_internal (array , result , false);
1069
1069
1070
1070
PG_RETURN_TEXT_P (cstring_to_text (result -> data ));
1071
- };
1071
+ }
1072
1072
1073
1073
/*
1074
1074
* SQL function array_to_json(row, prettybool)
@@ -1085,7 +1085,7 @@ array_to_json_pretty(PG_FUNCTION_ARGS)
1085
1085
array_to_json_internal (array , result , use_line_feeds );
1086
1086
1087
1087
PG_RETURN_TEXT_P (cstring_to_text (result -> data ));
1088
- };
1088
+ }
1089
1089
1090
1090
/*
1091
1091
* SQL function row_to_json(row)
@@ -1101,7 +1101,7 @@ row_to_json(PG_FUNCTION_ARGS)
1101
1101
composite_to_json (array , result , false);
1102
1102
1103
1103
PG_RETURN_TEXT_P (cstring_to_text (result -> data ));
1104
- };
1104
+ }
1105
1105
1106
1106
/*
1107
1107
* SQL function row_to_json(row, prettybool)
@@ -1118,7 +1118,7 @@ row_to_json_pretty(PG_FUNCTION_ARGS)
1118
1118
composite_to_json (array , result , use_line_feeds );
1119
1119
1120
1120
PG_RETURN_TEXT_P (cstring_to_text (result -> data ));
1121
- };
1121
+ }
1122
1122
1123
1123
/*
1124
1124
* Produce a JSON string literal, properly escaping characters in the text.
You can’t perform that action at this time.
0 commit comments