[Groonga-mysql-commit] mroonga/mroonga [master] Use UPPER_CASE for keyword

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Apr 8 11:35:54 JST 2013


Kouhei Sutou	2013-04-08 11:35:54 +0900 (Mon, 08 Apr 2013)

  New Revision: 08c95b791820fae903c79868c7b372d1e42a3ffd
  https://github.com/mroonga/mroonga/commit/08c95b791820fae903c79868c7b372d1e42a3ffd

  Message:
    Use UPPER_CASE for keyword

  Modified files:
    doc/source/install.rst

  Modified: doc/source/install.rst (+6 -6)
===================================================================
--- doc/source/install.rst    2013-04-08 11:35:30 +0900 (10c7cd2)
+++ doc/source/install.rst    2013-04-08 11:35:54 +0900 (bf6a164)
@@ -514,19 +514,19 @@ To get the record ID assigned by groonga in INSERT, install last_insert_grn_id f
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION last_insert_grn_id RETURNS INTEGER soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION last_insert_grn_id RETURNS INTEGER SONAME 'ha_mroonga.so';
 
 To enable snippet (keyword in context) UDF, install mroonga_snippet function.
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION mroonga_snippet RETURNS STRING soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION mroonga_snippet RETURNS STRING SONAME 'ha_mroonga.so';
 
 To enable invoking groonga query from mroonga, install mroonga_command function.
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION mroonga_command RETURNS STRING soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION mroonga_command RETURNS STRING SONAME 'ha_mroonga.so';
 
 
 Install from the source code with MariaDB
@@ -615,16 +615,16 @@ To get the record ID assigned by groonga in INSERT, install last_insert_grn_id f
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION last_insert_grn_id RETURNS INTEGER soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION last_insert_grn_id RETURNS INTEGER SONAME 'ha_mroonga.so';
 
 To enable snippet (keyword in context) UDF, install mroonga_snippet function.
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION mroonga_snippet RETURNS STRING soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION mroonga_snippet RETURNS STRING SONAME 'ha_mroonga.so';
 
 To enable invoking groonga query from mroonga, install mroonga_command function.
 
 Invoke CREATE FUNCTION like the following. ::
 
- mysql> CREATE FUNCTION mroonga_command RETURNS STRING soname 'ha_mroonga.so';
+ mysql> CREATE FUNCTION mroonga_command RETURNS STRING SONAME 'ha_mroonga.so';
-------------- next part --------------
HTML����������������������������...
Download 



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