mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
Eliminate trivial whitespace inconsistency in docs sample code.
This commit is contained in:
parent
f897c4744f
commit
08af1a0a2a
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user