This file is indexed.

/usr/share/pgmodeler/schemas/catalog/server.sch is in pgmodeler-common 0.9.1~beta-1.

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
# Catalog queries for server attributes
# CAUTION: Do not modify this file unless you know what you are doing.
#          Code generation can be broken if incorrect changes are made.

[SELECT name AS attribute, setting AS value FROM pg_settings WHERE name 
IN (
    'client_encoding', 
    'config_file', 
    'data_directory', 
    'dynamic_library_path', 
    'dynamic_shared_memory_type', 
    'hba_file', 
    'lc_collate', 
    'lc_ctype', 
    'listen_addresses',
    'max_connections',
    'port',
    'server_encoding',
    'ssl',
    'ssl_ca_file',
    'ssl_cert_file',
    'ssl_crl_file',
    'ssl_key_file',
    'password_encryption',
    'ident_file'
);]