This file is indexed.

/usr/include/pqxx/internal/gates/transaction-tablewriter.hxx is in libpqxx3-dev 1:3.1.1-0ubuntu4.

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
#include <pqxx/internal/callgate.hxx>

namespace pqxx
{
namespace internal
{
namespace gate
{
class PQXX_PRIVATE transaction_tablewriter : callgate<transaction_base>
{
  friend class pqxx::tablewriter;

  transaction_tablewriter(reference x) : super(x) {}

  void BeginCopyWrite(
	const PGSTD::string &table,
	const PGSTD::string &columns = PGSTD::string())
	{ home().BeginCopyWrite(table, columns); }

  void WriteCopyLine(const PGSTD::string &line) { home().WriteCopyLine(line); }

  void EndCopyWrite() { home().EndCopyWrite(); }
};
} // namespace pqxx::internal::gate
} // namespace pqxx::internal
} // namespace pqxx