mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Eliminate trivial whitespace inconsistency in docs sample code.
This commit is contained in:
@ -1002,13 +1002,13 @@ REFRESH MATERIALIZED VIEW sales_summary;
|
|||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
CREATE EXTENSION file_fdw;
|
CREATE EXTENSION file_fdw;
|
||||||
CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw ;
|
CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw;
|
||||||
CREATE FOREIGN TABLE words (word text NOT NULL)
|
CREATE FOREIGN TABLE words (word text NOT NULL)
|
||||||
SERVER local_file
|
SERVER local_file
|
||||||
OPTIONS (filename '/etc/dictionaries-common/words');
|
OPTIONS (filename '/etc/dictionaries-common/words');
|
||||||
CREATE MATERIALIZED VIEW wrd AS SELECT * FROM words;
|
CREATE MATERIALIZED VIEW wrd AS SELECT * FROM words;
|
||||||
CREATE UNIQUE INDEX wrd_word ON wrd (word);
|
CREATE UNIQUE INDEX wrd_word ON wrd (word);
|
||||||
CREATE EXTENSION pg_trgm ;
|
CREATE EXTENSION pg_trgm;
|
||||||
CREATE INDEX wrd_trgm ON wrd USING gist (word gist_trgm_ops);
|
CREATE INDEX wrd_trgm ON wrd USING gist (word gist_trgm_ops);
|
||||||
VACUUM ANALYZE wrd;
|
VACUUM ANALYZE wrd;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Reference in New Issue
Block a user