gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

338 lines
25KB

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>F.31. pg_trgm</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="pgstattuple.html" title="F.30. pgstattuple" /><link rel="next" href="pgvisibility.html" title="F.32. pg_visibility" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">F.31. pg_trgm</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="pgstattuple.html" title="F.30. pgstattuple">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="contrib.html" title="Appendix F. Additional Supplied Modules">Up</a></td><th width="60%" align="center">Appendix F. Additional Supplied Modules</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 12.4 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="pgvisibility.html" title="F.32. pg_visibility">Next</a></td></tr></table><hr></hr></div><div class="sect1" id="PGTRGM"><div class="titlepage"><div><div><h2 class="title" style="clear: both">F.31. pg_trgm</h2></div></div></div><div class="toc"><dl class="toc"><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.4">F.31.1. Trigram (or Trigraph) Concepts</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.5">F.31.2. Functions and Operators</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.6">F.31.3. GUC Parameters</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.7">F.31.4. Index Support</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.8">F.31.5. Text Search Integration</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.9">F.31.6. References</a></span></dt><dt><span class="sect2"><a href="pgtrgm.html#id-1.11.7.40.10">F.31.7. Authors</a></span></dt></dl></div><a id="id-1.11.7.40.2" class="indexterm"></a><p>
  3. The <code class="filename">pg_trgm</code> module provides functions and operators
  4. for determining the similarity of
  5. alphanumeric text based on trigram matching, as
  6. well as index operator classes that support fast searching for similar
  7. strings.
  8. </p><div class="sect2" id="id-1.11.7.40.4"><div class="titlepage"><div><div><h3 class="title">F.31.1. Trigram (or Trigraph) Concepts</h3></div></div></div><p>
  9. A trigram is a group of three consecutive characters taken
  10. from a string. We can measure the similarity of two strings by
  11. counting the number of trigrams they share. This simple idea
  12. turns out to be very effective for measuring the similarity of
  13. words in many natural languages.
  14. </p><div class="note"><h3 class="title">Note</h3><p>
  15. <code class="filename">pg_trgm</code> ignores non-word characters
  16. (non-alphanumerics) when extracting trigrams from a string.
  17. Each word is considered to have two spaces
  18. prefixed and one space suffixed when determining the set
  19. of trigrams contained in the string.
  20. For example, the set of trigrams in the string
  21. <span class="quote">“<span class="quote"><code class="literal">cat</code></span>”</span> is
  22. <span class="quote">“<span class="quote"><code class="literal"> c</code></span>”</span>,
  23. <span class="quote">“<span class="quote"><code class="literal"> ca</code></span>”</span>,
  24. <span class="quote">“<span class="quote"><code class="literal">cat</code></span>”</span>, and
  25. <span class="quote">“<span class="quote"><code class="literal">at </code></span>”</span>.
  26. The set of trigrams in the string
  27. <span class="quote">“<span class="quote"><code class="literal">foo|bar</code></span>”</span> is
  28. <span class="quote">“<span class="quote"><code class="literal"> f</code></span>”</span>,
  29. <span class="quote">“<span class="quote"><code class="literal"> fo</code></span>”</span>,
  30. <span class="quote">“<span class="quote"><code class="literal">foo</code></span>”</span>,
  31. <span class="quote">“<span class="quote"><code class="literal">oo </code></span>”</span>,
  32. <span class="quote">“<span class="quote"><code class="literal"> b</code></span>”</span>,
  33. <span class="quote">“<span class="quote"><code class="literal"> ba</code></span>”</span>,
  34. <span class="quote">“<span class="quote"><code class="literal">bar</code></span>”</span>, and
  35. <span class="quote">“<span class="quote"><code class="literal">ar </code></span>”</span>.
  36. </p></div></div><div class="sect2" id="id-1.11.7.40.5"><div class="titlepage"><div><div><h3 class="title">F.31.2. Functions and Operators</h3></div></div></div><p>
  37. The functions provided by the <code class="filename">pg_trgm</code> module
  38. are shown in <a class="xref" href="pgtrgm.html#PGTRGM-FUNC-TABLE" title="Table F.24. pg_trgm Functions">Table F.24</a>, the operators
  39. in <a class="xref" href="pgtrgm.html#PGTRGM-OP-TABLE" title="Table F.25. pg_trgm Operators">Table F.25</a>.
  40. </p><div class="table" id="PGTRGM-FUNC-TABLE"><p class="title"><strong>Table F.24. <code class="filename">pg_trgm</code> Functions</strong></p><div class="table-contents"><table class="table" summary="pg_trgm Functions" border="1"><colgroup><col /><col /><col /></colgroup><thead><tr><th>Function</th><th>Returns</th><th>Description</th></tr></thead><tbody><tr><td><code class="function">similarity(text, text)</code><a id="id-1.11.7.40.5.3.2.2.1.1.2" class="indexterm"></a></td><td><code class="type">real</code></td><td>
  41. Returns a number that indicates how similar the two arguments are.
  42. The range of the result is zero (indicating that the two strings are
  43. completely dissimilar) to one (indicating that the two strings are
  44. identical).
  45. </td></tr><tr><td><code class="function">show_trgm(text)</code><a id="id-1.11.7.40.5.3.2.2.2.1.2" class="indexterm"></a></td><td><code class="type">text[]</code></td><td>
  46. Returns an array of all the trigrams in the given string.
  47. (In practice this is seldom useful except for debugging.)
  48. </td></tr><tr><td>
  49. <code class="function">word_similarity(text, text)</code>
  50. <a id="id-1.11.7.40.5.3.2.2.3.1.2" class="indexterm"></a>
  51. </td><td><code class="type">real</code></td><td>
  52. Returns a number that indicates the greatest similarity between
  53. the set of trigrams in the first string and any continuous extent
  54. of an ordered set of trigrams in the second string. For details, see
  55. the explanation below.
  56. </td></tr><tr><td>
  57. <code class="function">strict_word_similarity(text, text)</code>
  58. <a id="id-1.11.7.40.5.3.2.2.4.1.2" class="indexterm"></a>
  59. </td><td><code class="type">real</code></td><td>
  60. Same as <code class="function">word_similarity(text, text)</code>, but forces
  61. extent boundaries to match word boundaries. Since we don't have
  62. cross-word trigrams, this function actually returns greatest similarity
  63. between first string and any continuous extent of words of the second
  64. string.
  65. </td></tr><tr><td><code class="function">show_limit()</code><a id="id-1.11.7.40.5.3.2.2.5.1.2" class="indexterm"></a></td><td><code class="type">real</code></td><td>
  66. Returns the current similarity threshold used by the <code class="literal">%</code>
  67. operator. This sets the minimum similarity between
  68. two words for them to be considered similar enough to
  69. be misspellings of each other, for example
  70. (<span class="emphasis"><em>deprecated</em></span>).
  71. </td></tr><tr><td><code class="function">set_limit(real)</code><a id="id-1.11.7.40.5.3.2.2.6.1.2" class="indexterm"></a></td><td><code class="type">real</code></td><td>
  72. Sets the current similarity threshold that is used by the <code class="literal">%</code>
  73. operator. The threshold must be between 0 and 1 (default is 0.3).
  74. Returns the same value passed in (<span class="emphasis"><em>deprecated</em></span>).
  75. </td></tr></tbody></table></div></div><br class="table-break" /><p>
  76. Consider the following example:
  77. </p><pre class="programlisting">
  78. # SELECT word_similarity('word', 'two words');
  79. word_similarity
  80. -----------------
  81. 0.8
  82. (1 row)
  83. </pre><p>
  84. In the first string, the set of trigrams is
  85. <code class="literal">{" w"," wo","wor","ord","rd "}</code>.
  86. In the second string, the ordered set of trigrams is
  87. <code class="literal">{" t"," tw","two","wo "," w"," wo","wor","ord","rds","ds "}</code>.
  88. The most similar extent of an ordered set of trigrams in the second string
  89. is <code class="literal">{" w"," wo","wor","ord"}</code>, and the similarity is
  90. <code class="literal">0.8</code>.
  91. </p><p>
  92. This function returns a value that can be approximately understood as the
  93. greatest similarity between the first string and any substring of the second
  94. string. However, this function does not add padding to the boundaries of
  95. the extent. Thus, the number of additional characters present in the
  96. second string is not considered, except for the mismatched word boundaries.
  97. </p><p>
  98. At the same time, <code class="function">strict_word_similarity(text, text)</code>
  99. selects an extent of words in the second string. In the example above,
  100. <code class="function">strict_word_similarity(text, text)</code> would select the
  101. extent of a single word <code class="literal">'words'</code>, whose set of trigrams is
  102. <code class="literal">{" w"," wo","wor","ord","rds","ds "}</code>.
  103. </p><pre class="programlisting">
  104. # SELECT strict_word_similarity('word', 'two words'), similarity('word', 'words');
  105. strict_word_similarity | similarity
  106. ------------------------+------------
  107. 0.571429 | 0.571429
  108. (1 row)
  109. </pre><p>
  110. </p><p>
  111. Thus, the <code class="function">strict_word_similarity(text, text)</code> function
  112. is useful for finding the similarity to whole words, while
  113. <code class="function">word_similarity(text, text)</code> is more suitable for
  114. finding the similarity for parts of words.
  115. </p><div class="table" id="PGTRGM-OP-TABLE"><p class="title"><strong>Table F.25. <code class="filename">pg_trgm</code> Operators</strong></p><div class="table-contents"><table class="table" summary="pg_trgm Operators" border="1"><colgroup><col /><col /><col /></colgroup><thead><tr><th>Operator</th><th>Returns</th><th>Description</th></tr></thead><tbody><tr><td><code class="type">text</code> <code class="literal">%</code> <code class="type">text</code></td><td><code class="type">boolean</code></td><td>
  116. Returns <code class="literal">true</code> if its arguments have a similarity that is
  117. greater than the current similarity threshold set by
  118. <code class="varname">pg_trgm.similarity_threshold</code>.
  119. </td></tr><tr><td><code class="type">text</code> <code class="literal">&lt;%</code> <code class="type">text</code></td><td><code class="type">boolean</code></td><td>
  120. Returns <code class="literal">true</code> if the similarity between the trigram
  121. set in the first argument and a continuous extent of an ordered trigram
  122. set in the second argument is greater than the current word similarity
  123. threshold set by <code class="varname">pg_trgm.word_similarity_threshold</code>
  124. parameter.
  125. </td></tr><tr><td><code class="type">text</code> <code class="literal">%&gt;</code> <code class="type">text</code></td><td><code class="type">boolean</code></td><td>
  126. Commutator of the <code class="literal">&lt;%</code> operator.
  127. </td></tr><tr><td><code class="type">text</code> <code class="literal">&lt;&lt;%</code> <code class="type">text</code></td><td><code class="type">boolean</code></td><td>
  128. Returns <code class="literal">true</code> if its second argument has a continuous
  129. extent of an ordered trigram set that matches word boundaries,
  130. and its similarity to the trigram set of the first argument is greater
  131. than the current strict word similarity threshold set by the
  132. <code class="varname">pg_trgm.strict_word_similarity_threshold</code> parameter.
  133. </td></tr><tr><td><code class="type">text</code> <code class="literal">%&gt;&gt;</code> <code class="type">text</code></td><td><code class="type">boolean</code></td><td>
  134. Commutator of the <code class="literal">&lt;&lt;%</code> operator.
  135. </td></tr><tr><td><code class="type">text</code> <code class="literal">&lt;-&gt;</code> <code class="type">text</code></td><td><code class="type">real</code></td><td>
  136. Returns the <span class="quote">“<span class="quote">distance</span>”</span> between the arguments, that is
  137. one minus the <code class="function">similarity()</code> value.
  138. </td></tr><tr><td>
  139. <code class="type">text</code> <code class="literal">&lt;&lt;-&gt;</code> <code class="type">text</code>
  140. </td><td><code class="type">real</code></td><td>
  141. Returns the <span class="quote">“<span class="quote">distance</span>”</span> between the arguments, that is
  142. one minus the <code class="function">word_similarity()</code> value.
  143. </td></tr><tr><td>
  144. <code class="type">text</code> <code class="literal">&lt;-&gt;&gt;</code> <code class="type">text</code>
  145. </td><td><code class="type">real</code></td><td>
  146. Commutator of the <code class="literal">&lt;&lt;-&gt;</code> operator.
  147. </td></tr><tr><td>
  148. <code class="type">text</code> <code class="literal">&lt;&lt;&lt;-&gt;</code> <code class="type">text</code>
  149. </td><td><code class="type">real</code></td><td>
  150. Returns the <span class="quote">“<span class="quote">distance</span>”</span> between the arguments, that is
  151. one minus the <code class="function">strict_word_similarity()</code> value.
  152. </td></tr><tr><td>
  153. <code class="type">text</code> <code class="literal">&lt;-&gt;&gt;&gt;</code> <code class="type">text</code>
  154. </td><td><code class="type">real</code></td><td>
  155. Commutator of the <code class="literal">&lt;&lt;&lt;-&gt;</code> operator.
  156. </td></tr></tbody></table></div></div><br class="table-break" /></div><div class="sect2" id="id-1.11.7.40.6"><div class="titlepage"><div><div><h3 class="title">F.31.3. GUC Parameters</h3></div></div></div><div class="variablelist"><dl class="variablelist"><dt id="GUC-PGTRGM-SIMILARITY-THRESHOLD"><span class="term">
  157. <code class="varname">pg_trgm.similarity_threshold</code> (<code class="type">real</code>)
  158. <a id="id-1.11.7.40.6.2.1.1.3" class="indexterm"></a>
  159. </span></dt><dd><p>
  160. Sets the current similarity threshold that is used by the <code class="literal">%</code>
  161. operator. The threshold must be between 0 and 1 (default is 0.3).
  162. </p></dd><dt id="GUC-PGTRGM-WORD-SIMILARITY-THRESHOLD"><span class="term">
  163. <code class="varname">pg_trgm.word_similarity_threshold</code> (<code class="type">real</code>)
  164. <a id="id-1.11.7.40.6.2.2.1.3" class="indexterm"></a>
  165. </span></dt><dd><p>
  166. Sets the current word similarity threshold that is used by the
  167. <code class="literal">&lt;%</code> and <code class="literal">%&gt;</code> operators. The threshold
  168. must be between 0 and 1 (default is 0.6).
  169. </p></dd><dt id="GUC-PGTRGM-STRICT-WORD-SIMILARITY-THRESHOLD"><span class="term">
  170. <code class="varname">pg_trgm.strict_word_similarity_threshold</code> (<code class="type">real</code>)
  171. <a id="id-1.11.7.40.6.2.3.1.3" class="indexterm"></a>
  172. </span></dt><dd><p>
  173. Sets the current strict word similarity threshold that is used by the
  174. <code class="literal">&lt;&lt;%</code> and <code class="literal">%&gt;&gt;</code> operators. The threshold
  175. must be between 0 and 1 (default is 0.5).
  176. </p></dd></dl></div></div><div class="sect2" id="id-1.11.7.40.7"><div class="titlepage"><div><div><h3 class="title">F.31.4. Index Support</h3></div></div></div><p>
  177. The <code class="filename">pg_trgm</code> module provides GiST and GIN index
  178. operator classes that allow you to create an index over a text column for
  179. the purpose of very fast similarity searches. These index types support
  180. the above-described similarity operators, and additionally support
  181. trigram-based index searches for <code class="literal">LIKE</code>, <code class="literal">ILIKE</code>,
  182. <code class="literal">~</code> and <code class="literal">~*</code> queries. (These indexes do not
  183. support equality nor simple comparison operators, so you may need a
  184. regular B-tree index too.)
  185. </p><p>
  186. Example:
  187. </p><pre class="programlisting">
  188. CREATE TABLE test_trgm (t text);
  189. CREATE INDEX trgm_idx ON test_trgm USING GIST (t gist_trgm_ops);
  190. </pre><p>
  191. or
  192. </p><pre class="programlisting">
  193. CREATE INDEX trgm_idx ON test_trgm USING GIN (t gin_trgm_ops);
  194. </pre><p>
  195. </p><p>
  196. At this point, you will have an index on the <code class="structfield">t</code> column that
  197. you can use for similarity searching. A typical query is
  198. </p><pre class="programlisting">
  199. SELECT t, similarity(t, '<em class="replaceable"><code>word</code></em>') AS sml
  200. FROM test_trgm
  201. WHERE t % '<em class="replaceable"><code>word</code></em>'
  202. ORDER BY sml DESC, t;
  203. </pre><p>
  204. This will return all values in the text column that are sufficiently
  205. similar to <em class="replaceable"><code>word</code></em>, sorted from best match to worst. The
  206. index will be used to make this a fast operation even over very large data
  207. sets.
  208. </p><p>
  209. A variant of the above query is
  210. </p><pre class="programlisting">
  211. SELECT t, t &lt;-&gt; '<em class="replaceable"><code>word</code></em>' AS dist
  212. FROM test_trgm
  213. ORDER BY dist LIMIT 10;
  214. </pre><p>
  215. This can be implemented quite efficiently by GiST indexes, but not
  216. by GIN indexes. It will usually beat the first formulation when only
  217. a small number of the closest matches is wanted.
  218. </p><p>
  219. Also you can use an index on the <code class="structfield">t</code> column for word
  220. similarity or strict word similarity. Typical queries are:
  221. </p><pre class="programlisting">
  222. SELECT t, word_similarity('<em class="replaceable"><code>word</code></em>', t) AS sml
  223. FROM test_trgm
  224. WHERE '<em class="replaceable"><code>word</code></em>' &lt;% t
  225. ORDER BY sml DESC, t;
  226. </pre><p>
  227. and
  228. </p><pre class="programlisting">
  229. SELECT t, strict_word_similarity('<em class="replaceable"><code>word</code></em>', t) AS sml
  230. FROM test_trgm
  231. WHERE '<em class="replaceable"><code>word</code></em>' &lt;&lt;% t
  232. ORDER BY sml DESC, t;
  233. </pre><p>
  234. This will return all values in the text column for which there is a
  235. continuous extent in the corresponding ordered trigram set that is
  236. sufficiently similar to the trigram set of <em class="replaceable"><code>word</code></em>,
  237. sorted from best match to worst. The index will be used to make this
  238. a fast operation even over very large data sets.
  239. </p><p>
  240. Possible variants of the above queries are:
  241. </p><pre class="programlisting">
  242. SELECT t, '<em class="replaceable"><code>word</code></em>' &lt;&lt;-&gt; t AS dist
  243. FROM test_trgm
  244. ORDER BY dist LIMIT 10;
  245. </pre><p>
  246. and
  247. </p><pre class="programlisting">
  248. SELECT t, '<em class="replaceable"><code>word</code></em>' &lt;&lt;&lt;-&gt; t AS dist
  249. FROM test_trgm
  250. ORDER BY dist LIMIT 10;
  251. </pre><p>
  252. This can be implemented quite efficiently by GiST indexes, but not
  253. by GIN indexes.
  254. </p><p>
  255. Beginning in <span class="productname">PostgreSQL</span> 9.1, these index types also support
  256. index searches for <code class="literal">LIKE</code> and <code class="literal">ILIKE</code>, for example
  257. </p><pre class="programlisting">
  258. SELECT * FROM test_trgm WHERE t LIKE '%foo%bar';
  259. </pre><p>
  260. The index search works by extracting trigrams from the search string
  261. and then looking these up in the index. The more trigrams in the search
  262. string, the more effective the index search is. Unlike B-tree based
  263. searches, the search string need not be left-anchored.
  264. </p><p>
  265. Beginning in <span class="productname">PostgreSQL</span> 9.3, these index types also support
  266. index searches for regular-expression matches
  267. (<code class="literal">~</code> and <code class="literal">~*</code> operators), for example
  268. </p><pre class="programlisting">
  269. SELECT * FROM test_trgm WHERE t ~ '(foo|bar)';
  270. </pre><p>
  271. The index search works by extracting trigrams from the regular expression
  272. and then looking these up in the index. The more trigrams that can be
  273. extracted from the regular expression, the more effective the index search
  274. is. Unlike B-tree based searches, the search string need not be
  275. left-anchored.
  276. </p><p>
  277. For both <code class="literal">LIKE</code> and regular-expression searches, keep in mind
  278. that a pattern with no extractable trigrams will degenerate to a full-index
  279. scan.
  280. </p><p>
  281. The choice between GiST and GIN indexing depends on the relative
  282. performance characteristics of GiST and GIN, which are discussed elsewhere.
  283. </p></div><div class="sect2" id="id-1.11.7.40.8"><div class="titlepage"><div><div><h3 class="title">F.31.5. Text Search Integration</h3></div></div></div><p>
  284. Trigram matching is a very useful tool when used in conjunction
  285. with a full text index. In particular it can help to recognize
  286. misspelled input words that will not be matched directly by the
  287. full text search mechanism.
  288. </p><p>
  289. The first step is to generate an auxiliary table containing all
  290. the unique words in the documents:
  291. </p><pre class="programlisting">
  292. CREATE TABLE words AS SELECT word FROM
  293. ts_stat('SELECT to_tsvector(''simple'', bodytext) FROM documents');
  294. </pre><p>
  295. where <code class="structname">documents</code> is a table that has a text field
  296. <code class="structfield">bodytext</code> that we wish to search. The reason for using
  297. the <code class="literal">simple</code> configuration with the <code class="function">to_tsvector</code>
  298. function, instead of using a language-specific configuration,
  299. is that we want a list of the original (unstemmed) words.
  300. </p><p>
  301. Next, create a trigram index on the word column:
  302. </p><pre class="programlisting">
  303. CREATE INDEX words_idx ON words USING GIN (word gin_trgm_ops);
  304. </pre><p>
  305. Now, a <code class="command">SELECT</code> query similar to the previous example can
  306. be used to suggest spellings for misspelled words in user search terms.
  307. A useful extra test is to require that the selected words are also of
  308. similar length to the misspelled word.
  309. </p><div class="note"><h3 class="title">Note</h3><p>
  310. Since the <code class="structname">words</code> table has been generated as a separate,
  311. static table, it will need to be periodically regenerated so that
  312. it remains reasonably up-to-date with the document collection.
  313. Keeping it exactly current is usually unnecessary.
  314. </p></div></div><div class="sect2" id="id-1.11.7.40.9"><div class="titlepage"><div><div><h3 class="title">F.31.6. References</h3></div></div></div><p>
  315. GiST Development Site
  316. <a class="ulink" href="http://www.sai.msu.su/~megera/postgres/gist/" target="_top">http://www.sai.msu.su/~megera/postgres/gist/</a>
  317. </p><p>
  318. Tsearch2 Development Site
  319. <a class="ulink" href="http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/" target="_top">http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/</a>
  320. </p></div><div class="sect2" id="id-1.11.7.40.10"><div class="titlepage"><div><div><h3 class="title">F.31.7. Authors</h3></div></div></div><p>
  321. Oleg Bartunov <code class="email">&lt;<a class="email" href="mailto:oleg@sai.msu.su">oleg@sai.msu.su</a>&gt;</code>, Moscow, Moscow University, Russia
  322. </p><p>
  323. Teodor Sigaev <code class="email">&lt;<a class="email" href="mailto:teodor@sigaev.ru">teodor@sigaev.ru</a>&gt;</code>, Moscow, Delta-Soft Ltd.,Russia
  324. </p><p>
  325. Alexander Korotkov <code class="email">&lt;<a class="email" href="mailto:a.korotkov@postgrespro.ru">a.korotkov@postgrespro.ru</a>&gt;</code>, Moscow, Postgres Professional, Russia
  326. </p><p>
  327. Documentation: Christopher Kings-Lynne
  328. </p><p>
  329. This module is sponsored by Delta-Soft Ltd., Moscow, Russia.
  330. </p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="pgstattuple.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="contrib.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="pgvisibility.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">F.30. pgstattuple </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> F.32. pg_visibility</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1