This file is indexed.

/usr/share/gocode/src/github.com/denisenkom/go-mssqldb/doc.go is in golang-github-denisenkom-go-mssqldb-dev 0.0~git20170717.0.8fccfc8-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
// package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver)
// database servers.
//
// This package registers two drivers:
//    sqlserver: uses native "@" parameter placeholder names and does no pre-processing.
//    mssql: expects identifiers to be prefixed with ":" and pre-processes queries.
//
// If the ordinal position is used for query parameters, identifiers will be named
// "@p1", "@p2", ... "@pN".
//
// Please refer to the README for the format of the DSN.
package mssql