This file is indexed.

/usr/share/common-lisp/source/pg/defpackage.lisp is in cl-pg 1:20061216-5.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(defpackage :postgresql
  (:nicknames :pg)
  (:use :common-lisp
        :pg-md5
        #+cmu :alien
        #+cmu :c-call
        #+openmcl :ccl)
  #+openmcl (:shadow ccl:socket-connect)
  (:export #:pg-connect #:pg-exec #:pg-result #:pg-disconnect
	   #:pgcon-sql-stream
           #:*pg-disable-type-coercion*
           #:*pg-client-encoding*
           #:pg-databases #:pg-tables #:pg-columns
           #:pg-backend-version
           #:pg-date-style
           #:pg-client-encoding
           #:with-pg-connection
           #:with-pg-transaction
           #:pg-for-each
           #:pglo-create
           #:pglo-open
           #:pglo-close
           #:pglo-read
           #:pglo-write
           #:pglo-lseek
           #:pglo-tell
           #:pglo-unlink
           #:pglo-import
           #:pglo-export
           #:pg-supports-pbe
           #:pg-prepare
           #:pg-bind
           #:pg-execute
           #:pg-close-portal
           #:pg-close-statement
           #:postgresql-error
           #:connection-failure
           #:authentication-failure
           #:protocol-error
           #:backend-error))

;; EOF