diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2015-05-15 15:14:22 -0400 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2015-05-15 15:14:22 -0400 |
commit | 9689290ff0c065f9bdc4e3a76e7931e84554224b (patch) | |
tree | 1ae9950114c8fbfab116d9860ce114c44d0131ca | |
parent | 8d3e0906df5496b853cc763f87b9ffd2ae27adbe (diff) | |
download | postgresql-9689290ff0c065f9bdc4e3a76e7931e84554224b.tar.gz postgresql-9689290ff0c065f9bdc4e3a76e7931e84554224b.zip |
TABLESAMPLE system_rows(limit)
Contrib module implementing a tablesample method
that allows you to limit the sample by a hard row
limit.
Petr Jelinek
Reviewed by Michael Paquier, Amit Kapila and
Simon Riggs
-rw-r--r-- | doc/src/sgml/contrib.sgml | 1 | ||||
-rw-r--r-- | doc/src/sgml/filelist.sgml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/contrib.sgml b/doc/src/sgml/contrib.sgml index 0a2bae8dad9..146278472aa 100644 --- a/doc/src/sgml/contrib.sgml +++ b/doc/src/sgml/contrib.sgml @@ -142,6 +142,7 @@ CREATE EXTENSION <replaceable>module_name</> FROM unpackaged; &tcn; &test-decoding; &tsearch2; + &tsm-system-rows; &unaccent; &uuid-ossp; &xml2; diff --git a/doc/src/sgml/filelist.sgml b/doc/src/sgml/filelist.sgml index 03fea3217e4..fb95311dbf5 100644 --- a/doc/src/sgml/filelist.sgml +++ b/doc/src/sgml/filelist.sgml @@ -147,6 +147,7 @@ <!ENTITY test-parser SYSTEM "test-parser.sgml"> <!ENTITY test-shm-mq SYSTEM "test-shm-mq.sgml"> <!ENTITY tsearch2 SYSTEM "tsearch2.sgml"> +<!ENTITY tsm-system-rows SYSTEM "tsm-system-rows.sgml"> <!ENTITY unaccent SYSTEM "unaccent.sgml"> <!ENTITY uuid-ossp SYSTEM "uuid-ossp.sgml"> <!ENTITY vacuumlo SYSTEM "vacuumlo.sgml"> |