We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47a86f commit 2fa55f2Copy full SHA for 2fa55f2
contrib/adminpack/adminpack.c
@@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
177
*
178
* This handles the actual work for pg_file_write.
179
*/
180
-int64
+static int64
181
pg_file_write_internal(text *file, text *data, bool replace)
182
{
183
FILE *f;
@@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
286
287
* This handles the actual work for pg_file_rename.
288
289
-bool
+static bool
290
pg_file_rename_internal(text *file1, text *file2, text *file3)
291
292
char *fn1,
@@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
480
return (pg_logdir_ls_internal(fcinfo));
481
}
482
483
-Datum
+static Datum
484
pg_logdir_ls_internal(FunctionCallInfo fcinfo)
485
486
FuncCallContext *funcctx;
0 commit comments