Navigation Menu

Skip to content

Commit

Permalink
doc: add mroonga_vector_column_delimiter variable
Browse files Browse the repository at this point in the history
  • Loading branch information
naoa committed Aug 6, 2014
1 parent c538a7f commit f53b9d0
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doc/locale/en/LC_MESSAGES/reference.po
Expand Up @@ -1700,3 +1700,13 @@ msgstr "It is the end text of wordN."

msgid "It returns snippet string."
msgstr "It returns snippet string."

msgid ""
"The delimiter when outputting a vector column. The default value is a white space."
msgstr ""
"The delimiter when outputting a vector column. The default value is a white space."

msgid ""
"Here is an example SQL to change the delimiter to a semicolon from a white space::"
msgstr ""
"Here is an example SQL to change the delimiter to a semicolon from a white space::"
10 changes: 10 additions & 0 deletions doc/locale/ja/LC_MESSAGES/reference.po
Expand Up @@ -1540,3 +1540,13 @@ msgstr "N番目の単語の終了テキストを指定します。"

msgid "It returns snippet string."
msgstr "スニペット文字列を返します。"

msgid ""
"The delimiter when outputting a vector column. The default value is a white space."
msgstr ""
"ベクターカラムを出力する際の区切り文字。デフォルト値は空白です。"

msgid ""
"Here is an example SQL to change the delimiter to a semicolon from a white space::"
msgstr ""
"区切り文字を空白からセミコロンに変更するSQL例です::"
27 changes: 27 additions & 0 deletions doc/source/reference/server_variables.rst
Expand Up @@ -300,3 +300,30 @@ value.
SELECT * FROM diaries WHERE MATCH (tags) AGAINST ("gr" IN BOOLEAN MODE);
-- id title tags
-- 1 Hello groonga! groonga install
mroonga_vector_column_delimiter
-------------------------------

The delimiter when outputting a vector column. The default value is a white space.

Here is an example SQL to change the delimiter to a semicolon from a white space::


mysql> SHOW VARIABLES LIKE 'mroonga_vector_column_delimiter';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| mroonga_vector_column_delimiter | |
+---------------------------------+-------+
1 row in set (0.00 sec)


mysql> SET GLOBAL mroonga_vector_column_delimiter = ';';
Query OK, 0 rows affected (0.00 sec)

mysql> SHOW GLOBAL VARIABLES LIKE 'mroonga_vector_column_delimiter';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| mroonga_vector_column_delimiter | ; |
+---------------------------------+-------+

0 comments on commit f53b9d0

Please sign in to comment.