This file is indexed.

/usr/lib/R/site-library/RSQLite/README is in r-cran-rsqlite 0.11.4-3.

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
RSQLite -- An embedded database engine in R

SQLite (http://www.sqlite.org) is a public-domain,
single-user, very light-weight database engine that implements
a decent subset of the SQL 92 standard, including the core
table creation, updating, insertion, and selection operations,
plus transaction management.

For those interested, the actual implementation of SQLite
relies on a simple virtual database machine for dynamically
translating SQL into executable code, for details see
www.hwaci.com/sw/sqlite/vdbe.html

RSQLite complies with DBI database interface.

See the file "INSTALL" for details on how to install the package on
Linux/Unix-like systems.  See INSTALL.windows for instructions on
how to compile it from source, but notice that there is a Windows
binary distribution.