Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f897c47 commit 08af1a0Copy full SHA for 08af1a0
doc/src/sgml/rules.sgml
@@ -1002,13 +1002,13 @@ REFRESH MATERIALIZED VIEW sales_summary;
1002
1003
<programlisting>
1004
CREATE EXTENSION file_fdw;
1005
-CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw ;
+CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw;
1006
CREATE FOREIGN TABLE words (word text NOT NULL)
1007
SERVER local_file
1008
OPTIONS (filename '/etc/dictionaries-common/words');
1009
CREATE MATERIALIZED VIEW wrd AS SELECT * FROM words;
1010
CREATE UNIQUE INDEX wrd_word ON wrd (word);
1011
-CREATE EXTENSION pg_trgm ;
+CREATE EXTENSION pg_trgm;
1012
CREATE INDEX wrd_trgm ON wrd USING gist (word gist_trgm_ops);
1013
VACUUM ANALYZE wrd;
1014
</programlisting>
0 commit comments