File: infoschema-sql-features.html

package info (click to toggle)
pgadmin3 1.4.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 29,796 kB
  • ctags: 10,758
  • sloc: cpp: 55,356; sh: 6,164; ansic: 1,520; makefile: 576; sql: 482; xml: 100; perl: 18
file content (81 lines) | stat: -rw-r--r-- 3,363 bytes parent folder | download
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>31.28.sql_features</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="information-schema.html" title="Chapter31.The Information Schema">
<link rel="prev" href="infoschema-schemata.html" title="31.27.schemata">
<link rel="next" href="infoschema-sql-implementation-info.html" title="31.29.sql_implementation_info">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="infoschema-sql-features"></a>31.28.<code class="literal">sql_features</code></h2></div></div></div>
<p>   The table <code class="literal">sql_features</code> contains information
   about which formal features defined in the SQL standard are
   supported by <span class="productname">PostgreSQL</span>.  This is the
   same information that is presented in <a href="features.html" title="AppendixD.SQL Conformance">AppendixD, <i>SQL Conformance</i></a>.
   There you can also find some additional background information.
  </p>
<div class="table">
<a name="id700541"></a><p class="title"><b>Table31.26.<code class="literal">sql_features</code> Columns</b></p>
<div class="table-contents"><table summary="sql_features Columns" border="1">
<colgroup>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>Name</th>
<th>Data Type</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr>
<td><code class="literal">feature_id</code></td>
<td><code class="type">character_data</code></td>
<td>Identifier string of the feature</td>
</tr>
<tr>
<td><code class="literal">feature_name</code></td>
<td><code class="type">character_data</code></td>
<td>Descriptive name of the feature</td>
</tr>
<tr>
<td><code class="literal">sub_feature_id</code></td>
<td><code class="type">character_data</code></td>
<td>Identifier string of the subfeature, or a zero-length string if not a subfeature</td>
</tr>
<tr>
<td><code class="literal">sub_feature_name</code></td>
<td><code class="type">character_data</code></td>
<td>Descriptive name of the subfeature, or a zero-length string if not a subfeature</td>
</tr>
<tr>
<td><code class="literal">is_supported</code></td>
<td><code class="type">character_data</code></td>
<td>       <code class="literal">YES</code> if the feature is fully supported by the
       current version of <span class="productname">PostgreSQL</span>, <code class="literal">NO</code> if not
      </td>
</tr>
<tr>
<td><code class="literal">is_verified_by</code></td>
<td><code class="type">character_data</code></td>
<td>       Always null, since the <span class="productname">PostgreSQL</span> development group does not
       perform formal testing of feature conformance
      </td>
</tr>
<tr>
<td><code class="literal">comments</code></td>
<td><code class="type">character_data</code></td>
<td>Possibly a comment about the supported status of the feature</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>