[Groonga-commit] pgroonga/pgroonga.github.io at 6917d34 [master] Add missing comment marks

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Nov 30 01:07:49 JST 2016


Kouhei Sutou	2016-11-30 01:07:49 +0900 (Wed, 30 Nov 2016)

  New Revision: 6917d346eb4d2708af00c7241648b6f0e98e2e55
  https://github.com/pgroonga/pgroonga.github.io/commit/6917d346eb4d2708af00c7241648b6f0e98e2e55

  Message:
    Add missing comment marks

  Modified files:
    reference/functions/pgroonga-query-extract-keywords.md

  Modified: reference/functions/pgroonga-query-extract-keywords.md (+16 -16)
===================================================================
--- reference/functions/pgroonga-query-extract-keywords.md    2016-11-30 01:07:24 +0900 (4c4a855)
+++ reference/functions/pgroonga-query-extract-keywords.md    2016-11-30 01:07:49 +0900 (efd20dd)
@@ -32,40 +32,40 @@ You can get all terms as keywords for AND only case:
 
 ```sql
 SELECT pgroonga.query_extract_keywords('Groonga PostgreSQL');
- query_extract_keywords 
-------------------------
- {PostgreSQL,Groonga}
-(1 row)
+--  query_extract_keywords 
+-- ------------------------
+--  {PostgreSQL,Groonga}
+-- (1 row)
 ```
 
 You can get all terms as keywords for OR only case:
 
 ```sql
 SELECT pgroonga.query_extract_keywords('Groonga OR PostgreSQL');
- query_extract_keywords 
-------------------------
- {PostgreSQL,Groonga}
-(1 row)
+--  query_extract_keywords 
+-- ------------------------
+--  {PostgreSQL,Groonga}
+-- (1 row)
 ```
 
 You can use parentheses:
 
 ```sql
 SELECT pgroonga.query_extract_keywords('Groonga (MySQL OR PostgreSQL)');
-   query_extract_keywords   
-----------------------------
- {Groonga,PostgreSQL,MySQL}
-(1 row)
+--    query_extract_keywords   
+-- ----------------------------
+--  {Groonga,PostgreSQL,MySQL}
+-- (1 row)
 ```
 
 Term for NOT condition isn't keyword:
 
 ```sql
 SELECT pgroonga.query_extract_keywords('Groonga - MySQL PostgreSQL');
- query_extract_keywords 
-------------------------
- {PostgreSQL,Groonga}
-(1 row)
+--  query_extract_keywords 
+-- ------------------------
+--  {PostgreSQL,Groonga}
+-- (1 row)
 ```
 
 ## See also
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index