]> begriffs open source - ai-pg/blob - full-docs/txt/infoschema-sql-features.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / infoschema-sql-features.txt
1
2 35.48. sql_features #
3
4    The table sql_features contains information about which formal features
5    defined in the SQL standard are supported by PostgreSQL. This is the
6    same information that is presented in Appendix D. There you can also
7    find some additional background information.
8
9    Table 35.46. sql_features Columns
10
11    Column Type
12
13    Description
14
15    feature_id character_data
16
17    Identifier string of the feature
18
19    feature_name character_data
20
21    Descriptive name of the feature
22
23    sub_feature_id character_data
24
25    Identifier string of the subfeature, or a zero-length string if not a
26    subfeature
27
28    sub_feature_name character_data
29
30    Descriptive name of the subfeature, or a zero-length string if not a
31    subfeature
32
33    is_supported yes_or_no
34
35    YES if the feature is fully supported by the current version of
36    PostgreSQL, NO if not
37
38    is_verified_by character_data
39
40    Always null, since the PostgreSQL development group does not perform
41    formal testing of feature conformance
42
43    comments character_data
44
45    Possibly a comment about the supported status of the feature