This file is indexed.

/usr/include/postgres-xc/server/pgxc/copyops.h is in postgres-xc-server-dev 1.1-2ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*--------------------------------------------------------------------------
 *
 * copyops.h
 *		Routines for manipulation of remote COPY data
 *
 *
 * Copyright (c) 2010-2012 Postgres-XC Development Group
 *
 *
 * IDENTIFICATION
 *		src/include/pgxc/copyops.h
 *
 *-------------------------------------------------------------------------
 */

#ifndef COPYOPS_H
#define COPYOPS_H

#include "access/tupdesc.h"

/* Type of data delimiter used for data redistribution using remote COPY */
#define COPYOPS_DELIMITER	'\t'

extern char **CopyOps_RawDataToArrayField(TupleDesc tupdesc, char *message, int len);
extern char *CopyOps_BuildOneRowTo(TupleDesc tupdesc, Datum *values, bool *nulls, int *len);

#endif