This file is indexed.

/usr/share/pgmodeler/schemas/xml/dtd/function.dtd 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
27
<!--
  CAUTION: Do not modify this file directly on it's code unless you know what you are doing.
           Unexpected results may occur if the code is changed deliberately.
-->
<!ELEMENT function (schema?,role?,comment?, appended-sql?,prepended-sql?,language?,return-type?,parameter*,definition*)>
<!ATTLIST function name CDATA #IMPLIED>
<!ATTLIST function returns-setof (true|false) "false">
<!ATTLIST function window-func (true|false) "false">
<!ATTLIST function leakproof (true|false) "false">
<!ATTLIST function behavior-type CDATA #IMPLIED>
<!ATTLIST function function-type CDATA #IMPLIED>
<!ATTLIST function security-type CDATA #IMPLIED>
<!ATTLIST function execution-cost CDATA #IMPLIED>
<!ATTLIST function row-amount CDATA #IMPLIED>
<!ATTLIST function signature CDATA #IMPLIED>
<!ATTLIST function ref-type (none|validator|handler|inline|input|output|receive|send|tpmodin|tpmodout|analyze|canonical|subtypediff|join|restriction|final|transition|operfunc) "none">
<!ATTLIST function protected (false|true) "false">
<!ATTLIST function sql-disabled (false|true) "false">

<!ELEMENT parameter (type)>
<!ATTLIST parameter name CDATA #REQUIRED>
<!ATTLIST parameter default-value CDATA #IMPLIED>
<!ATTLIST parameter in (true|false) "false">
<!ATTLIST parameter out (true|false) "false">
<!ATTLIST parameter variadic (true|false) "false">

<!ELEMENT return-type (type?,parameter*)>