From null+ranguba at clear-code.com Tue May 1 00:04:34 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:04:34 +0900 Subject: [groonga-commit:4401] ranguba/rroonga [master] test: use Groonga::Schema Message-ID: <20120501000446.E81D49A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:04:34 +0900 (Tue, 01 May 2012) New Revision: 9b463b43acda1ca330fb9bf6f0b4d95170d7a4b6 Log: test: use Groonga::Schema Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+36 -18) =================================================================== --- test/test-expression-builder.rb 2012-04-29 17:27:01 +0900 (3bb134c) +++ test/test-expression-builder.rb 2012-05-01 09:04:34 +0900 (21e0447) @@ -21,29 +21,47 @@ class ExpressionBuilderTest < Test::Unit::TestCase setup :setup_data def setup_tables - @pets = Groonga::Hash.create(:name => "Pets", :key_type => "ShortText") - @pets.define_column("name", "ShortText") + Groonga::Schema.define do |schema| + schema.create_table("Pets", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + + schema.create_table("Sections", + :type => :patricia_trie, + :key_type => "ShortText") do |table| + end - @sections = Groonga::PatriciaTrie.create(:name => "Sections", - :key_type => "ShortText") + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + table.uint32("hp") + table.reference("pet", "Pets") + table.reference("section", "Sections") + end - @users = Groonga::Hash.create(:name => "Users", :key_type => "ShortText") - @name = @users.define_column("name", "ShortText") - @hp = @users.define_column("hp", "UInt32") - @user_pet = @users.define_column("pet", @pets) - @user_section = @users.define_column("section", @sections) + schema.create_table("Terms", + :type => :patricia_trie, + :default_tokenizer => "TokenBigram", + :key_type => "ShortText") do |table| + table.index("Users.name") + end - @terms = Groonga::PatriciaTrie.create(:name => "Terms", - :default_tokenizer => "TokenBigram", - :key_type => "ShortText") - @terms.define_index_column("user_name", @users, :source => @name) + schema.create_table("Bookmarks") do |table| + table.reference("user", "Users") + table.short_text("uri") + end - @bookmarks = Groonga::Array.create(:name => "Bookmarks") - @bookmarks.define_column("user", @users) - @bookmarks.define_column("uri", "ShortText") + schema.change_table("Sections") do |table| + table.index("Users.section") + end + end - @sections.define_index_column("user_section", @users, - :source => @user_section) + @pets = Groonga["Pets"] + @users = Groonga["Users"] + @bookmarks = Groonga["Bookmarks"] end def setup_data From null+ranguba at clear-code.com Tue May 1 00:41:02 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:41:02 +0900 Subject: [groonga-commit:4402] ranguba/rroonga [master] test: extract tests for == Message-ID: <20120501004115.B3FE69A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:41:02 +0900 (Tue, 01 May 2012) New Revision: cee73a2914b5038cf031e2f9196ce35e0a31665a Log: test: extract tests for == Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+48 -13) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:04:34 +0900 (21e0447) +++ test/test-expression-builder.rb 2012-05-01 09:41:02 +0900 (6c3b089) @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2011 Kouhei Sutou +# Copyright (C) 2009-2012 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -42,13 +42,6 @@ class ExpressionBuilderTest < Test::Unit::TestCase table.reference("section", "Sections") end - schema.create_table("Terms", - :type => :patricia_trie, - :default_tokenizer => "TokenBigram", - :key_type => "ShortText") do |table| - table.index("Users.name") - end - schema.create_table("Bookmarks") do |table| table.reference("user", "Users") table.short_text("uri") @@ -59,11 +52,24 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + define_users_name_index + @pets = Groonga["Pets"] @users = Groonga["Users"] @bookmarks = Groonga["Bookmarks"] end + def define_users_name_index + Groonga::Schema.define do |schema| + schema.create_table("Terms", + :type => :patricia_trie, + :default_tokenizer => "TokenBigram", + :key_type => "ShortText") do |table| + table.index("Users.name") + end + end + end + def setup_data @morita = @users.add("morita", :name => "mori daijiro", @@ -84,12 +90,41 @@ class ExpressionBuilderTest < Test::Unit::TestCase :uri => "http://dic.nicovideo.jp/") end - def test_equal - result = @users.select do |record| - record["name"] == "mori daijiro" + class EqualTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + end + + @users = Groonga["Users"] + end + + def setup_data + @users.add("morita", :name => "mori daijiro") + @users.add("gunyara-kun", :name => "Tasuku SUENAGA") + @users.add("yu", :name => "Yutaro Shimamura") + end + + def test_without_index + result = @users.select do |record| + record["name"] == "mori daijiro" + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) + end + + def test_with_index + define_users_name_index + result = @users.select do |record| + record["name"] == "mori daijiro" + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) end - assert_equal(["morita"], - result.collect {|record| record.key.key}) end def test_not_equal From null+ranguba at clear-code.com Tue May 1 00:42:47 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:42:47 +0900 Subject: [groonga-commit:4403] ranguba/rroonga [master] test: fix indent Message-ID: <20120501004303.5826E9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:42:47 +0900 (Tue, 01 May 2012) New Revision: 7974fa5b69add5b3b01f6af9c42bf51d9c2dd664 Log: test: fix indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+1 -1) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:41:02 +0900 (6c3b089) +++ test/test-expression-builder.rb 2012-05-01 09:42:47 +0900 (379ced0) @@ -104,7 +104,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end def setup_data - @users.add("morita", :name => "mori daijiro") + @users.add("morita", :name => "mori daijiro") @users.add("gunyara-kun", :name => "Tasuku SUENAGA") @users.add("yu", :name => "Yutaro Shimamura") end From null+ranguba at clear-code.com Tue May 1 00:45:46 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:45:46 +0900 Subject: [groonga-commit:4404] ranguba/rroonga [master] test: extract tests for != Message-ID: <20120501004559.937BE9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:45:46 +0900 (Tue, 01 May 2012) New Revision: 92ab05e85bd68c60134ad5fa1a8e70c9ef52c861 Log: test: extract tests for != Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+25 -7) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:42:47 +0900 (379ced0) +++ test/test-expression-builder.rb 2012-05-01 09:45:46 +0900 (e586479) @@ -90,7 +90,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase :uri => "http://dic.nicovideo.jp/") end - class EqualTest < self + module UserNameFixture def setup_tables Groonga::Schema.define do |schema| schema.create_table("Users", @@ -108,6 +108,10 @@ class ExpressionBuilderTest < Test::Unit::TestCase @users.add("gunyara-kun", :name => "Tasuku SUENAGA") @users.add("yu", :name => "Yutaro Shimamura") end + end + + class EqualTest < self + include UserNameFixture def test_without_index result = @users.select do |record| @@ -127,13 +131,27 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - def test_not_equal - only_ruby19 - result = @users.select do |record| - record["name"] != "mori daijiro" + class NotEqualTest < self + include UserNameFixture + + setup :only_ruby19 + + def test_without_index + result = @users.select do |record| + record["name"] != "mori daijiro" + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) + end + + def test_with_index + define_users_name_index + result = @users.select do |record| + record["name"] != "mori daijiro" + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["gunyara-kun", "yu"], - result.collect {|record| record.key.key}) end def test_less From null+ranguba at clear-code.com Tue May 1 00:52:43 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:52:43 +0900 Subject: [groonga-commit:4405] ranguba/rroonga [master] test: indent Message-ID: <20120501005252.2C9BD9A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:52:43 +0900 (Tue, 01 May 2012) New Revision: 16dec6965d10cc67e9129a144b22a165ad746da7 Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+29 -29) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:52:28 +0900 (3cfbe23) +++ test/test-expression-builder.rb 2012-05-01 09:52:43 +0900 (1f12674) @@ -109,46 +109,46 @@ class ExpressionBuilderTest < Test::Unit::TestCase @users.add("yu", :name => "Yutaro Shimamura") end - class EqualTest < self - def test_equal_without_index - result = @users.select do |record| - record["name"] == "mori daijiro" + class EqualTest < self + def test_equal_without_index + result = @users.select do |record| + record["name"] == "mori daijiro" + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) end - assert_equal(["morita"], - result.collect {|record| record.key.key}) - end - def test_equal_with_index - define_users_name_index - result = @users.select do |record| - record["name"] == "mori daijiro" + def test_equal_with_index + define_users_name_index + result = @users.select do |record| + record["name"] == "mori daijiro" + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) end - assert_equal(["morita"], - result.collect {|record| record.key.key}) end - end - class NotEqualTest < self - setup :only_ruby19 + class NotEqualTest < self + setup :only_ruby19 - def test_without_index - result = @users.select do |record| - record["name"] != "mori daijiro" + def test_without_index + result = @users.select do |record| + record["name"] != "mori daijiro" + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["gunyara-kun", "yu"], - result.collect {|record| record.key.key}) - end - def test_with_index - define_users_name_index - result = @users.select do |record| - record["name"] != "mori daijiro" + def test_with_index + define_users_name_index + result = @users.select do |record| + record["name"] != "mori daijiro" + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["gunyara-kun", "yu"], - result.collect {|record| record.key.key}) end end - end def test_less result = @users.select do |record| From null+ranguba at clear-code.com Tue May 1 00:52:28 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 09:52:28 +0900 Subject: [groonga-commit:4406] ranguba/rroonga [master] test: create base equality test class instead of fixture module Message-ID: <20120501005240.51A009A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 09:52:28 +0900 (Tue, 01 May 2012) New Revision: 2c3d642d20ae621d8ce7069f43d8f038b320c79f Log: test: create base equality test class instead of fixture module Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+4 -8) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:45:46 +0900 (e586479) +++ test/test-expression-builder.rb 2012-05-01 09:52:28 +0900 (3cfbe23) @@ -90,7 +90,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase :uri => "http://dic.nicovideo.jp/") end - module UserNameFixture + class EqualityTest < self def setup_tables Groonga::Schema.define do |schema| schema.create_table("Users", @@ -108,12 +108,9 @@ class ExpressionBuilderTest < Test::Unit::TestCase @users.add("gunyara-kun", :name => "Tasuku SUENAGA") @users.add("yu", :name => "Yutaro Shimamura") end - end class EqualTest < self - include UserNameFixture - - def test_without_index + def test_equal_without_index result = @users.select do |record| record["name"] == "mori daijiro" end @@ -121,7 +118,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end - def test_with_index + def test_equal_with_index define_users_name_index result = @users.select do |record| record["name"] == "mori daijiro" @@ -132,8 +129,6 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class NotEqualTest < self - include UserNameFixture - setup :only_ruby19 def test_without_index @@ -153,6 +148,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end end + end def test_less result = @users.select do |record| From null+ranguba at clear-code.com Tue May 1 01:14:50 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 10:14:50 +0900 Subject: [groonga-commit:4407] ranguba/rroonga [master] test: categorize test for <=, <, > and => Message-ID: <20120501011500.5663B9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 10:14:50 +0900 (Tue, 01 May 2012) New Revision: 4e93e6c2f2de0b1252034f07c3d7bfcc2f10ddc0 Log: test: categorize test for <=, <, > and => Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 09:52:43 +0900 (1f12674) +++ test/test-expression-builder.rb 2012-05-01 10:14:50 +0900 (b9bad95) @@ -150,6 +150,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class RelationalTest < self def test_less result = @users.select do |record| record["hp"] < 150 @@ -179,6 +180,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["gunyara-kun", "yu"], result.collect {|record| record.key.key}) end + end def test_and result = @users.select do |record| From null+ranguba at clear-code.com Tue May 1 01:15:56 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 10:15:56 +0900 Subject: [groonga-commit:4408] ranguba/rroonga [master] test: indent Message-ID: <20120501011606.C73D79A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 10:15:56 +0900 (Tue, 01 May 2012) New Revision: 61b2f5a6a100437da5d864f6e45faf55ecbaae0a Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+22 -22) =================================================================== --- test/test-expression-builder.rb 2012-05-01 10:14:50 +0900 (b9bad95) +++ test/test-expression-builder.rb 2012-05-01 10:15:56 +0900 (500212e) @@ -151,35 +151,35 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class RelationalTest < self - def test_less - result = @users.select do |record| - record["hp"] < 150 + def test_less + result = @users.select do |record| + record["hp"] < 150 + end + assert_equal(["morita"], result.collect {|record| record.key.key}) end - assert_equal(["morita"], result.collect {|record| record.key.key}) - end - def test_less_equal - result = @users.select do |record| - record["hp"] <= 150 + def test_less_equal + result = @users.select do |record| + record["hp"] <= 150 + end + assert_equal(["morita", "gunyara-kun"], + result.collect {|record| record.key.key}) end - assert_equal(["morita", "gunyara-kun"], - result.collect {|record| record.key.key}) - end - def test_greater - result = @users.select do |record| - record["hp"] > 150 + def test_greater + result = @users.select do |record| + record["hp"] > 150 + end + assert_equal(["yu"], result.collect {|record| record.key.key}) end - assert_equal(["yu"], result.collect {|record| record.key.key}) - end - def test_greater_equal - result = @users.select do |record| - record["hp"] >= 150 + def test_greater_equal + result = @users.select do |record| + record["hp"] >= 150 + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["gunyara-kun", "yu"], - result.collect {|record| record.key.key}) - end end def test_and From null+ranguba at clear-code.com Tue May 1 01:22:06 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 10:22:06 +0900 Subject: [groonga-commit:4409] ranguba/rroonga [master] test: use noun for test class name Message-ID: <20120501012909.82AD49A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 10:22:06 +0900 (Tue, 01 May 2012) New Revision: e8b54761f4c2880448d00d64edbe23159b480f2f Log: test: use noun for test class name Relational -> Relation Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+1 -1) =================================================================== --- test/test-expression-builder.rb 2012-05-01 10:15:56 +0900 (500212e) +++ test/test-expression-builder.rb 2012-05-01 10:22:06 +0900 (6a48fd3) @@ -150,7 +150,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - class RelationalTest < self + class RelationTest < self def test_less result = @users.select do |record| record["hp"] < 150 From null+ranguba at clear-code.com Tue May 1 01:28:59 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 10:28:59 +0900 Subject: [groonga-commit:4410] ranguba/rroonga [master] test: use minimum data Message-ID: <20120501012909.94A8D9A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 10:28:59 +0900 (Tue, 01 May 2012) New Revision: 1657947e3c3cd107a0f8d2921ecc9fab4b078a53 Log: test: use minimum data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+18 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 10:22:06 +0900 (6a48fd3) +++ test/test-expression-builder.rb 2012-05-01 10:28:59 +0900 (03b8f39) @@ -151,6 +151,24 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class RelationTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.uint32("hp") + end + end + + @users = Groonga["Users"] + end + + def setup_data + @users.add("morita", :hp => 100) + @users.add("gunyara-kun", :hp => 150) + @users.add("yu", :hp => 200) + end + def test_less result = @users.select do |record| record["hp"] < 150 From null+ranguba at clear-code.com Tue May 1 02:09:59 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:09:59 +0900 Subject: [groonga-commit:4411] ranguba/rroonga [master] test: categorize tests for logical operators Message-ID: <20120501021011.C9A2B9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:09:59 +0900 (Tue, 01 May 2012) New Revision: 658f16ec64189b445cc295099b7a477ff52274dc Log: test: categorize tests for logical operators Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 10:28:59 +0900 (03b8f39) +++ test/test-expression-builder.rb 2012-05-01 11:09:59 +0900 (fe80ca2) @@ -200,6 +200,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class LogicalTest < self def test_and result = @users.select do |record| (record["hp"] > 100) & (record["hp"] <= 200) @@ -207,6 +208,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["gunyara-kun", "yu"], result.collect {|record| record.key.key}) end + end def test_match result = @users.select do |record| From null+ranguba at clear-code.com Tue May 1 02:10:10 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:10:10 +0900 Subject: [groonga-commit:4412] ranguba/rroonga [master] test: indent Message-ID: <20120501021021.1CE3B9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:10:10 +0900 (Tue, 01 May 2012) New Revision: c9c203d743c07cc2efdf666765bae1c121e100a8 Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+6 -6) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:09:59 +0900 (fe80ca2) +++ test/test-expression-builder.rb 2012-05-01 11:10:10 +0900 (27e6e0b) @@ -201,13 +201,13 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class LogicalTest < self - def test_and - result = @users.select do |record| - (record["hp"] > 100) & (record["hp"] <= 200) + def test_and + result = @users.select do |record| + (record["hp"] > 100) & (record["hp"] <= 200) + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["gunyara-kun", "yu"], - result.collect {|record| record.key.key}) - end end def test_match From null+ranguba at clear-code.com Tue May 1 02:25:38 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:25:38 +0900 Subject: [groonga-commit:4413] ranguba/rroonga [master] test: add a test for or Message-ID: <20120501022559.23B929A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:25:38 +0900 (Tue, 01 May 2012) New Revision: c5215490a90ec8ccd2dc0fbd614cca4060faad64 Log: test: add a test for or Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+8 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:10:35 +0900 (709e559) +++ test/test-expression-builder.rb 2012-05-01 11:25:38 +0900 (dce24a0) @@ -226,6 +226,14 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["gunyara-kun", "yu"], result.collect {|record| record.key.key}) end + + def test_or + result = @users.select do |record| + (record["hp"] == 150) | (record["hp"] > 150) + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) + end end def test_match From null+ranguba at clear-code.com Tue May 1 02:10:35 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:10:35 +0900 Subject: [groonga-commit:4414] ranguba/rroonga [master] test: use minimal data Message-ID: <20120501022559.134769A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:10:35 +0900 (Tue, 01 May 2012) New Revision: 25b10fa47ae895d02541433f099ee1f0192b18b7 Log: test: use minimal data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+18 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:10:10 +0900 (27e6e0b) +++ test/test-expression-builder.rb 2012-05-01 11:10:35 +0900 (709e559) @@ -201,6 +201,24 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class LogicalTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.uint32("hp") + end + end + + @users = Groonga["Users"] + end + + def setup_data + @users.add("morita", :hp => 100) + @users.add("gunyara-kun", :hp => 150) + @users.add("yu", :hp => 200) + end + def test_and result = @users.select do |record| (record["hp"] > 100) & (record["hp"] <= 200) From null+ranguba at clear-code.com Tue May 1 02:33:10 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:33:10 +0900 Subject: [groonga-commit:4415] ranguba/rroonga [master] test: indent Message-ID: <20120501023320.314469A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:33:10 +0900 (Tue, 01 May 2012) New Revision: 3fb13164888fd339dd76b39b4f7beffcd5c2c43b Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+24 -22) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:25:38 +0900 (dce24a0) +++ test/test-expression-builder.rb 2012-05-01 11:33:10 +0900 (d2024a3) @@ -236,34 +236,36 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - def test_match - result = @users.select do |record| - record["name"] =~ "ro" + class FullTextSearchTest < self + def test_match + result = @users.select do |record| + record["name"] =~ "ro" + end + assert_equal(["morita", "yu"], + result.collect {|record| record.key.key}) end - assert_equal(["morita", "yu"], - result.collect {|record| record.key.key}) - end - def test_prefix_saerch - result = @users.select do |record| - record.section.prefix_search("search") + def test_prefix_saerch + result = @users.select do |record| + record.section.prefix_search("search") + end + assert_equal(["morita", "yu"].sort, + result.collect {|record| record.key.key}.sort) end - assert_equal(["morita", "yu"].sort, - result.collect {|record| record.key.key}.sort) - end - def test_suffix_search - result = @users.select do |record| - record.name.suffix_search("jiro") + def test_suffix_search + result = @users.select do |record| + record.name.suffix_search("jiro") + end + assert_equal(["morita"].sort, + result.collect {|record| record.key.key}.sort) end - assert_equal(["morita"].sort, - result.collect {|record| record.key.key}.sort) - end - def test_query_string - result = @users.select("name:@ro") - assert_equal(["morita", "yu"], - result.collect {|record| record.key.key}) + def test_query_string + result = @users.select("name:@ro") + assert_equal(["morita", "yu"], + result.collect {|record| record.key.key}) + end end def test_record From null+ranguba at clear-code.com Tue May 1 02:38:08 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 11:38:08 +0900 Subject: [groonga-commit:4416] ranguba/rroonga [master] test: move prefix and suffix search tests to Xfix tests Message-ID: <20120501023820.9AE0B9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 11:38:08 +0900 (Tue, 01 May 2012) New Revision: e1fa93b8825ba73928ca2fa6bcfd4a1925ac0d23 Log: test: move prefix and suffix search tests to Xfix tests Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+8 -6) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:33:10 +0900 (d2024a3) +++ test/test-expression-builder.rb 2012-05-01 11:38:08 +0900 (7a41c72) @@ -245,6 +245,14 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end + def test_query_string + result = @users.select("name:@ro") + assert_equal(["morita", "yu"], + result.collect {|record| record.key.key}) + end + end + + class XfixSearchTest < self def test_prefix_saerch result = @users.select do |record| record.section.prefix_search("search") @@ -260,12 +268,6 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["morita"].sort, result.collect {|record| record.key.key}.sort) end - - def test_query_string - result = @users.select("name:@ro") - assert_equal(["morita", "yu"], - result.collect {|record| record.key.key}) - end end def test_record From null+ranguba at clear-code.com Tue May 1 04:50:03 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 13:50:03 +0900 Subject: [groonga-commit:4417] ranguba/rroonga [master] test: use minimum data Message-ID: <20120501045012.D2D109A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 13:50:03 +0900 (Tue, 01 May 2012) New Revision: d9154782c51b7f026a055d70cdbe1a2c0011c324 Log: test: use minimum data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+36 -6) =================================================================== --- test/test-expression-builder.rb 2012-05-01 11:38:08 +0900 (7a41c72) +++ test/test-expression-builder.rb 2012-05-01 13:50:03 +0900 (bf37694) @@ -253,19 +253,49 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class XfixSearchTest < self + def setup_tables + end + + def setup_data + end + def test_prefix_saerch - result = @users.select do |record| - record.section.prefix_search("search") + Groonga::Schema.define do |schema| + schema.create_table("Sections", + :type => :patricia_trie, + :key_type => "ShortText") do |table| + end end - assert_equal(["morita", "yu"].sort, + + sections = Groonga["Sections"] + sections.add("search/core") + sections.add("suggest/all") + sections.add("search/all") + result = sections.select do |record| + record.key.prefix_search("search") + end + assert_equal(["search/all", "search/core"].sort, result.collect {|record| record.key.key}.sort) end def test_suffix_search - result = @users.select do |record| - record.name.suffix_search("jiro") + Groonga::Schema.define do |schema| + schema.create_table("Sections", + :type => :patricia_trie, + :key_with_sis => true, + :key_type => "ShortText") do |table| + end + end + + sections = Groonga["Sections"] + sections.add("search/core") + sections.add("suggest/all") + sections.add("search/all") + + result = sections.select do |record| + record.key.suffix_search("all") end - assert_equal(["morita"].sort, + assert_equal(["suggest/all", "search/all"].sort, result.collect {|record| record.key.key}.sort) end end From null+ranguba at clear-code.com Tue May 1 04:54:59 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 13:54:59 +0900 Subject: [groonga-commit:4418] ranguba/rroonga [master] test: use minimum data Message-ID: <20120501050227.603099A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 13:54:59 +0900 (Tue, 01 May 2012) New Revision: 8ab9d35acdcfb2419cdc6e9b042beea6c95dee4e Log: test: use minimum data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+25 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 13:50:03 +0900 (bf37694) +++ test/test-expression-builder.rb 2012-05-01 13:54:59 +0900 (d36eb61) @@ -237,6 +237,31 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class FullTextSearchTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + + schema.create_table("Terms", + :type => :patricia_trie, + :default_tokenizer => "TokenBigram", + :key_type => "ShortText") do |table| + table.index("Users.name") + end + end + + @users = Groonga["Users"] + end + + def setup_data + @users.add("morita", :name => "mori daijiro") + @users.add("gunyara-kun", :name => "Tasuku SUENAGA") + @users.add("yu", :name => "Yutaro Shimamura") + end + def test_match result = @users.select do |record| record["name"] =~ "ro" From null+ranguba at clear-code.com Tue May 1 05:02:16 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:02:16 +0900 Subject: [groonga-commit:4419] ranguba/rroonga [master] test: move and by array test to logical category Message-ID: <20120501050227.7716A9A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:02:16 +0900 (Tue, 01 May 2012) New Revision: 411c1eeb00b24935073f7bee8c4faebdd86ba36c Log: test: move and by array test to logical category Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+11 -11) =================================================================== --- test/test-expression-builder.rb 2012-05-01 13:54:59 +0900 (d36eb61) +++ test/test-expression-builder.rb 2012-05-01 14:02:16 +0900 (a912941) @@ -227,6 +227,17 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end + def test_and_array + result = @users.select do |record| + conditions = [] + conditions << (record.hp > 100) + conditions << (record.hp <= 200) + conditions + end + assert_equal(["gunyara-kun", "yu"], + result.collect {|record| record.key.key}) + end + def test_or result = @users.select do |record| (record["hp"] == 150) | (record["hp"] > 150) @@ -429,15 +440,4 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["yu"], result.collect {|record| record["_key"]}) end - - def test_array_result - result = @users.select do |record| - conditions = [] - conditions << (record.hp > 100) - conditions << (record.hp < 200) - conditions - end - assert_equal(["gunyara-kun"], - result.collect {|record| record.key.key}) - end end From null+ranguba at clear-code.com Tue May 1 05:03:17 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:03:17 +0900 Subject: [groonga-commit:4420] ranguba/rroonga [master] test: add pseudo columns category Message-ID: <20120501050341.9EFD09A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:03:17 +0900 (Tue, 01 May 2012) New Revision: babb2543a392cb22861ef2ab527f23b6fb6afc3c Log: test: add pseudo columns category Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:02:16 +0900 (a912941) +++ test/test-expression-builder.rb 2012-05-01 14:03:17 +0900 (669bfcb) @@ -403,6 +403,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class PseudoColumnTest < self def test_id result = @users.select do |record| record.id == 1 @@ -440,4 +441,5 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["yu"], result.collect {|record| record["_key"]}) end + end end From null+ranguba at clear-code.com Tue May 1 05:04:09 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:04:09 +0900 Subject: [groonga-commit:4421] ranguba/rroonga [master] test: indent Message-ID: <20120501050417.791749A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:04:09 +0900 (Tue, 01 May 2012) New Revision: f37a8b2a2eba56a9282aabbc14dab137e49c502b Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+30 -30) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:03:17 +0900 (669bfcb) +++ test/test-expression-builder.rb 2012-05-01 14:04:09 +0900 (a7cd555) @@ -404,42 +404,42 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class PseudoColumnTest < self - def test_id - result = @users.select do |record| - record.id == 1 + def test_id + result = @users.select do |record| + record.id == 1 + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) end - assert_equal(["morita"], - result.collect {|record| record.key.key}) - end - def test_key - result = @users.select do |record| - record.key == "morita" + def test_key + result = @users.select do |record| + record.key == "morita" + end + assert_equal(["morita"], + result.collect {|record| record.key.key}) end - assert_equal(["morita"], - result.collect {|record| record.key.key}) - end - def test_score - result = @users.select do |record| - (record.name =~ "o") | (record.hp >= 150) - end - result = result.select do |record| - record.score > 1 + def test_score + result = @users.select do |record| + (record.name =~ "o") | (record.hp >= 150) + end + result = result.select do |record| + record.score > 1 + end + assert_equal(["yu"], + result.collect {|record| record["_key"]}) end - assert_equal(["yu"], - result.collect {|record| record["_key"]}) - end - def test_n_sub_records - result = @users.select do |record| - (record.name =~ "o") | (record.hp >= 150) - end - result = result.select do |record| - record.n_sub_records > 1 + def test_n_sub_records + result = @users.select do |record| + (record.name =~ "o") | (record.hp >= 150) + end + result = result.select do |record| + record.n_sub_records > 1 + end + assert_equal(["yu"], + result.collect {|record| record["_key"]}) end - assert_equal(["yu"], - result.collect {|record| record["_key"]}) - end end end From null+ranguba at clear-code.com Tue May 1 05:15:53 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:15:53 +0900 Subject: [groonga-commit:4422] ranguba/rroonga [master] test: use minimum data Message-ID: <20120501051605.9B8289A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:15:53 +0900 (Tue, 01 May 2012) New Revision: 6782bd0b3fdfc44c84fd3743e9e157660dba28bb Log: test: use minimum data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+25 -5) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:04:09 +0900 (a7cd555) +++ test/test-expression-builder.rb 2012-05-01 14:15:53 +0900 (c54ca23) @@ -404,6 +404,24 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class PseudoColumnTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + end + + @users = Groonga["Users"] + end + + def setup_data + @users.add("morita", :name => "mori daijiro") + @users.add("gunyara-kun", :name => "Tasuku SUENAGA") + @users.add("yu", :name => "Yutaro Shimamura") + end + def test_id result = @users.select do |record| record.id == 1 @@ -422,18 +440,20 @@ class ExpressionBuilderTest < Test::Unit::TestCase def test_score result = @users.select do |record| - (record.name =~ "o") | (record.hp >= 150) + (record.name =~ "mori") | + (record.name =~ "daijiro") | + (record.name =~ "Tasuku") end result = result.select do |record| - record.score > 1 + record.score == 2 end - assert_equal(["yu"], - result.collect {|record| record["_key"]}) + assert_equal([["morita", 2]], + result.collect {|record| [record["_key"], record.key.score]}) end def test_n_sub_records result = @users.select do |record| - (record.name =~ "o") | (record.hp >= 150) + (record.key =~ "o") | (record.key == "yu") end result = result.select do |record| record.n_sub_records > 1 From null+ranguba at clear-code.com Tue May 1 05:20:11 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:20:11 +0900 Subject: [groonga-commit:4423] ranguba/rroonga [master] test: categorize record related tests Message-ID: <20120501052034.28A869A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:20:11 +0900 (Tue, 01 May 2012) New Revision: 52cec9f4bf96303f8ee88e8225e31e1eb3058d69 Log: test: categorize record related tests Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:15:53 +0900 (c54ca23) +++ test/test-expression-builder.rb 2012-05-01 14:20:11 +0900 (bf4c175) @@ -336,6 +336,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class RecordTest < self def test_record result = @bookmarks.select do |record| record["user"] == @morita @@ -365,6 +366,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], result.collect {|record| record.key["uri"]}) end + end def test_nested_column result = @bookmarks.select do |record| From null+ranguba at clear-code.com Tue May 1 05:20:35 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:20:35 +0900 Subject: [groonga-commit:4424] ranguba/rroonga [master] test: indent Message-ID: <20120501052059.0BC039A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:20:35 +0900 (Tue, 01 May 2012) New Revision: 19e969e799761ad2dab6afdcb25536f5cbdd00f1 Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+24 -24) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:20:11 +0900 (bf4c175) +++ test/test-expression-builder.rb 2012-05-01 14:20:35 +0900 (ea02740) @@ -337,35 +337,35 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class RecordTest < self - def test_record - result = @bookmarks.select do |record| - record["user"] == @morita + def test_record + result = @bookmarks.select do |record| + record["user"] == @morita + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record.key["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record.key["uri"]}) - end - def test_record_id - result = @bookmarks.select do |record| - record["user"] == @morita.id + def test_record_id + result = @bookmarks.select do |record| + record["user"] == @morita.id + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record.key["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record.key["uri"]}) - end - def test_record_id_object - morita = Object.new - morita_singleton_class = (class << morita; self; end) - morita_id = @morita.id - morita_singleton_class.send(:define_method, :record_id) do - morita_id - end - result = @bookmarks.select do |record| - record["user"] == morita + def test_record_id_object + morita = Object.new + morita_singleton_class = (class << morita; self; end) + morita_id = @morita.id + morita_singleton_class.send(:define_method, :record_id) do + morita_id + end + result = @bookmarks.select do |record| + record["user"] == morita + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record.key["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record.key["uri"]}) - end end def test_nested_column From null+ranguba at clear-code.com Tue May 1 05:38:28 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:38:28 +0900 Subject: [groonga-commit:4425] ranguba/rroonga [master] test: add missing index Message-ID: <20120501053853.D821D9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:38:28 +0900 (Tue, 01 May 2012) New Revision: e624a9127d0b8624ee4b3dbb7e4897b815386074 Log: test: add missing index Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+12 -3) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:20:35 +0900 (ea02740) +++ test/test-expression-builder.rb 2012-05-01 14:38:28 +0900 (9510d21) @@ -413,6 +413,13 @@ class ExpressionBuilderTest < Test::Unit::TestCase :key_type => "ShortText") do |table| table.short_text("name") end + + schema.create_table("Terms", + :type => :patricia_trie, + :default_tokenizer => "TokenBigram", + :key_type => "ShortText") do |table| + table.index("Users.name") + end end @users = Groonga["Users"] @@ -455,13 +462,15 @@ class ExpressionBuilderTest < Test::Unit::TestCase def test_n_sub_records result = @users.select do |record| - (record.key =~ "o") | (record.key == "yu") + (record.name =~ "o") | (record.key == "yu") end result = result.select do |record| record.n_sub_records > 1 end - assert_equal(["yu"], - result.collect {|record| record["_key"]}) + matched_records = result.collect do |record| + [record["_key"], record.key.n_sub_records] + end + assert_equal([["yu", 2]], matched_records) end end end From null+ranguba at clear-code.com Tue May 1 05:38:43 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:38:43 +0900 Subject: [groonga-commit:4426] ranguba/rroonga [master] test: use minimum data Message-ID: <20120501053853.EEEB89A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:38:43 +0900 (Tue, 01 May 2012) New Revision: 33c2dff2abb0d489dfadcdf38af037a1f2f71375 Log: test: use minimum data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+30 -3) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:38:28 +0900 (9510d21) +++ test/test-expression-builder.rb 2012-05-01 14:38:43 +0900 (d1ec55c) @@ -337,7 +337,34 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class RecordTest < self - def test_record + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + end + + schema.create_table("Bookmarks") do |table| + table.reference("user", "Users") + table.short_text("uri") + end + end + + @users = Groonga["Users"] + @bookmarks = Groonga["Bookmarks"] + end + + def setup_data + @morita = @users.add("morita") + @gunyara_kun = @users.add("gunyara-kun") + + @bookmarks.add(:user => @morita, :uri => "http://groonga.org/") + @bookmarks.add(:user => @morita, :uri => "http://ruby-lang.org/") + @bookmarks.add(:user => @gunyara_kun, + :uri => "http://dic.nicovideo.jp/") + end + + def test_object result = @bookmarks.select do |record| record["user"] == @morita end @@ -345,7 +372,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key["uri"]}) end - def test_record_id + def test_id result = @bookmarks.select do |record| record["user"] == @morita.id end @@ -353,7 +380,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key["uri"]}) end - def test_record_id_object + def test_record_like_object morita = Object.new morita_singleton_class = (class << morita; self; end) morita_id = @morita.id From null+ranguba at clear-code.com Tue May 1 05:39:54 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:39:54 +0900 Subject: [groonga-commit:4427] ranguba/rroonga [master] test: indent Message-ID: <20120501054002.E7C049A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:39:54 +0900 (Tue, 01 May 2012) New Revision: bee35b829782e0089ad79e20d114080a1d772f64 Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+20 -20) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:39:41 +0900 (74550ce) +++ test/test-expression-builder.rb 2012-05-01 14:39:54 +0900 (20cd68d) @@ -396,32 +396,32 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class AccessorTest < self - def test_nested_column - result = @bookmarks.select do |record| - record[".user.name"] == @morita["name"] + def test_nested_column + result = @bookmarks.select do |record| + record[".user.name"] == @morita["name"] + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record["uri"]}) - end - def test_method_chain - result = @bookmarks.select do |record| - record.user.name == @morita["name"] + def test_method_chain + result = @bookmarks.select do |record| + record.user.name == @morita["name"] + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record["uri"]}) - end - def test_deep_method_chain - @pets.add("bob", :name => "morita Bob") - @morita["pet"] = "bob" + def test_deep_method_chain + @pets.add("bob", :name => "morita Bob") + @morita["pet"] = "bob" - result = @bookmarks.select do |record| - record.user.pet.name == "morita Bob" + result = @bookmarks.select do |record| + record.user.pet.name == "morita Bob" + end + assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], + result.collect {|record| record["uri"]}) end - assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], - result.collect {|record| record["uri"]}) - end end def test_nil_match From null+ranguba at clear-code.com Tue May 1 05:39:41 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 14:39:41 +0900 Subject: [groonga-commit:4428] ranguba/rroonga [master] test: categorize accessor tests Message-ID: <20120501054002.D822A9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 14:39:41 +0900 (Tue, 01 May 2012) New Revision: e90fa90f324a21e44b24e8ba02976d1e569feba1 Log: test: categorize accessor tests Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:38:43 +0900 (d1ec55c) +++ test/test-expression-builder.rb 2012-05-01 14:39:41 +0900 (74550ce) @@ -395,6 +395,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class AccessorTest < self def test_nested_column result = @bookmarks.select do |record| record[".user.name"] == @morita["name"] @@ -421,6 +422,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], result.collect {|record| record["uri"]}) end + end def test_nil_match @users.select do |record| From null+ranguba at clear-code.com Tue May 1 06:00:37 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:00:37 +0900 Subject: [groonga-commit:4429] ranguba/rroonga [master] test: use minimal data Message-ID: <20120501060046.45E939A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:00:37 +0900 (Tue, 01 May 2012) New Revision: 892137fb7fe90d40eb640a1355492c2f23d84ec1 Log: test: use minimal data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+33 -1) =================================================================== --- test/test-expression-builder.rb 2012-05-01 14:39:54 +0900 (20cd68d) +++ test/test-expression-builder.rb 2012-05-01 15:00:37 +0900 (0bffdd3) @@ -396,9 +396,41 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class AccessorTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Sections", + :type => :patricia_trie, + :key_type => "ShortText") do |table| + end + + schema.create_table("Users", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + + schema.create_table("Bookmarks") do |table| + table.reference("user", "Users") + table.short_text("uri") + end + end + + @users = Groonga["Users"] + @bookmarks = Groonga["Bookmarks"] + end + + def setup_data + @morita = @users.add("morita", :name => "mori daijiro") + @gunyara_kun = @users.add("gunyara-kun", :name => "Tasuku SUENAGA") + + @bookmarks.add(:user => @morita, :uri => "http://groonga.org/") + @bookmarks.add(:user => @morita, :uri => "http://ruby-lang.org/") + @bookmarks.add(:user => @gunyara_kun , :uri => "http://dic.nicovideo.jp/") + end + def test_nested_column result = @bookmarks.select do |record| - record[".user.name"] == @morita["name"] + record["user.name"] == @morita["name"] end assert_equal(["http://groonga.org/", "http://ruby-lang.org/"], result.collect {|record| record["uri"]}) From null+ranguba at clear-code.com Tue May 1 06:06:38 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:06:38 +0900 Subject: [groonga-commit:4430] ranguba/rroonga [master] test: complete working test... Sorry... Message-ID: <20120501060649.098859A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:06:38 +0900 (Tue, 01 May 2012) New Revision: c1ac364f4639644d94840a4b8d6852722ffbf95f Log: test: complete working test... Sorry... Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+14 -1) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:00:37 +0900 (0bffdd3) +++ test/test-expression-builder.rb 2012-05-01 15:06:38 +0900 (c19c9d3) @@ -445,7 +445,20 @@ class ExpressionBuilderTest < Test::Unit::TestCase end def test_deep_method_chain - @pets.add("bob", :name => "morita Bob") + Groonga::Schema.define do |schema| + schema.create_table("Pets", + :type => :hash, + :key_type => "ShortText") do |table| + table.short_text("name") + end + + schema.change_table("Users") do |table| + table.reference("pet", "Pets") + end + end + + pets = Groonga["Pets"] + pets.add("bob", :name => "morita Bob") @morita["pet"] = "bob" result = @bookmarks.select do |record| From null+ranguba at clear-code.com Tue May 1 06:07:05 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:07:05 +0900 Subject: [groonga-commit:4431] ranguba/rroonga [master] test: move a fulltext search related test to fulltext category Message-ID: <20120501060716.7FF049A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:07:05 +0900 (Tue, 01 May 2012) New Revision: eddc11428ca6b10aca40d0240da55b1d8f51f843 Log: test: move a fulltext search related test to fulltext category Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+10 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:06:38 +0900 (c19c9d3) +++ test/test-expression-builder.rb 2012-05-01 15:07:05 +0900 (9245a55) @@ -281,6 +281,16 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end + def test_nil_match + @users.select do |record| + exception = ArgumentError.new("match word should not be nil: Users.name") + assert_raise(exception) do + record["name"] =~ nil + end + record["name"] == "dummy" + end + end + def test_query_string result = @users.select("name:@ro") assert_equal(["morita", "yu"], From null+ranguba at clear-code.com Tue May 1 06:07:33 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:07:33 +0900 Subject: [groonga-commit:4432] ranguba/rroonga [master] test: add missing chunk in the previous commit... Sorry... Message-ID: <20120501060741.4F66E9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:07:33 +0900 (Tue, 01 May 2012) New Revision: 1588b53f03671035be4c37ed730301f99dcafd13 Log: test: add missing chunk in the previous commit... Sorry... Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+0 -10) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:07:05 +0900 (9245a55) +++ test/test-expression-builder.rb 2012-05-01 15:07:33 +0900 (87b74fc) @@ -479,16 +479,6 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - def test_nil_match - @users.select do |record| - exception = ArgumentError.new("match word should not be nil: Users.name") - assert_raise(exception) do - record["name"] =~ nil - end - record["name"] == "dummy" - end - end - class PseudoColumnTest < self def setup_tables Groonga::Schema.define do |schema| From null+ranguba at clear-code.com Tue May 1 06:07:58 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:07:58 +0900 Subject: [groonga-commit:4433] ranguba/rroonga [master] test: indent Message-ID: <20120501060807.575B79A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:07:58 +0900 (Tue, 01 May 2012) New Revision: cb92cfdc4c83e0ed860335e99558a7e4044cc9e9 Log: test: indent Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+7 -7) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:07:33 +0900 (87b74fc) +++ test/test-expression-builder.rb 2012-05-01 15:07:58 +0900 (ee58df6) @@ -281,15 +281,15 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end - def test_nil_match - @users.select do |record| - exception = ArgumentError.new("match word should not be nil: Users.name") - assert_raise(exception) do - record["name"] =~ nil + def test_nil_match + @users.select do |record| + exception = ArgumentError.new("match word should not be nil: Users.name") + assert_raise(exception) do + record["name"] =~ nil + end + record["name"] == "dummy" end - record["name"] == "dummy" end - end def test_query_string result = @users.select("name:@ro") From null+ranguba at clear-code.com Tue May 1 06:09:16 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:09:16 +0900 Subject: [groonga-commit:4434] ranguba/rroonga [master] test: remove needless setup codes Message-ID: <20120501060929.65F459A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:09:16 +0900 (Tue, 01 May 2012) New Revision: 143c54b6e264c9245f0dfbd663f56f7c8e834467 Log: test: remove needless setup codes Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+11 -70) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:07:58 +0900 (ee58df6) +++ test/test-expression-builder.rb 2012-05-01 15:09:16 +0900 (f354f41) @@ -21,73 +21,9 @@ class ExpressionBuilderTest < Test::Unit::TestCase setup :setup_data def setup_tables - Groonga::Schema.define do |schema| - schema.create_table("Pets", - :type => :hash, - :key_type => "ShortText") do |table| - table.short_text("name") - end - - schema.create_table("Sections", - :type => :patricia_trie, - :key_type => "ShortText") do |table| - end - - schema.create_table("Users", - :type => :hash, - :key_type => "ShortText") do |table| - table.short_text("name") - table.uint32("hp") - table.reference("pet", "Pets") - table.reference("section", "Sections") - end - - schema.create_table("Bookmarks") do |table| - table.reference("user", "Users") - table.short_text("uri") - end - - schema.change_table("Sections") do |table| - table.index("Users.section") - end - end - - define_users_name_index - - @pets = Groonga["Pets"] - @users = Groonga["Users"] - @bookmarks = Groonga["Bookmarks"] - end - - def define_users_name_index - Groonga::Schema.define do |schema| - schema.create_table("Terms", - :type => :patricia_trie, - :default_tokenizer => "TokenBigram", - :key_type => "ShortText") do |table| - table.index("Users.name") - end - end end def setup_data - @morita = @users.add("morita", - :name => "mori daijiro", - :hp => 100, - :section => "search/core") - @gunyara_kun = @users.add("gunyara-kun", - :name => "Tasuku SUENAGA", - :hp => 150, - :section => "suggest/all") - @yu = @users.add("yu", - :name => "Yutaro Shimamura", - :hp => 200, - :section => "search/all") - - @groonga = @bookmarks.add(:user => @morita, :uri => "http://groonga.org/") - @ruby = @bookmarks.add(:user => @morita, :uri => "http://ruby-lang.org/") - @nico_dict = @bookmarks.add(:user => @gunyara_kun, - :uri => "http://dic.nicovideo.jp/") end class EqualityTest < self @@ -103,6 +39,17 @@ class ExpressionBuilderTest < Test::Unit::TestCase @users = Groonga["Users"] end + def define_users_name_index + Groonga::Schema.define do |schema| + schema.create_table("Terms", + :type => :patricia_trie, + :default_tokenizer => "TokenBigram", + :key_type => "ShortText") do |table| + table.index("Users.name") + end + end + end + def setup_data @users.add("morita", :name => "mori daijiro") @users.add("gunyara-kun", :name => "Tasuku SUENAGA") @@ -299,12 +246,6 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class XfixSearchTest < self - def setup_tables - end - - def setup_data - end - def test_prefix_saerch Groonga::Schema.define do |schema| schema.create_table("Sections", From null+ranguba at clear-code.com Tue May 1 06:09:39 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Tue, 01 May 2012 15:09:39 +0900 Subject: [groonga-commit:4435] ranguba/rroonga [master] test: remove needless prefix Message-ID: <20120501060950.F10519A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-01 15:09:39 +0900 (Tue, 01 May 2012) New Revision: 28d97dcddba902cfd1e0c745edf76c99a7ed8a52 Log: test: remove needless prefix Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+2 -2) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:09:16 +0900 (f354f41) +++ test/test-expression-builder.rb 2012-05-01 15:09:39 +0900 (ffd0b00) @@ -57,7 +57,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class EqualTest < self - def test_equal_without_index + def test_without_index result = @users.select do |record| record["name"] == "mori daijiro" end @@ -65,7 +65,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase result.collect {|record| record.key.key}) end - def test_equal_with_index + def test_with_index define_users_name_index result = @users.select do |record| record["name"] == "mori daijiro" From null+ranguba at clear-code.com Wed May 2 02:06:37 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 11:06:37 +0900 Subject: [groonga-commit:4436] ranguba/rroonga [master] test: split test case for prefix search and suffix search tests Message-ID: <20120502020648.64D819A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 11:06:37 +0900 (Wed, 02 May 2012) New Revision: a3e24f8cd6ddc130757df16b7800458766b3b7d0 Log: test: split test case for prefix search and suffix search tests Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+5 -3) =================================================================== --- test/test-expression-builder.rb 2012-05-01 15:09:39 +0900 (ffd0b00) +++ test/test-expression-builder.rb 2012-05-02 11:06:37 +0900 (41e2093) @@ -245,8 +245,8 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - class XfixSearchTest < self - def test_prefix_saerch + class PrefixSearchTest < self + def test_match Groonga::Schema.define do |schema| schema.create_table("Sections", :type => :patricia_trie, @@ -264,8 +264,10 @@ class ExpressionBuilderTest < Test::Unit::TestCase assert_equal(["search/all", "search/core"].sort, result.collect {|record| record.key.key}.sort) end + end - def test_suffix_search + class SuffixSearchTest < self + def test_match Groonga::Schema.define do |schema| schema.create_table("Sections", :type => :patricia_trie, From null+ranguba at clear-code.com Wed May 2 02:21:58 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 11:21:58 +0900 Subject: [groonga-commit:4437] ranguba/rroonga [master] test: use setup_tables and setup_data Message-ID: <20120502022211.CF8999A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 11:21:58 +0900 (Wed, 02 May 2012) New Revision: abb5b327269c4814bed7e6719aaf4175551ab0ec Log: test: use setup_tables and setup_data Modified files: test/test-expression-builder.rb Modified: test/test-expression-builder.rb (+23 -12) =================================================================== --- test/test-expression-builder.rb 2012-05-02 11:06:37 +0900 (41e2093) +++ test/test-expression-builder.rb 2012-05-02 11:21:58 +0900 (ddad239) @@ -246,7 +246,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class PrefixSearchTest < self - def test_match + def setup_tables Groonga::Schema.define do |schema| schema.create_table("Sections", :type => :patricia_trie, @@ -254,11 +254,17 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - sections = Groonga["Sections"] - sections.add("search/core") - sections.add("suggest/all") - sections.add("search/all") - result = sections.select do |record| + @sections = Groonga["Sections"] + end + + def setup_data + @sections.add("search/core") + @sections.add("suggest/all") + @sections.add("search/all") + end + + def test_match + result = @sections.select do |record| record.key.prefix_search("search") end assert_equal(["search/all", "search/core"].sort, @@ -267,7 +273,7 @@ class ExpressionBuilderTest < Test::Unit::TestCase end class SuffixSearchTest < self - def test_match + def setup_tables Groonga::Schema.define do |schema| schema.create_table("Sections", :type => :patricia_trie, @@ -276,12 +282,17 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end - sections = Groonga["Sections"] - sections.add("search/core") - sections.add("suggest/all") - sections.add("search/all") + @sections = Groonga["Sections"] + end - result = sections.select do |record| + def setup_data + @sections.add("search/core") + @sections.add("suggest/all") + @sections.add("search/all") + end + + def test_match + result = @sections.select do |record| record.key.suffix_search("all") end assert_equal(["suggest/all", "search/all"].sort, From null+ranguba at clear-code.com Wed May 2 02:54:01 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 11:54:01 +0900 Subject: [groonga-commit:4438] ranguba/rroonga [master] Support similar search Message-ID: <20120502025411.11DB29A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 11:54:01 +0900 (Wed, 02 May 2012) New Revision: 5e1b1f2efc89cb55d1e4eb850751d497e3186143 Log: Support similar search Modified files: lib/groonga/expression-builder.rb test/test-expression-builder.rb Modified: lib/groonga/expression-builder.rb (+12 -1) =================================================================== --- lib/groonga/expression-builder.rb 2012-05-02 11:21:58 +0900 (6ab06a6) +++ lib/groonga/expression-builder.rb 2012-05-02 11:54:01 +0900 (62156be) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2011 Kouhei Sutou +# Copyright (C) 2009-2012 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -226,6 +226,10 @@ module Groonga SuffixSearchExpressionBuilder.new(self, normalize(other)) end + def similar_search(other) + SimilarSearchExpressionBuilder.new(self, normalize(other)) + end + private def normalize(other) if @range.is_a?(Groonga::Table) @@ -406,6 +410,13 @@ module Groonga super(Groonga::Operation::SUFFIX, column_value_builder, value) end end + + # @private + class SimilarSearchExpressionBuilder < BinaryExpressionBuilder + def initialize(column_value_builder, value) + super(Groonga::Operation::SIMILAR, column_value_builder, value) + end + end end # @private Modified: test/test-expression-builder.rb (+55 -0) =================================================================== --- test/test-expression-builder.rb 2012-05-02 11:21:58 +0900 (ddad239) +++ test/test-expression-builder.rb 2012-05-02 11:54:01 +0900 (82331a3) @@ -300,6 +300,61 @@ class ExpressionBuilderTest < Test::Unit::TestCase end end + class SimilarSearchTest < self + def setup_tables + Groonga::Schema.define do |schema| + schema.create_table("Documents", + :type => :hash, + :key_type => "ShortText") do |table| + table.text("content") + end + + schema.create_table("Terms", + :type => :patricia_trie, + :key_type => "ShortText", + :default_tokenizer => "TokenBigram", + :key_normalize => true) do |table| + table.index("Documents.content") + end + end + + @documents = Groonga["Documents"] + end + + def setup_data + @documents.add("Groonga overview", :content => <<-EOC) +Groonga is a fast and accurate full text search engine based on +inverted index. One of the characteristics of groonga is that a newly +registered document instantly appears in search results. Also, groonga +allows updates without read locks. These characteristics result in +superior performance on real-time applications. +EOC + @documents.add("Full text search and Instant update", :content => <<-EOC) +In widely used DBMSs, updates are immediately processed, for example, +a newly registered record appears in the result of the next query. In +contrast, some full text search engines do not support instant +updates, because it is difficult to dynamically update inverted +indexes, the underlying data structure. +EOC + @documents.add("Column store and aggregate query", :content => <<-EOC) +People can collect more than enough data in the Internet era. However, +it is difficult to extract informative knowledge from a large +database, and such a task requires a many-sided analysis through trial +and error. For example, search refinement by date, time and location +may reveal hidden patterns. Aggregate queries are useful to perform +this kind of tasks. +EOC + end + + def test_column + result = @documents.select do |record| + record.content.similar_search("fast full text search real time") + end + assert_equal(["Groonga overview", "Column store and aggregate query"].sort, + result.collect {|record| record.key.key}.sort) + end + end + class RecordTest < self def setup_tables Groonga::Schema.define do |schema| From null+ranguba at clear-code.com Wed May 2 03:01:43 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 12:01:43 +0900 Subject: [groonga-commit:4439] ranguba/rroonga [master] Unify internal helper method name: column_value_expression_builder Message-ID: <20120502030156.066939A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 12:01:43 +0900 (Wed, 02 May 2012) New Revision: 9bf98a084ec20e01f9c0dd9f378b415074e25db0 Log: Unify internal helper method name: column_value_expression_builder Modified files: lib/groonga/expression-builder.rb Modified: lib/groonga/expression-builder.rb (+17 -17) =================================================================== --- lib/groonga/expression-builder.rb 2012-05-02 11:54:01 +0900 (62156be) +++ lib/groonga/expression-builder.rb 2012-05-02 12:01:43 +0900 (fc467d4) @@ -436,7 +436,7 @@ module Groonga "for table <#{@table.inspect}>" raise ArgumentError, message end - column_expression_builder(column, name) + column_value_expression_builder(column, name) end def id @@ -482,7 +482,7 @@ module Groonga raise ArgumentError, "different index column: <#{name}>: #{object.inspect}" end - column_expression_builder(object, name) + column_value_expression_builder(object, name) end private @@ -493,7 +493,7 @@ module Groonga end end - def column_expression_builder(column, name) + def column_value_expression_builder(column, name) ColumnValueExpressionBuilder.new(column, :table => @table, :column_name => name) @@ -535,55 +535,55 @@ module Groonga end def ==(other) - column_value_builder == other + column_value_expression_builder == other end def =~(other) - column_value_builder =~ other + column_value_expression_builder =~ other end def <(other) - column_value_builder < other + column_value_expression_builder < other end def <=(other) - column_value_builder <= other + column_value_expression_builder <= other end def >(other) - column_value_builder > other + column_value_expression_builder > other end def >=(other) - column_value_builder >= other + column_value_expression_builder >= other end def +(other) - column_value_builder + other + column_value_expression_builder + other end def -(other) - column_value_builder - other + column_value_expression_builder - other end def *(other) - column_value_builder * other + column_value_expression_builder * other end def /(other) - column_value_builder / other + column_value_expression_builder / other end def %(other) - column_value_builder % other + column_value_expression_builder % other end def match(query, options={}, &block) - column_value_builder.match(query, options, &block) + column_value_expression_builder.match(query, options, &block) end private - def column_value_builder + def column_value_expression_builder ColumnValueExpressionBuilder.new(@default_column, :table => @table, :column_name => @column_name, @@ -594,7 +594,7 @@ module Groonga return super if block return super unless args.empty? if VALID_COLUMN_NAME_RE =~ name.to_s - column_value_builder.send(name) + column_value_expression_builder.send(name) else super end From null+ranguba at clear-code.com Wed May 2 03:06:05 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 12:06:05 +0900 Subject: [groonga-commit:4440] ranguba/rroonga [master] Support similar search in Column#select Message-ID: <20120502030615.512D19A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 12:06:05 +0900 (Wed, 02 May 2012) New Revision: d7734b36dcdbbbdd7c4b41ca286e0aa5c004ddfb Log: Support similar search in Column#select Modified files: lib/groonga/expression-builder.rb test/test-expression-builder.rb Modified: lib/groonga/expression-builder.rb (+4 -0) =================================================================== --- lib/groonga/expression-builder.rb 2012-05-02 12:01:43 +0900 (fc467d4) +++ lib/groonga/expression-builder.rb 2012-05-02 12:06:05 +0900 (b1b32e8) @@ -582,6 +582,10 @@ module Groonga column_value_expression_builder.match(query, options, &block) end + def similar_search(text) + column_value_expression_builder.similar_search(text) + end + private def column_value_expression_builder ColumnValueExpressionBuilder.new(@default_column, Modified: test/test-expression-builder.rb (+9 -1) =================================================================== --- test/test-expression-builder.rb 2012-05-02 12:01:43 +0900 (82331a3) +++ test/test-expression-builder.rb 2012-05-02 12:06:05 +0900 (3ecf3e8) @@ -346,13 +346,21 @@ this kind of tasks. EOC end - def test_column + def test_table result = @documents.select do |record| record.content.similar_search("fast full text search real time") end assert_equal(["Groonga overview", "Column store and aggregate query"].sort, result.collect {|record| record.key.key}.sort) end + + def test_column + result = @documents.column("content").select do |content| + content.similar_search("fast full text search real time") + end + assert_equal(["Groonga overview", "Column store and aggregate query"].sort, + result.collect {|record| record.key.key}.sort) + end end class RecordTest < self From null+ranguba at clear-code.com Wed May 2 03:08:10 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 12:08:10 +0900 Subject: [groonga-commit:4441] ranguba/rroonga [master] 2.0.2 -> 2.0.3 Message-ID: <20120502030820.883AE9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 12:08:10 +0900 (Wed, 02 May 2012) New Revision: ed67e4b161c11a9271c1e5fd20f9c27a1a210d33 Log: 2.0.2 -> 2.0.3 Modified files: ext/groonga/rb-grn.h Modified: ext/groonga/rb-grn.h (+1 -1) =================================================================== --- ext/groonga/rb-grn.h 2012-05-02 12:06:05 +0900 (a680553) +++ ext/groonga/rb-grn.h 2012-05-02 12:08:10 +0900 (d536c35) @@ -72,7 +72,7 @@ RB_GRN_BEGIN_DECLS #define RB_GRN_MAJOR_VERSION 2 #define RB_GRN_MINOR_VERSION 0 -#define RB_GRN_MICRO_VERSION 2 +#define RB_GRN_MICRO_VERSION 3 #define RB_GRN_QUERY_DEFAULT_MAX_EXPRESSIONS 32 From null+ranguba at clear-code.com Wed May 2 03:20:10 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 12:20:10 +0900 Subject: [groonga-commit:4442] ranguba/rroonga [master] doc: add 2.0.3 entry Message-ID: <20120502032101.0DFAF9A0A5@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 12:20:10 +0900 (Wed, 02 May 2012) New Revision: b4844edf95306f65107b6e6d229a260b189b5c7b Log: doc: add 2.0.3 entry Modified files: doc/text/news.textile Modified: doc/text/news.textile (+23 -0) =================================================================== --- doc/text/news.textile 2012-05-02 12:08:10 +0900 (79f41a7) +++ doc/text/news.textile 2012-05-02 12:20:10 +0900 (c698cbd) @@ -1,5 +1,28 @@ h1. NEWS +h2(#2-0-3). 2.0.3: 2012-05-02 + +h3. Improvements + +* Supported groonga 2.0.2. +* Groonga::Table#each supports options that are same as + Groonga::Table#open_cursor's one. +* [grndump] added @--order-by=id@ option. With this option, dumped + records are sorted by ID instead of key. You can restore records + without ID change if you don't delete any records. [#1341] +* Supported building on Windows with RubyInstaller for Windows with DevKit + [GitHub#6] [Patch by @ongaeshi] +* Supported similar search by @table.select {|record| + record.column.similar_search(text)}@ syntax. + +h3. Fixes + +* Fixed a GC related crach bug. + +h3. Thanks + +* @ongaeshi + h2(#2-0-2). 2.0.2: 2012-03-29 h3. Improvements From null+ranguba at clear-code.com Wed May 2 03:20:43 2012 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 02 May 2012 12:20:43 +0900 Subject: [groonga-commit:4443] ranguba/rroonga [master] doc ja: update po Message-ID: <20120502032101.1AC039A0A8@jenkins.clear-code.com> Kouhei Sutou 2012-05-02 12:20:43 +0900 (Wed, 02 May 2012) New Revision: 81a662201086d8d51aa887bb2cd68ccac2087e53 Log: doc ja: update po Modified files: doc/po/ja.po Modified: doc/po/ja.po (+23818 -32242) =================================================================== --- doc/po/ja.po 2012-05-02 12:20:10 +0900 (5810109) +++ doc/po/ja.po 2012-05-02 12:20:43 +0900 (86b9400) @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: rroonga 1.2.3\n" -"POT-Creation-Date: 2012-03-29 16:47+0900\n" +"POT-Creation-Date: 2012-05-02 12:19+0900\n" "PO-Revision-Date: 2012-03-29 16:57+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" @@ -26,453 +26,273 @@ msgstr "????: ???? — rroonga" #: doc/reference/en/top-level-namespace.html:17(script) #: doc/reference/en/_index.html:15(script) #: doc/reference/en/file.tutorial.html:17(script) -msgid "relpath = ''; if (relpath != '') relpath += '/';" -msgstr "" - -#: doc/reference/en/file.news.html:29(script) -#: doc/reference/en/file.README.html:29(script) -#: doc/reference/en/Groonga.html:29(script) -#: doc/reference/en/Groonga/Logger.html:29(script) -#: doc/reference/en/Groonga/TooManyLinks.html:29(script) -#: doc/reference/en/Groonga/OperationNotPermitted.html:29(script) -#: doc/reference/en/Groonga/BadFileDescriptor.html:29(script) -#: doc/reference/en/Groonga/Accessor.html:29(script) -#: doc/reference/en/Groonga/FileExists.html:29(script) -#: doc/reference/en/Groonga/EncodingSupport.html:29(script) -#: doc/reference/en/Groonga/Schema/Error.html:29(script) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:29(script) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:29(script) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:29(script) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:29(script) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:29(script) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:29(script) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:29(script) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:29(script) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:29(script) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:29(script) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:29(script) -#: doc/reference/en/Groonga/BrokenPipe.html:29(script) -#: doc/reference/en/Groonga/Context.html:29(script) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:29(script) -#: doc/reference/en/Groonga/Schema.html:29(script) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:29(script) -#: doc/reference/en/Groonga/ResultTooLarge.html:29(script) -#: doc/reference/en/Groonga/DomainError.html:29(script) -#: doc/reference/en/Groonga/UnknownError.html:29(script) -#: doc/reference/en/Groonga/Expression.html:29(script) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:29(script) -#: doc/reference/en/Groonga/Error.html:29(script) -#: doc/reference/en/Groonga/EndOfData.html:29(script) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:29(script) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:29(script) -#: doc/reference/en/Groonga/InvalidSeek.html:29(script) -#: doc/reference/en/Groonga/ViewCursor.html:29(script) -#: doc/reference/en/Groonga/Snippet.html:29(script) -#: doc/reference/en/Groonga/ImproperLink.html:29(script) -#: doc/reference/en/Groonga/TableDumper.html:29(script) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:29(script) -#: doc/reference/en/Groonga/TooSmallLimit.html:29(script) -#: doc/reference/en/Groonga/VariableSizeColumn.html:29(script) -#: doc/reference/en/Groonga/NoSuchColumn.html:29(script) -#: doc/reference/en/Groonga/Hash.html:29(script) -#: doc/reference/en/Groonga/Array.html:29(script) -#: doc/reference/en/Groonga/Encoding.html:29(script) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:29(script) -#: doc/reference/en/Groonga/ConnectionRefused.html:29(script) -#: doc/reference/en/Groonga/OperationWouldBlock.html:29(script) -#: doc/reference/en/Groonga/FixSizeColumn.html:29(script) -#: doc/reference/en/Groonga/TooSmallPageSize.html:29(script) -#: doc/reference/en/Groonga/TableCursor.html:29(script) -#: doc/reference/en/Groonga/Procedure.html:29(script) -#: doc/reference/en/Groonga/CASError.html:29(script) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:29(script) -#: doc/reference/en/Groonga/Operator.html:29(script) -#: doc/reference/en/Groonga/Pagination.html:29(script) -#: doc/reference/en/Groonga/InputOutputError.html:29(script) -#: doc/reference/en/Groonga/ViewRecord.html:29(script) -#: doc/reference/en/Groonga/Type.html:29(script) -#: doc/reference/en/Groonga/OperationTimeout.html:29(script) -#: doc/reference/en/Groonga/Database.html:29(script) -#: doc/reference/en/Groonga/InvalidArgument.html:29(script) -#: doc/reference/en/Groonga/Command.html:29(script) -#: doc/reference/en/Groonga/SyntaxError.html:29(script) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:29(script) -#: doc/reference/en/Groonga/StackOverFlow.html:29(script) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:29(script) -#: doc/reference/en/Groonga/SchemaDumper.html:29(script) -#: doc/reference/en/Groonga/Object.html:29(script) -#: doc/reference/en/Groonga/NoSuchProcess.html:29(script) -#: doc/reference/en/Groonga/HashCursor.html:29(script) -#: doc/reference/en/Groonga/TooSmallOffset.html:29(script) -#: doc/reference/en/Groonga/NoLocksAvailable.html:29(script) -#: doc/reference/en/Groonga/RangeError.html:29(script) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:29(script) -#: doc/reference/en/Groonga/FileCorrupt.html:29(script) -#: doc/reference/en/Groonga/Record.html:29(script) -#: doc/reference/en/Groonga/BadAddress.html:29(script) -#: doc/reference/en/Groonga/ExecFormatError.html:29(script) -#: doc/reference/en/Groonga/View.html:29(script) -#: doc/reference/en/Groonga/FilenameTooLong.html:29(script) -#: doc/reference/en/Groonga/DatabaseDumper.html:29(script) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:29(script) -#: doc/reference/en/Groonga/ZLibError.html:29(script) -#: doc/reference/en/Groonga/TooLargeOffset.html:29(script) -#: doc/reference/en/Groonga/NotSocket.html:29(script) -#: doc/reference/en/Groonga/QueryLog.html:29(script) -#: doc/reference/en/Groonga/TokenizerError.html:29(script) -#: doc/reference/en/Groonga/NoSuchDevice.html:29(script) -#: doc/reference/en/Groonga/Column.html:29(script) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:29(script) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:29(script) -#: doc/reference/en/Groonga/NotADirectory.html:29(script) -#: doc/reference/en/Groonga/Closed.html:29(script) -#: doc/reference/en/Groonga/ResourceBusy.html:29(script) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:29(script) -#: doc/reference/en/Groonga/PatriciaTrie.html:29(script) -#: doc/reference/en/Groonga/ObjectCorrupt.html:29(script) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:29(script) -#: doc/reference/en/Groonga/PermissionDenied.html:29(script) -#: doc/reference/en/Groonga/IndexCursor.html:29(script) -#: doc/reference/en/Groonga/OperationNotSupported.html:29(script) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:29(script) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:29(script) -#: doc/reference/en/Groonga/InvalidFormat.html:29(script) -#: doc/reference/en/Groonga/Command/Builder.html:29(script) -#: doc/reference/en/Groonga/Command/Select/Result.html:29(script) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:29(script) -#: doc/reference/en/Groonga/Command/Select.html:29(script) -#: doc/reference/en/Groonga/Posting.html:29(script) -#: doc/reference/en/Groonga/RetryMax.html:29(script) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:29(script) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:29(script) -#: doc/reference/en/Groonga/NetworkIsDown.html:29(script) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:29(script) -#: doc/reference/en/Groonga/AddressIsInUse.html:29(script) -#: doc/reference/en/Groonga/NoBuffer.html:29(script) -#: doc/reference/en/Groonga/QueryLog/Parser.html:29(script) -#: doc/reference/en/Groonga/QueryLog/Command.html:29(script) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:29(script) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:29(script) -#: doc/reference/en/Groonga/Table.html:29(script) -#: doc/reference/en/Groonga/SocketNotInitialized.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:29(script) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:29(script) -#: doc/reference/en/Groonga/TooSmallPage.html:29(script) -#: doc/reference/en/Groonga/Plugin.html:29(script) -#: doc/reference/en/Groonga/TooLargePage.html:29(script) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:29(script) -#: doc/reference/en/Groonga/Variable.html:29(script) -#: doc/reference/en/Groonga/GrntestLog.html:29(script) -#: doc/reference/en/Groonga/IsADirectory.html:29(script) -#: doc/reference/en/Groonga/IllegalByteSequence.html:29(script) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:29(script) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:29(script) -#: doc/reference/en/Groonga/FileTooLarge.html:29(script) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:29(script) -#: doc/reference/en/Groonga/LZOError.html:29(script) -#: doc/reference/en/Groonga/NotEnoughSpace.html:29(script) -#: doc/reference/en/Groonga/NoChildProcesses.html:29(script) -#: doc/reference/en/Groonga/ArrayCursor.html:29(script) -#: doc/reference/en/Groonga/ViewAccessor.html:29(script) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:29(script) -#: doc/reference/en/Groonga/Table/KeySupport.html:29(script) -#: doc/reference/en/index.html:29(script) -#: doc/reference/en/top-level-namespace.html:29(script) -#: doc/reference/en/Grn/Table.html:29(script) -#: doc/reference/en/_index.html:27(script) -#: doc/reference/en/file.tutorial.html:29(script) -msgid "if (window.top.frames.main) document.body.className = 'frames';" +msgid "" +"hasFrames = window.top.frames.main ? true : false; relpath = ''; framesUrl = " +"\"frames.html#!\" + escape(window.location.href);" msgstr "" -#: doc/reference/en/file.news.html:36(a) -#: doc/reference/en/file.README.html:36(a) doc/reference/en/index.html:36(a) -#: doc/reference/en/top-level-namespace.html:36(a) -#: doc/reference/en/file.tutorial.html:36(a) +#: doc/reference/en/file.news.html:34(a) +#: doc/reference/en/file.README.html:34(a) doc/reference/en/index.html:34(a) +#: doc/reference/en/top-level-namespace.html:34(a) +#: doc/reference/en/file.tutorial.html:34(a) msgid "Index" msgstr "??" -#: doc/reference/en/file.news.html:37(span) +#: doc/reference/en/file.news.html:35(span) msgid "File: news" msgstr "????: ????" -#: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/Groonga.html:42(span) -#: doc/reference/en/Groonga.html:338(span) -#: doc/reference/en/Groonga.html:378(span) -#: doc/reference/en/Groonga.html:417(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Logger.html:42(span) -#: doc/reference/en/Groonga/TooManyLinks.html:42(span) -#: doc/reference/en/Groonga/OperationNotPermitted.html:42(span) -#: doc/reference/en/Groonga/BadFileDescriptor.html:42(span) -#: doc/reference/en/Groonga/Accessor.html:42(span) -#: doc/reference/en/Groonga/FileExists.html:42(span) -#: doc/reference/en/Groonga/EncodingSupport.html:42(span) -#: doc/reference/en/Groonga/Schema/Error.html:42(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:42(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:259(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:260(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:42(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:912(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:915(span) +#: doc/reference/en/file.news.html:38(span) +#: doc/reference/en/file.README.html:38(span) +#: doc/reference/en/Groonga.html:40(span) +#: doc/reference/en/Groonga.html:270(span) +#: doc/reference/en/Groonga.html:312(span) +#: doc/reference/en/Groonga.html:353(span) +#: doc/reference/en/Groonga.html:413(span) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:40(span) +#: doc/reference/en/Groonga/Logger.html:40(span) +#: doc/reference/en/Groonga/TooManyLinks.html:40(span) +#: doc/reference/en/Groonga/OperationNotPermitted.html:40(span) +#: doc/reference/en/Groonga/BadFileDescriptor.html:40(span) +#: doc/reference/en/Groonga/Accessor.html:40(span) +#: doc/reference/en/Groonga/FileExists.html:40(span) +#: doc/reference/en/Groonga/EncodingSupport.html:40(span) +#: doc/reference/en/Groonga/Schema/Error.html:40(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:40(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:274(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:275(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:40(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:805(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:806(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:948(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:951(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:952(span) #: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1036(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1038(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1044(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1048(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1382(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1383(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1430(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1432(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1515(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1517(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1521(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1528(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1530(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1624(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1626(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1628(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:249(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:254(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:284(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:42(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:254(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:224(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:42(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:42(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:250(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:253(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:254(span) -#: doc/reference/en/Groonga/BrokenPipe.html:42(span) -#: doc/reference/en/Groonga/Context.html:42(span) -#: doc/reference/en/Groonga/Context.html:1311(span) -#: doc/reference/en/Groonga/Context.html:1334(span) -#: doc/reference/en/Groonga/Context.html:1340(span) -#: doc/reference/en/Groonga/Context.html:1736(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Context.html:1857(span) -#: doc/reference/en/Groonga/Context.html:1859(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1863(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:42(span) -#: doc/reference/en/Groonga/Schema.html:42(span) -#: doc/reference/en/Groonga/Schema.html:111(span) -#: doc/reference/en/Groonga/Schema.html:112(span) -#: doc/reference/en/Groonga/Schema.html:115(span) -#: doc/reference/en/Groonga/Schema.html:116(span) -#: doc/reference/en/Groonga/Schema.html:119(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:997(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:998(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1080(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1082(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1084(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1087(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1088(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1092(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1176(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1177(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1221(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1222(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1266(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1267(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1350(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1351(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1392(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1393(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1437(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1438(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1439(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1484(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1487(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1488(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1490(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1575(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1577(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1579(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1581(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1587(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1588(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1590(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1683(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1686(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1688(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1690(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1736(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1737(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1778(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1779(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1820(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1821(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1862(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1863(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1864(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1944(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1945(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2028(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2029(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2073(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2074(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2118(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2119(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2202(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2203(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2287(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2288(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:264(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:267(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:266(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:269(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:295(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:302(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:40(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:266(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:269(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:236(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:238(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:40(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:236(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:238(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:40(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:236(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:238(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:265(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:268(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:266(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:269(span) +#: doc/reference/en/Groonga/BrokenPipe.html:40(span) +#: doc/reference/en/Groonga/Context.html:40(span) +#: doc/reference/en/Groonga/Context.html:266(span) +#: doc/reference/en/Groonga/Context.html:289(span) +#: doc/reference/en/Groonga/Context.html:295(span) +#: doc/reference/en/Groonga/Context.html:337(span) +#: doc/reference/en/Groonga/Context.html:340(span) +#: doc/reference/en/Groonga/Context.html:386(span) +#: doc/reference/en/Groonga/Context.html:388(span) +#: doc/reference/en/Groonga/Context.html:390(span) +#: doc/reference/en/Groonga/Context.html:392(span) +#: doc/reference/en/Groonga/Context.html:487(span) +#: doc/reference/en/Groonga/Context.html:488(span) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:40(span) +#: doc/reference/en/Groonga/Schema.html:40(span) #: doc/reference/en/Groonga/Schema.html:120(span) #: doc/reference/en/Groonga/Schema.html:121(span) -#: doc/reference/en/Groonga/Schema.html:122(span) -#: doc/reference/en/Groonga/Schema.html:123(span) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1851(span) -#: doc/reference/en/Groonga/Schema.html:1852(span) -#: doc/reference/en/Groonga/Schema.html:1876(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Schema.html:1884(span) -#: doc/reference/en/Groonga/Schema.html:1890(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:1996(span) -#: doc/reference/en/Groonga/Schema.html:1997(span) -#: doc/reference/en/Groonga/Schema.html:2021(span) -#: doc/reference/en/Groonga/Schema.html:2022(span) -#: doc/reference/en/Groonga/Schema.html:2023(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2214(span) -#: doc/reference/en/Groonga/Schema.html:2239(span) -#: doc/reference/en/Groonga/Schema.html:2241(span) -#: doc/reference/en/Groonga/Schema.html:2262(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2288(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2328(span) -#: doc/reference/en/Groonga/Schema.html:2329(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2438(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:2541(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3079(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3218(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3320(span) -#: doc/reference/en/Groonga/Schema.html:3321(span) -#: doc/reference/en/Groonga/Schema.html:3345(span) -#: doc/reference/en/Groonga/Schema.html:3346(span) -#: doc/reference/en/Groonga/Schema.html:3347(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3538(span) -#: doc/reference/en/Groonga/Schema.html:3539(span) -#: doc/reference/en/Groonga/Schema.html:3563(span) -#: doc/reference/en/Groonga/Schema.html:3564(span) -#: doc/reference/en/Groonga/Schema.html:3565(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Schema.html:3697(span) -#: doc/reference/en/Groonga/Schema.html:3698(span) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:42(span) -#: doc/reference/en/Groonga/ResultTooLarge.html:42(span) -#: doc/reference/en/Groonga/DomainError.html:42(span) -#: doc/reference/en/Groonga/UnknownError.html:42(span) -#: doc/reference/en/Groonga/Expression.html:42(span) -#: doc/reference/en/Groonga/Expression.html:1115(span) -#: doc/reference/en/Groonga/Expression.html:1117(span) -#: doc/reference/en/Groonga/Expression.html:1118(span) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:42(span) -#: doc/reference/en/Groonga/Error.html:42(span) -#: doc/reference/en/Groonga/EndOfData.html:42(span) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:42(span) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:42(span) -#: doc/reference/en/Groonga/InvalidSeek.html:42(span) -#: doc/reference/en/Groonga/ViewCursor.html:42(span) -#: doc/reference/en/Groonga/Snippet.html:42(span) -#: doc/reference/en/Groonga/ImproperLink.html:42(span) -#: doc/reference/en/Groonga/TableDumper.html:42(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:42(span) -#: doc/reference/en/Groonga/TooSmallLimit.html:42(span) -#: doc/reference/en/Groonga/VariableSizeColumn.html:42(span) -#: doc/reference/en/Groonga/NoSuchColumn.html:42(span) -#: doc/reference/en/Groonga/Hash.html:42(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:276(span) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:288(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:298(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Hash.html:301(span) -#: doc/reference/en/Groonga/Hash.html:476(span) -#: doc/reference/en/Groonga/Array.html:42(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:250(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/Array.html:420(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/Encoding.html:42(span) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:42(span) -#: doc/reference/en/Groonga/ConnectionRefused.html:42(span) -#: doc/reference/en/Groonga/OperationWouldBlock.html:42(span) -#: doc/reference/en/Groonga/FixSizeColumn.html:42(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:42(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:234(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:237(span) -#: doc/reference/en/Groonga/TableCursor.html:42(span) +#: doc/reference/en/Groonga/Schema.html:124(span) +#: doc/reference/en/Groonga/Schema.html:125(span) +#: doc/reference/en/Groonga/Schema.html:128(span) +#: doc/reference/en/Groonga/Schema.html:129(span) +#: doc/reference/en/Groonga/Schema.html:130(span) +#: doc/reference/en/Groonga/Schema.html:131(span) +#: doc/reference/en/Groonga/Schema.html:132(span) +#: doc/reference/en/Groonga/Schema.html:897(span) +#: doc/reference/en/Groonga/Schema.html:898(span) +#: doc/reference/en/Groonga/Schema.html:928(span) +#: doc/reference/en/Groonga/Schema.html:1004(span) +#: doc/reference/en/Groonga/Schema.html:1006(span) +#: doc/reference/en/Groonga/Schema.html:1028(span) +#: doc/reference/en/Groonga/Schema.html:1104(span) +#: doc/reference/en/Groonga/Schema.html:1106(span) +#: doc/reference/en/Groonga/Schema.html:1147(span) +#: doc/reference/en/Groonga/Schema.html:1655(span) +#: doc/reference/en/Groonga/Schema.html:1657(span) +#: doc/reference/en/Groonga/Schema.html:1679(span) +#: doc/reference/en/Groonga/Schema.html:1792(span) +#: doc/reference/en/Groonga/Schema.html:1794(span) +#: doc/reference/en/Groonga/Schema.html:1817(span) +#: doc/reference/en/Groonga/Schema.html:1898(span) +#: doc/reference/en/Groonga/Schema.html:1899(span) +#: doc/reference/en/Groonga/Schema.html:1900(span) +#: doc/reference/en/Groonga/Schema.html:1926(span) +#: doc/reference/en/Groonga/Schema.html:1933(span) +#: doc/reference/en/Groonga/Schema.html:1934(span) +#: doc/reference/en/Groonga/Schema.html:1940(span) +#: doc/reference/en/Groonga/Schema.html:1941(span) +#: doc/reference/en/Groonga/Schema.html:2025(span) +#: doc/reference/en/Groonga/Schema.html:2026(span) +#: doc/reference/en/Groonga/Schema.html:2048(span) +#: doc/reference/en/Groonga/Schema.html:2049(span) +#: doc/reference/en/Groonga/Schema.html:2073(span) +#: doc/reference/en/Groonga/Schema.html:2074(span) +#: doc/reference/en/Groonga/Schema.html:2075(span) +#: doc/reference/en/Groonga/Schema.html:2160(span) +#: doc/reference/en/Groonga/Schema.html:2162(span) +#: doc/reference/en/Groonga/Schema.html:2248(span) +#: doc/reference/en/Groonga/Schema.html:2250(span) +#: doc/reference/en/Groonga/Schema.html:2272(span) +#: doc/reference/en/Groonga/Schema.html:2297(span) +#: doc/reference/en/Groonga/Schema.html:2299(span) +#: doc/reference/en/Groonga/Schema.html:2322(span) +#: doc/reference/en/Groonga/Schema.html:2346(span) +#: doc/reference/en/Groonga/Schema.html:2348(span) +#: doc/reference/en/Groonga/Schema.html:2389(span) +#: doc/reference/en/Groonga/Schema.html:2390(span) +#: doc/reference/en/Groonga/Schema.html:2391(span) +#: doc/reference/en/Groonga/Schema.html:2499(span) +#: doc/reference/en/Groonga/Schema.html:2500(span) +#: doc/reference/en/Groonga/Schema.html:2501(span) +#: doc/reference/en/Groonga/Schema.html:2502(span) +#: doc/reference/en/Groonga/Schema.html:2604(span) +#: doc/reference/en/Groonga/Schema.html:2605(span) +#: doc/reference/en/Groonga/Schema.html:2606(span) +#: doc/reference/en/Groonga/Schema.html:2607(span) +#: doc/reference/en/Groonga/Schema.html:3145(span) +#: doc/reference/en/Groonga/Schema.html:3146(span) +#: doc/reference/en/Groonga/Schema.html:3147(span) +#: doc/reference/en/Groonga/Schema.html:3286(span) +#: doc/reference/en/Groonga/Schema.html:3287(span) +#: doc/reference/en/Groonga/Schema.html:3288(span) +#: doc/reference/en/Groonga/Schema.html:3374(span) +#: doc/reference/en/Groonga/Schema.html:3396(span) +#: doc/reference/en/Groonga/Schema.html:3397(span) +#: doc/reference/en/Groonga/Schema.html:3421(span) +#: doc/reference/en/Groonga/Schema.html:3422(span) +#: doc/reference/en/Groonga/Schema.html:3423(span) +#: doc/reference/en/Groonga/Schema.html:3510(span) +#: doc/reference/en/Groonga/Schema.html:3511(span) +#: doc/reference/en/Groonga/Schema.html:3598(span) +#: doc/reference/en/Groonga/Schema.html:3599(span) +#: doc/reference/en/Groonga/Schema.html:3620(span) +#: doc/reference/en/Groonga/Schema.html:3621(span) +#: doc/reference/en/Groonga/Schema.html:3645(span) +#: doc/reference/en/Groonga/Schema.html:3646(span) +#: doc/reference/en/Groonga/Schema.html:3647(span) +#: doc/reference/en/Groonga/Schema.html:3736(span) +#: doc/reference/en/Groonga/Schema.html:3737(span) +#: doc/reference/en/Groonga/Schema.html:3738(span) +#: doc/reference/en/Groonga/Schema.html:3783(span) +#: doc/reference/en/Groonga/Schema.html:3784(span) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:40(span) +#: doc/reference/en/Groonga/ResultTooLarge.html:40(span) +#: doc/reference/en/Groonga/DomainError.html:40(span) +#: doc/reference/en/Groonga/UnknownError.html:40(span) +#: doc/reference/en/Groonga/Expression.html:40(span) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:40(span) +#: doc/reference/en/Groonga/Error.html:40(span) +#: doc/reference/en/Groonga/EndOfData.html:40(span) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:40(span) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:40(span) +#: doc/reference/en/Groonga/InvalidSeek.html:40(span) +#: doc/reference/en/Groonga/ViewCursor.html:40(span) +#: doc/reference/en/Groonga/ObjectClosed.html:40(span) +#: doc/reference/en/Groonga/Snippet.html:40(span) +#: doc/reference/en/Groonga/ImproperLink.html:40(span) +#: doc/reference/en/Groonga/TableDumper.html:40(span) +#: doc/reference/en/Groonga/TableDumper.html:204(span) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:40(span) +#: doc/reference/en/Groonga/TooSmallLimit.html:40(span) +#: doc/reference/en/Groonga/VariableSizeColumn.html:40(span) +#: doc/reference/en/Groonga/NoSuchColumn.html:40(span) +#: doc/reference/en/Groonga/Hash.html:40(span) +#: doc/reference/en/Groonga/Array.html:40(span) +#: doc/reference/en/Groonga/Encoding.html:40(span) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:40(span) +#: doc/reference/en/Groonga/ConnectionRefused.html:40(span) +#: doc/reference/en/Groonga/OperationWouldBlock.html:40(span) +#: doc/reference/en/Groonga/FixSizeColumn.html:40(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:40(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:248(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:251(span) +#: doc/reference/en/Groonga/TableCursor.html:40(span) #: doc/reference/en/Groonga/Procedure.html:42(span) #: doc/reference/en/Groonga/Procedure.html:105(span) #: doc/reference/en/Groonga/Procedure.html:110(span) #: doc/reference/en/Groonga/Procedure.html:115(span) #: doc/reference/en/Groonga/Procedure.html:120(span) #: doc/reference/en/Groonga/Procedure.html:125(span) -#: doc/reference/en/Groonga/CASError.html:42(span) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:42(span) +#: doc/reference/en/Groonga/CASError.html:40(span) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:40(span) #: doc/reference/en/Groonga/Operator.html:42(span) #: doc/reference/en/Groonga/Operator.html:88(span) #: doc/reference/en/Groonga/Operator.html:93(span) @@ -550,324 +370,262 @@ msgstr "????: ????" #: doc/reference/en/Groonga/Operator.html:453(span) #: doc/reference/en/Groonga/Operator.html:458(span) #: doc/reference/en/Groonga/Operator.html:463(span) -#: doc/reference/en/Groonga/Pagination.html:42(span) -#: doc/reference/en/Groonga/Pagination.html:1217(span) -#: doc/reference/en/Groonga/InputOutputError.html:42(span) -#: doc/reference/en/Groonga/ViewRecord.html:42(span) -#: doc/reference/en/Groonga/ViewRecord.html:265(span) -#: doc/reference/en/Groonga/ViewRecord.html:304(span) -#: doc/reference/en/Groonga/ViewRecord.html:437(span) -#: doc/reference/en/Groonga/ViewRecord.html:475(span) -#: doc/reference/en/Groonga/ViewRecord.html:476(span) -#: doc/reference/en/Groonga/Type.html:42(span) -#: doc/reference/en/Groonga/Type.html:126(span) -#: doc/reference/en/Groonga/Type.html:140(span) -#: doc/reference/en/Groonga/Type.html:154(span) -#: doc/reference/en/Groonga/Type.html:168(span) -#: doc/reference/en/Groonga/Type.html:182(span) -#: doc/reference/en/Groonga/Type.html:196(span) -#: doc/reference/en/Groonga/Type.html:210(span) -#: doc/reference/en/Groonga/Type.html:224(span) -#: doc/reference/en/Groonga/Type.html:238(span) -#: doc/reference/en/Groonga/Type.html:252(span) -#: doc/reference/en/Groonga/Type.html:266(span) -#: doc/reference/en/Groonga/Type.html:280(span) -#: doc/reference/en/Groonga/Type.html:295(span) -#: doc/reference/en/Groonga/Type.html:309(span) -#: doc/reference/en/Groonga/Type.html:323(span) -#: doc/reference/en/Groonga/Type.html:337(span) -#: doc/reference/en/Groonga/Type.html:342(span) -#: doc/reference/en/Groonga/Type.html:347(span) -#: doc/reference/en/Groonga/Type.html:352(span) -#: doc/reference/en/Groonga/Type.html:357(span) -#: doc/reference/en/Groonga/Type.html:362(span) -#: doc/reference/en/Groonga/OperationTimeout.html:42(span) -#: doc/reference/en/Groonga/Database.html:42(span) -#: doc/reference/en/Groonga/Database.html:1073(span) -#: doc/reference/en/Groonga/Database.html:1078(span) -#: doc/reference/en/Groonga/InvalidArgument.html:42(span) -#: doc/reference/en/Groonga/Command.html:42(span) -#: doc/reference/en/Groonga/SyntaxError.html:42(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:42(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:310(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:322(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:333(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:336(span) -#: doc/reference/en/Groonga/StackOverFlow.html:42(span) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:42(span) -#: doc/reference/en/Groonga/SchemaDumper.html:42(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/SchemaDumper.html:260(span) -#: doc/reference/en/Groonga/Object.html:42(span) -#: doc/reference/en/Groonga/NoSuchProcess.html:42(span) -#: doc/reference/en/Groonga/HashCursor.html:42(span) -#: doc/reference/en/Groonga/TooSmallOffset.html:42(span) -#: doc/reference/en/Groonga/NoLocksAvailable.html:42(span) -#: doc/reference/en/Groonga/RangeError.html:42(span) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:42(span) -#: doc/reference/en/Groonga/FileCorrupt.html:42(span) -#: doc/reference/en/Groonga/Record.html:42(span) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/Record.html:1027(span) -#: doc/reference/en/Groonga/Record.html:1035(span) -#: doc/reference/en/Groonga/Record.html:1038(span) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1135(span) -#: doc/reference/en/Groonga/Record.html:1173(span) -#: doc/reference/en/Groonga/Record.html:1174(span) -#: doc/reference/en/Groonga/Record.html:1211(span) -#: doc/reference/en/Groonga/Record.html:1212(span) -#: doc/reference/en/Groonga/Record.html:1299(span) -#: doc/reference/en/Groonga/Record.html:1300(span) -#: doc/reference/en/Groonga/Record.html:1341(span) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1380(span) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1455(span) -#: doc/reference/en/Groonga/Record.html:1492(span) -#: doc/reference/en/Groonga/Record.html:1541(span) -#: doc/reference/en/Groonga/Record.html:1630(span) -#: doc/reference/en/Groonga/Record.html:1631(span) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1669(span) -#: doc/reference/en/Groonga/Record.html:1719(span) -#: doc/reference/en/Groonga/Record.html:1720(span) -#: doc/reference/en/Groonga/Record.html:1764(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1850(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:1901(span) -#: doc/reference/en/Groonga/Record.html:1978(span) -#: doc/reference/en/Groonga/Record.html:1979(span) -#: doc/reference/en/Groonga/Record.html:2116(span) -#: doc/reference/en/Groonga/Record.html:2117(span) -#: doc/reference/en/Groonga/Record.html:2167(span) -#: doc/reference/en/Groonga/Record.html:2168(span) -#: doc/reference/en/Groonga/Record.html:2260(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2402(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/Record.html:2491(span) -#: doc/reference/en/Groonga/Record.html:2541(span) -#: doc/reference/en/Groonga/Record.html:2578(span) -#: doc/reference/en/Groonga/Record.html:2614(span) -#: doc/reference/en/Groonga/Record.html:2615(span) -#: doc/reference/en/Groonga/Record.html:2665(span) -#: doc/reference/en/Groonga/Record.html:2666(span) -#: doc/reference/en/Groonga/BadAddress.html:42(span) -#: doc/reference/en/Groonga/ExecFormatError.html:42(span) -#: doc/reference/en/Groonga/View.html:42(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/FilenameTooLong.html:42(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:42(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) +#: doc/reference/en/Groonga/Pagination.html:40(span) +#: doc/reference/en/Groonga/Pagination.html:1283(span) +#: doc/reference/en/Groonga/InputOutputError.html:40(span) +#: doc/reference/en/Groonga/ViewRecord.html:40(span) +#: doc/reference/en/Groonga/ViewRecord.html:283(span) +#: doc/reference/en/Groonga/ViewRecord.html:324(span) +#: doc/reference/en/Groonga/ViewRecord.html:463(span) +#: doc/reference/en/Groonga/ViewRecord.html:503(span) +#: doc/reference/en/Groonga/ViewRecord.html:504(span) +#: doc/reference/en/Groonga/Type.html:40(span) +#: doc/reference/en/Groonga/OperationTimeout.html:40(span) +#: doc/reference/en/Groonga/Database.html:40(span) +#: doc/reference/en/Groonga/InvalidArgument.html:40(span) +#: doc/reference/en/Groonga/Command.html:40(span) +#: doc/reference/en/Groonga/SyntaxError.html:40(span) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:40(span) +#: doc/reference/en/Groonga/StackOverFlow.html:40(span) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:40(span) +#: doc/reference/en/Groonga/SchemaDumper.html:40(span) +#: doc/reference/en/Groonga/SchemaDumper.html:210(span) +#: doc/reference/en/Groonga/SchemaDumper.html:211(span) +#: doc/reference/en/Groonga/SchemaDumper.html:273(span) +#: doc/reference/en/Groonga/Object.html:40(span) +#: doc/reference/en/Groonga/NoSuchProcess.html:40(span) +#: doc/reference/en/Groonga/HashCursor.html:40(span) +#: doc/reference/en/Groonga/TooSmallOffset.html:40(span) +#: doc/reference/en/Groonga/NoLocksAvailable.html:40(span) +#: doc/reference/en/Groonga/RangeError.html:40(span) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:40(span) +#: doc/reference/en/Groonga/FileCorrupt.html:40(span) +#: doc/reference/en/Groonga/Record.html:40(span) +#: doc/reference/en/Groonga/Record.html:1016(span) +#: doc/reference/en/Groonga/Record.html:1077(span) +#: doc/reference/en/Groonga/Record.html:1085(span) +#: doc/reference/en/Groonga/Record.html:1088(span) +#: doc/reference/en/Groonga/Record.html:1090(span) +#: doc/reference/en/Groonga/Record.html:1189(span) +#: doc/reference/en/Groonga/Record.html:1229(span) +#: doc/reference/en/Groonga/Record.html:1230(span) +#: doc/reference/en/Groonga/Record.html:1269(span) +#: doc/reference/en/Groonga/Record.html:1270(span) +#: doc/reference/en/Groonga/Record.html:1361(span) +#: doc/reference/en/Groonga/Record.html:1362(span) +#: doc/reference/en/Groonga/Record.html:1405(span) +#: doc/reference/en/Groonga/Record.html:1445(span) +#: doc/reference/en/Groonga/Record.html:1446(span) +#: doc/reference/en/Groonga/Record.html:1524(span) +#: doc/reference/en/Groonga/Record.html:1525(span) +#: doc/reference/en/Groonga/Record.html:1564(span) +#: doc/reference/en/Groonga/Record.html:1615(span) +#: doc/reference/en/Groonga/Record.html:1708(span) +#: doc/reference/en/Groonga/Record.html:1709(span) +#: doc/reference/en/Groonga/Record.html:1748(span) +#: doc/reference/en/Groonga/Record.html:1749(span) +#: doc/reference/en/Groonga/Record.html:1801(span) +#: doc/reference/en/Groonga/Record.html:1802(span) +#: doc/reference/en/Groonga/Record.html:1848(span) +#: doc/reference/en/Groonga/Record.html:1935(span) +#: doc/reference/en/Groonga/Record.html:1936(span) +#: doc/reference/en/Groonga/Record.html:1988(span) +#: doc/reference/en/Groonga/Record.html:1989(span) +#: doc/reference/en/Groonga/Record.html:2070(span) +#: doc/reference/en/Groonga/Record.html:2071(span) +#: doc/reference/en/Groonga/Record.html:2214(span) +#: doc/reference/en/Groonga/Record.html:2215(span) +#: doc/reference/en/Groonga/Record.html:2267(span) +#: doc/reference/en/Groonga/Record.html:2268(span) +#: doc/reference/en/Groonga/Record.html:2364(span) +#: doc/reference/en/Groonga/Record.html:2405(span) +#: doc/reference/en/Groonga/Record.html:2406(span) +#: doc/reference/en/Groonga/Record.html:2512(span) +#: doc/reference/en/Groonga/Record.html:2604(span) +#: doc/reference/en/Groonga/Record.html:2605(span) +#: doc/reference/en/Groonga/Record.html:2657(span) +#: doc/reference/en/Groonga/Record.html:2696(span) +#: doc/reference/en/Groonga/Record.html:2734(span) +#: doc/reference/en/Groonga/Record.html:2735(span) +#: doc/reference/en/Groonga/Record.html:2787(span) +#: doc/reference/en/Groonga/Record.html:2788(span) +#: doc/reference/en/Groonga/BadAddress.html:40(span) +#: doc/reference/en/Groonga/ExecFormatError.html:40(span) +#: doc/reference/en/Groonga/View.html:40(span) +#: doc/reference/en/Groonga/FilenameTooLong.html:40(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:40(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:209(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:277(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:278(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:279(span) #: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:42(span) -#: doc/reference/en/Groonga/ZLibError.html:42(span) -#: doc/reference/en/Groonga/TooLargeOffset.html:42(span) -#: doc/reference/en/Groonga/NotSocket.html:42(span) -#: doc/reference/en/Groonga/QueryLog.html:42(span) -#: doc/reference/en/Groonga/TokenizerError.html:42(span) -#: doc/reference/en/Groonga/NoSuchDevice.html:42(span) -#: doc/reference/en/Groonga/Column.html:42(span) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:42(span) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:42(span) -#: doc/reference/en/Groonga/NotADirectory.html:42(span) -#: doc/reference/en/Groonga/Closed.html:42(span) -#: doc/reference/en/Groonga/ResourceBusy.html:42(span) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:447(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:459(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:470(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:473(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1515(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1516(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1520(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1522(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1620(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1622(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1627(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1629(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1631(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1634(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1639(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1640(span) -#: doc/reference/en/Groonga/ObjectCorrupt.html:42(span) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:42(span) -#: doc/reference/en/Groonga/PermissionDenied.html:42(span) +#: doc/reference/en/Groonga/ZLibError.html:40(span) +#: doc/reference/en/Groonga/TooLargeOffset.html:40(span) +#: doc/reference/en/Groonga/NotSocket.html:40(span) +#: doc/reference/en/Groonga/QueryLog.html:40(span) +#: doc/reference/en/Groonga/TokenizerError.html:40(span) +#: doc/reference/en/Groonga/NoSuchDevice.html:40(span) +#: doc/reference/en/Groonga/Column.html:40(span) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:40(span) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:40(span) +#: doc/reference/en/Groonga/NotADirectory.html:40(span) +#: doc/reference/en/Groonga/Closed.html:40(span) +#: doc/reference/en/Groonga/ResourceBusy.html:40(span) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:212(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:214(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:215(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:219(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:221(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:222(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:314(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:319(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:321(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:326(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:328(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:330(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:333(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:338(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:339(span) +#: doc/reference/en/Groonga/ObjectCorrupt.html:40(span) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:40(span) +#: doc/reference/en/Groonga/PermissionDenied.html:40(span) #: doc/reference/en/Groonga/IndexCursor.html:42(span) -#: doc/reference/en/Groonga/OperationNotSupported.html:42(span) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:42(span) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:42(span) -#: doc/reference/en/Groonga/InvalidFormat.html:42(span) -#: doc/reference/en/Groonga/Command/Builder.html:42(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:437(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:472(span) +#: doc/reference/en/Groonga/OperationNotSupported.html:40(span) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:40(span) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:40(span) +#: doc/reference/en/Groonga/InvalidFormat.html:40(span) +#: doc/reference/en/Groonga/Command/Builder.html:40(span) +#: doc/reference/en/Groonga/Command/Builder.html:335(span) +#: doc/reference/en/Groonga/Command/Builder.html:463(span) +#: doc/reference/en/Groonga/Command/Builder.html:464(span) #: doc/reference/en/Groonga/Command/Builder.html:500(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Builder.html:538(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:42(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:562(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:566(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:608(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:611(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:616(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:653(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:42(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:414(span) -#: doc/reference/en/Groonga/Command/Select.html:42(span) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Command/Select.html:204(span) -#: doc/reference/en/Groonga/Command/Select.html:250(span) -#: doc/reference/en/Groonga/Command/Select.html:255(span) -#: doc/reference/en/Groonga/Command/Select.html:256(span) -#: doc/reference/en/Groonga/Command/Select.html:258(span) -#: doc/reference/en/Groonga/Posting.html:42(span) -#: doc/reference/en/Groonga/Posting.html:420(span) -#: doc/reference/en/Groonga/Posting.html:421(span) -#: doc/reference/en/Groonga/Posting.html:1025(span) -#: doc/reference/en/Groonga/RetryMax.html:42(span) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:42(span) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:42(span) -#: doc/reference/en/Groonga/NetworkIsDown.html:42(span) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:42(span) -#: doc/reference/en/Groonga/AddressIsInUse.html:42(span) -#: doc/reference/en/Groonga/NoBuffer.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:236(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:246(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:248(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:585(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:587(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:589(span) +#: doc/reference/en/Groonga/Command/Builder.html:530(span) +#: doc/reference/en/Groonga/Command/Builder.html:569(span) +#: doc/reference/en/Groonga/Command/Builder.html:570(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:40(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:244(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:248(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:249(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:292(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:293(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:295(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:300(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:339(span) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:40(span) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:433(span) +#: doc/reference/en/Groonga/Command/Select.html:40(span) +#: doc/reference/en/Groonga/Command/Select.html:212(span) +#: doc/reference/en/Groonga/Command/Select.html:215(span) +#: doc/reference/en/Groonga/Command/Select.html:263(span) +#: doc/reference/en/Groonga/Command/Select.html:268(span) +#: doc/reference/en/Groonga/Command/Select.html:269(span) +#: doc/reference/en/Groonga/Command/Select.html:271(span) +#: doc/reference/en/Groonga/Posting.html:40(span) +#: doc/reference/en/Groonga/Posting.html:439(span) +#: doc/reference/en/Groonga/Posting.html:440(span) +#: doc/reference/en/Groonga/Posting.html:1062(span) +#: doc/reference/en/Groonga/RetryMax.html:40(span) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:40(span) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:40(span) +#: doc/reference/en/Groonga/NetworkIsDown.html:40(span) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:40(span) +#: doc/reference/en/Groonga/AddressIsInUse.html:40(span) +#: doc/reference/en/Groonga/NoBuffer.html:40(span) +#: doc/reference/en/Groonga/IndexColumn.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:249(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:259(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:261(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:443(span) #: doc/reference/en/Groonga/QueryLog/Command.html:617(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:653(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:654(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:756(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:768(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:559(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:887(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:916(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:975(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:980(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:984(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:987(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1018(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1046(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1240(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:42(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:315(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:317(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:318(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/Table.html:42(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:2910(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2916(span) -#: doc/reference/en/Groonga/Table.html:2918(span) -#: doc/reference/en/Groonga/Table.html:2921(span) -#: doc/reference/en/Groonga/Table.html:2923(span) -#: doc/reference/en/Groonga/Table.html:2924(span) -#: doc/reference/en/Groonga/Table.html:2925(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/Table.html:3173(span) -#: doc/reference/en/Groonga/Table.html:3174(span) -#: doc/reference/en/Groonga/Table.html:3175(span) -#: doc/reference/en/Groonga/Table.html:3176(span) -#: doc/reference/en/Groonga/SocketNotInitialized.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:546(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:694(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:778(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:946(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:619(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:621(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:651(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:689(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:690(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:796(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:808(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:854(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:861(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:864(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:596(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:940(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:971(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1032(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1037(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1041(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1044(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1077(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1107(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1311(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:40(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:332(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:334(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:335(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:367(span) +#: doc/reference/en/Groonga/Table.html:40(span) +#: doc/reference/en/Groonga/Table.html:314(span) +#: doc/reference/en/Groonga/Table.html:319(span) +#: doc/reference/en/Groonga/Table.html:322(span) +#: doc/reference/en/Groonga/Table.html:325(span) +#: doc/reference/en/Groonga/Table.html:327(span) +#: doc/reference/en/Groonga/Table.html:330(span) +#: doc/reference/en/Groonga/Table.html:332(span) +#: doc/reference/en/Groonga/Table.html:333(span) +#: doc/reference/en/Groonga/Table.html:334(span) +#: doc/reference/en/Groonga/SocketNotInitialized.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:574(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:702(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:732(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:822(span) #: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1002(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:254(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:262(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:280(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:282(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:284(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:197(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:347(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:197(span) -#: doc/reference/en/Groonga/TooSmallPage.html:42(span) -#: doc/reference/en/Groonga/TooSmallPage.html:234(span) -#: doc/reference/en/Groonga/TooSmallPage.html:237(span) -#: doc/reference/en/Groonga/Plugin.html:42(span) -#: doc/reference/en/Groonga/TooLargePage.html:42(span) -#: doc/reference/en/Groonga/TooLargePage.html:234(span) -#: doc/reference/en/Groonga/TooLargePage.html:237(span) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:42(span) -#: doc/reference/en/Groonga/Variable.html:42(span) -#: doc/reference/en/Groonga/GrntestLog.html:42(span) -#: doc/reference/en/Groonga/IsADirectory.html:42(span) -#: doc/reference/en/Groonga/IllegalByteSequence.html:42(span) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:42(span) -#: doc/reference/en/Groonga/FileTooLarge.html:42(span) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:42(span) -#: doc/reference/en/Groonga/LZOError.html:42(span) -#: doc/reference/en/Groonga/NotEnoughSpace.html:42(span) -#: doc/reference/en/Groonga/NoChildProcesses.html:42(span) -#: doc/reference/en/Groonga/ArrayCursor.html:42(span) -#: doc/reference/en/Groonga/ViewAccessor.html:42(span) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:42(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:42(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:827(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1062(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:267(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:275(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:287(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:291(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:293(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:295(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:297(span) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:210(span) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:378(span) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:210(span) +#: doc/reference/en/Groonga/TooSmallPage.html:40(span) +#: doc/reference/en/Groonga/TooSmallPage.html:248(span) +#: doc/reference/en/Groonga/TooSmallPage.html:251(span) +#: doc/reference/en/Groonga/Plugin.html:40(span) +#: doc/reference/en/Groonga/TooLargePage.html:40(span) +#: doc/reference/en/Groonga/TooLargePage.html:248(span) +#: doc/reference/en/Groonga/TooLargePage.html:251(span) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:40(span) +#: doc/reference/en/Groonga/Variable.html:40(span) +#: doc/reference/en/Groonga/GrntestLog.html:40(span) +#: doc/reference/en/Groonga/IsADirectory.html:40(span) +#: doc/reference/en/Groonga/IllegalByteSequence.html:40(span) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:40(span) +#: doc/reference/en/Groonga/FileTooLarge.html:40(span) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:40(span) +#: doc/reference/en/Groonga/LZOError.html:40(span) +#: doc/reference/en/Groonga/NotEnoughSpace.html:40(span) +#: doc/reference/en/Groonga/NoChildProcesses.html:40(span) +#: doc/reference/en/Groonga/ArrayCursor.html:40(span) +#: doc/reference/en/Groonga/ViewAccessor.html:40(span) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:40(span) +#: doc/reference/en/Groonga/Table/KeySupport.html:40(span) +#: doc/reference/en/index.html:38(span) +#: doc/reference/en/top-level-namespace.html:40(span) #: doc/reference/en/Grn/Table.html:42(span) #: doc/reference/en/Grn/Table.html:2911(span) #: doc/reference/en/Grn/Table.html:2914(span) @@ -876,442 +634,422 @@ msgstr "????: ????" #: doc/reference/en/Grn/Table.html:2959(span) #: doc/reference/en/Grn/Table.html:2960(span) #: doc/reference/en/Grn/Table.html:2961(span) -#: doc/reference/en/_index.html:38(span) -#: doc/reference/en/file.tutorial.html:40(span) +#: doc/reference/en/_index.html:33(span) +#: doc/reference/en/file.tutorial.html:38(span) msgid "(" msgstr "" -#: doc/reference/en/file.news.html:40(a) -#: doc/reference/en/file.README.html:40(a) doc/reference/en/Groonga.html:42(a) -#: doc/reference/en/Groonga/Logger.html:42(a) -#: doc/reference/en/Groonga/TooManyLinks.html:42(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:42(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:42(a) -#: doc/reference/en/Groonga/Accessor.html:42(a) -#: doc/reference/en/Groonga/FileExists.html:42(a) -#: doc/reference/en/Groonga/EncodingSupport.html:42(a) -#: doc/reference/en/Groonga/Schema/Error.html:42(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:42(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:42(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:42(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:42(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:42(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:42(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:42(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:42(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:42(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:42(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:42(a) -#: doc/reference/en/Groonga/BrokenPipe.html:42(a) -#: doc/reference/en/Groonga/Context.html:42(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:42(a) -#: doc/reference/en/Groonga/Schema.html:42(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:42(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:42(a) -#: doc/reference/en/Groonga/DomainError.html:42(a) -#: doc/reference/en/Groonga/UnknownError.html:42(a) -#: doc/reference/en/Groonga/Expression.html:42(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:42(a) -#: doc/reference/en/Groonga/Error.html:42(a) -#: doc/reference/en/Groonga/EndOfData.html:42(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:42(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:42(a) -#: doc/reference/en/Groonga/InvalidSeek.html:42(a) -#: doc/reference/en/Groonga/ViewCursor.html:42(a) -#: doc/reference/en/Groonga/Snippet.html:42(a) -#: doc/reference/en/Groonga/ImproperLink.html:42(a) -#: doc/reference/en/Groonga/TableDumper.html:42(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:42(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:42(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:42(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:42(a) -#: doc/reference/en/Groonga/Hash.html:42(a) -#: doc/reference/en/Groonga/Array.html:42(a) -#: doc/reference/en/Groonga/Encoding.html:42(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:42(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:42(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:42(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:42(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:42(a) -#: doc/reference/en/Groonga/TableCursor.html:42(a) +#: doc/reference/en/file.news.html:38(a) +#: doc/reference/en/file.README.html:38(a) doc/reference/en/Groonga.html:40(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:40(a) +#: doc/reference/en/Groonga/Logger.html:40(a) +#: doc/reference/en/Groonga/TooManyLinks.html:40(a) +#: doc/reference/en/Groonga/OperationNotPermitted.html:40(a) +#: doc/reference/en/Groonga/BadFileDescriptor.html:40(a) +#: doc/reference/en/Groonga/Accessor.html:40(a) +#: doc/reference/en/Groonga/FileExists.html:40(a) +#: doc/reference/en/Groonga/EncodingSupport.html:40(a) +#: doc/reference/en/Groonga/Schema/Error.html:40(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:40(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:40(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:40(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:40(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:40(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:40(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:40(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:40(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:40(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:40(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:40(a) +#: doc/reference/en/Groonga/BrokenPipe.html:40(a) +#: doc/reference/en/Groonga/Context.html:40(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:40(a) +#: doc/reference/en/Groonga/Schema.html:40(a) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:40(a) +#: doc/reference/en/Groonga/ResultTooLarge.html:40(a) +#: doc/reference/en/Groonga/DomainError.html:40(a) +#: doc/reference/en/Groonga/UnknownError.html:40(a) +#: doc/reference/en/Groonga/Expression.html:40(a) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:40(a) +#: doc/reference/en/Groonga/Error.html:40(a) +#: doc/reference/en/Groonga/EndOfData.html:40(a) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:40(a) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:40(a) +#: doc/reference/en/Groonga/InvalidSeek.html:40(a) +#: doc/reference/en/Groonga/ViewCursor.html:40(a) +#: doc/reference/en/Groonga/ObjectClosed.html:40(a) +#: doc/reference/en/Groonga/Snippet.html:40(a) +#: doc/reference/en/Groonga/ImproperLink.html:40(a) +#: doc/reference/en/Groonga/TableDumper.html:40(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:40(a) +#: doc/reference/en/Groonga/TooSmallLimit.html:40(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:40(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:40(a) +#: doc/reference/en/Groonga/Hash.html:40(a) +#: doc/reference/en/Groonga/Array.html:40(a) +#: doc/reference/en/Groonga/Encoding.html:40(a) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:40(a) +#: doc/reference/en/Groonga/ConnectionRefused.html:40(a) +#: doc/reference/en/Groonga/OperationWouldBlock.html:40(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:40(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:40(a) +#: doc/reference/en/Groonga/TableCursor.html:40(a) #: doc/reference/en/Groonga/Procedure.html:42(a) -#: doc/reference/en/Groonga/CASError.html:42(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:42(a) +#: doc/reference/en/Groonga/CASError.html:40(a) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:40(a) #: doc/reference/en/Groonga/Operator.html:42(a) -#: doc/reference/en/Groonga/Pagination.html:42(a) -#: doc/reference/en/Groonga/InputOutputError.html:42(a) -#: doc/reference/en/Groonga/ViewRecord.html:42(a) -#: doc/reference/en/Groonga/Type.html:42(a) -#: doc/reference/en/Groonga/OperationTimeout.html:42(a) -#: doc/reference/en/Groonga/Database.html:42(a) -#: doc/reference/en/Groonga/InvalidArgument.html:42(a) -#: doc/reference/en/Groonga/Command.html:42(a) -#: doc/reference/en/Groonga/SyntaxError.html:42(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:42(a) -#: doc/reference/en/Groonga/StackOverFlow.html:42(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:42(a) -#: doc/reference/en/Groonga/SchemaDumper.html:42(a) -#: doc/reference/en/Groonga/Object.html:42(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:42(a) -#: doc/reference/en/Groonga/HashCursor.html:42(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:42(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:42(a) -#: doc/reference/en/Groonga/RangeError.html:42(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:42(a) -#: doc/reference/en/Groonga/FileCorrupt.html:42(a) -#: doc/reference/en/Groonga/Record.html:42(a) -#: doc/reference/en/Groonga/BadAddress.html:42(a) -#: doc/reference/en/Groonga/ExecFormatError.html:42(a) -#: doc/reference/en/Groonga/View.html:42(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:42(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:42(a) +#: doc/reference/en/Groonga/Pagination.html:40(a) +#: doc/reference/en/Groonga/InputOutputError.html:40(a) +#: doc/reference/en/Groonga/ViewRecord.html:40(a) +#: doc/reference/en/Groonga/Type.html:40(a) +#: doc/reference/en/Groonga/OperationTimeout.html:40(a) +#: doc/reference/en/Groonga/Database.html:40(a) +#: doc/reference/en/Groonga/InvalidArgument.html:40(a) +#: doc/reference/en/Groonga/Command.html:40(a) +#: doc/reference/en/Groonga/SyntaxError.html:40(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:40(a) +#: doc/reference/en/Groonga/StackOverFlow.html:40(a) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:40(a) +#: doc/reference/en/Groonga/SchemaDumper.html:40(a) +#: doc/reference/en/Groonga/Object.html:40(a) +#: doc/reference/en/Groonga/NoSuchProcess.html:40(a) +#: doc/reference/en/Groonga/HashCursor.html:40(a) +#: doc/reference/en/Groonga/TooSmallOffset.html:40(a) +#: doc/reference/en/Groonga/NoLocksAvailable.html:40(a) +#: doc/reference/en/Groonga/RangeError.html:40(a) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:40(a) +#: doc/reference/en/Groonga/FileCorrupt.html:40(a) +#: doc/reference/en/Groonga/Record.html:40(a) +#: doc/reference/en/Groonga/BadAddress.html:40(a) +#: doc/reference/en/Groonga/ExecFormatError.html:40(a) +#: doc/reference/en/Groonga/View.html:40(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:40(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:40(a) #: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:42(a) -#: doc/reference/en/Groonga/ZLibError.html:42(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:42(a) -#: doc/reference/en/Groonga/NotSocket.html:42(a) -#: doc/reference/en/Groonga/QueryLog.html:42(a) -#: doc/reference/en/Groonga/TokenizerError.html:42(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:42(a) -#: doc/reference/en/Groonga/Column.html:42(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:42(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:42(a) -#: doc/reference/en/Groonga/NotADirectory.html:42(a) -#: doc/reference/en/Groonga/Closed.html:42(a) -#: doc/reference/en/Groonga/ResourceBusy.html:42(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:42(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:42(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:42(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:42(a) -#: doc/reference/en/Groonga/PermissionDenied.html:42(a) +#: doc/reference/en/Groonga/ZLibError.html:40(a) +#: doc/reference/en/Groonga/TooLargeOffset.html:40(a) +#: doc/reference/en/Groonga/NotSocket.html:40(a) +#: doc/reference/en/Groonga/QueryLog.html:40(a) +#: doc/reference/en/Groonga/TokenizerError.html:40(a) +#: doc/reference/en/Groonga/NoSuchDevice.html:40(a) +#: doc/reference/en/Groonga/Column.html:40(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:40(a) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:40(a) +#: doc/reference/en/Groonga/NotADirectory.html:40(a) +#: doc/reference/en/Groonga/Closed.html:40(a) +#: doc/reference/en/Groonga/ResourceBusy.html:40(a) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:40(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:40(a) +#: doc/reference/en/Groonga/ObjectCorrupt.html:40(a) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:40(a) +#: doc/reference/en/Groonga/PermissionDenied.html:40(a) #: doc/reference/en/Groonga/IndexCursor.html:42(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:42(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:42(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:42(a) -#: doc/reference/en/Groonga/InvalidFormat.html:42(a) -#: doc/reference/en/Groonga/Command/Builder.html:42(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:42(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:42(a) -#: doc/reference/en/Groonga/Command/Select.html:42(a) -#: doc/reference/en/Groonga/Posting.html:42(a) -#: doc/reference/en/Groonga/RetryMax.html:42(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:42(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:42(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:42(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:42(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:42(a) -#: doc/reference/en/Groonga/NoBuffer.html:42(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:42(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:42(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:42(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:42(a) -#: doc/reference/en/Groonga/Table.html:42(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:42(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:42(a) -#: doc/reference/en/Groonga/TooSmallPage.html:42(a) -#: doc/reference/en/Groonga/Plugin.html:42(a) -#: doc/reference/en/Groonga/TooLargePage.html:42(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:42(a) -#: doc/reference/en/Groonga/Variable.html:42(a) -#: doc/reference/en/Groonga/GrntestLog.html:42(a) -#: doc/reference/en/Groonga/IsADirectory.html:42(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:42(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:42(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:42(a) -#: doc/reference/en/Groonga/FileTooLarge.html:42(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:42(a) -#: doc/reference/en/Groonga/LZOError.html:42(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:42(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:42(a) -#: doc/reference/en/Groonga/ArrayCursor.html:42(a) -#: doc/reference/en/Groonga/ViewAccessor.html:42(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:42(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:42(a) -#: doc/reference/en/index.html:40(a) -#: doc/reference/en/top-level-namespace.html:42(a) -#: doc/reference/en/Grn/Table.html:42(a) doc/reference/en/_index.html:38(a) -#: doc/reference/en/file.tutorial.html:40(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:40(a) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:40(a) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:40(a) +#: doc/reference/en/Groonga/InvalidFormat.html:40(a) +#: doc/reference/en/Groonga/Command/Builder.html:40(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:40(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:40(a) +#: doc/reference/en/Groonga/Command/Select.html:40(a) +#: doc/reference/en/Groonga/Posting.html:40(a) +#: doc/reference/en/Groonga/RetryMax.html:40(a) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:40(a) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:40(a) +#: doc/reference/en/Groonga/NetworkIsDown.html:40(a) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:40(a) +#: doc/reference/en/Groonga/AddressIsInUse.html:40(a) +#: doc/reference/en/Groonga/NoBuffer.html:40(a) +#: doc/reference/en/Groonga/IndexColumn.html:40(a) +#: doc/reference/en/Groonga/QueryLog/Parser.html:40(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:40(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:40(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:40(a) +#: doc/reference/en/Groonga/Table.html:40(a) +#: doc/reference/en/Groonga/SocketNotInitialized.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:40(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:40(a) +#: doc/reference/en/Groonga/TooSmallPage.html:40(a) +#: doc/reference/en/Groonga/Plugin.html:40(a) +#: doc/reference/en/Groonga/TooLargePage.html:40(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:40(a) +#: doc/reference/en/Groonga/Variable.html:40(a) +#: doc/reference/en/Groonga/GrntestLog.html:40(a) +#: doc/reference/en/Groonga/IsADirectory.html:40(a) +#: doc/reference/en/Groonga/IllegalByteSequence.html:40(a) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:40(a) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:40(a) +#: doc/reference/en/Groonga/FileTooLarge.html:40(a) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:40(a) +#: doc/reference/en/Groonga/LZOError.html:40(a) +#: doc/reference/en/Groonga/NotEnoughSpace.html:40(a) +#: doc/reference/en/Groonga/NoChildProcesses.html:40(a) +#: doc/reference/en/Groonga/ArrayCursor.html:40(a) +#: doc/reference/en/Groonga/ViewAccessor.html:40(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:40(a) +#: doc/reference/en/Groonga/Table/KeySupport.html:40(a) +#: doc/reference/en/index.html:38(a) +#: doc/reference/en/top-level-namespace.html:40(a) +#: doc/reference/en/Grn/Table.html:42(a) doc/reference/en/_index.html:33(a) +#: doc/reference/en/file.tutorial.html:38(a) msgid "no frames" msgstr "??????" -#: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/Groonga.html:42(span) -#: doc/reference/en/Groonga.html:338(span) -#: doc/reference/en/Groonga.html:378(span) -#: doc/reference/en/Groonga.html:417(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Logger.html:42(span) -#: doc/reference/en/Groonga/TooManyLinks.html:42(span) -#: doc/reference/en/Groonga/OperationNotPermitted.html:42(span) -#: doc/reference/en/Groonga/BadFileDescriptor.html:42(span) -#: doc/reference/en/Groonga/Accessor.html:42(span) -#: doc/reference/en/Groonga/FileExists.html:42(span) -#: doc/reference/en/Groonga/EncodingSupport.html:42(span) -#: doc/reference/en/Groonga/Schema/Error.html:42(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:42(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:259(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:260(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:42(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:912(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:915(span) +#: doc/reference/en/file.news.html:38(span) +#: doc/reference/en/file.README.html:38(span) +#: doc/reference/en/Groonga.html:40(span) +#: doc/reference/en/Groonga.html:270(span) +#: doc/reference/en/Groonga.html:312(span) +#: doc/reference/en/Groonga.html:353(span) +#: doc/reference/en/Groonga.html:413(span) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:40(span) +#: doc/reference/en/Groonga/Logger.html:40(span) +#: doc/reference/en/Groonga/TooManyLinks.html:40(span) +#: doc/reference/en/Groonga/OperationNotPermitted.html:40(span) +#: doc/reference/en/Groonga/BadFileDescriptor.html:40(span) +#: doc/reference/en/Groonga/Accessor.html:40(span) +#: doc/reference/en/Groonga/FileExists.html:40(span) +#: doc/reference/en/Groonga/EncodingSupport.html:40(span) +#: doc/reference/en/Groonga/Schema/Error.html:40(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:40(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:274(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:275(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:40(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:805(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:806(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:948(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:951(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:952(span) #: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1036(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1038(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1044(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1048(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1382(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1383(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1430(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1432(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1515(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1517(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1523(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1528(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1530(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1625(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1626(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1628(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:249(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:284(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:42(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:256(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:224(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:42(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:42(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:42(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:250(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:42(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/BrokenPipe.html:42(span) -#: doc/reference/en/Groonga/Context.html:42(span) -#: doc/reference/en/Groonga/Context.html:1311(span) -#: doc/reference/en/Groonga/Context.html:1334(span) -#: doc/reference/en/Groonga/Context.html:1340(span) -#: doc/reference/en/Groonga/Context.html:1736(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Context.html:1857(span) -#: doc/reference/en/Groonga/Context.html:1859(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1863(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:42(span) -#: doc/reference/en/Groonga/Schema.html:42(span) -#: doc/reference/en/Groonga/Schema.html:111(span) -#: doc/reference/en/Groonga/Schema.html:112(span) -#: doc/reference/en/Groonga/Schema.html:115(span) -#: doc/reference/en/Groonga/Schema.html:116(span) -#: doc/reference/en/Groonga/Schema.html:119(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:997(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:998(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1080(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1082(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1084(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1087(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1088(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1092(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1176(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1177(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1221(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1222(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1266(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1267(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1350(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1351(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1392(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1393(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1437(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1438(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1439(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1484(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1487(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1488(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1490(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1575(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1577(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1579(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1583(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1587(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1588(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1590(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1683(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1687(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1688(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1690(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1736(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1737(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1778(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1779(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1820(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1821(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1862(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1863(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1864(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1944(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1945(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2028(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2029(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2073(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2074(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2118(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2119(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2202(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2203(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2287(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2288(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:264(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:267(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:266(span) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:270(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:295(span) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:302(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:40(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:266(span) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:271(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:236(span) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:238(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:40(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:236(span) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:238(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:40(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:236(span) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:238(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:40(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:265(span) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:269(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:40(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:266(span) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:270(span) +#: doc/reference/en/Groonga/BrokenPipe.html:40(span) +#: doc/reference/en/Groonga/Context.html:40(span) +#: doc/reference/en/Groonga/Context.html:266(span) +#: doc/reference/en/Groonga/Context.html:289(span) +#: doc/reference/en/Groonga/Context.html:295(span) +#: doc/reference/en/Groonga/Context.html:337(span) +#: doc/reference/en/Groonga/Context.html:340(span) +#: doc/reference/en/Groonga/Context.html:386(span) +#: doc/reference/en/Groonga/Context.html:388(span) +#: doc/reference/en/Groonga/Context.html:390(span) +#: doc/reference/en/Groonga/Context.html:392(span) +#: doc/reference/en/Groonga/Context.html:487(span) +#: doc/reference/en/Groonga/Context.html:488(span) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:40(span) +#: doc/reference/en/Groonga/Schema.html:40(span) #: doc/reference/en/Groonga/Schema.html:120(span) #: doc/reference/en/Groonga/Schema.html:121(span) -#: doc/reference/en/Groonga/Schema.html:122(span) -#: doc/reference/en/Groonga/Schema.html:123(span) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1851(span) -#: doc/reference/en/Groonga/Schema.html:1852(span) -#: doc/reference/en/Groonga/Schema.html:1876(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Schema.html:1884(span) -#: doc/reference/en/Groonga/Schema.html:1890(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:1977(span) -#: doc/reference/en/Groonga/Schema.html:1996(span) -#: doc/reference/en/Groonga/Schema.html:1997(span) -#: doc/reference/en/Groonga/Schema.html:2021(span) -#: doc/reference/en/Groonga/Schema.html:2022(span) -#: doc/reference/en/Groonga/Schema.html:2023(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2215(span) -#: doc/reference/en/Groonga/Schema.html:2239(span) -#: doc/reference/en/Groonga/Schema.html:2241(span) -#: doc/reference/en/Groonga/Schema.html:2262(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2288(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2328(span) -#: doc/reference/en/Groonga/Schema.html:2329(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2438(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:2541(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3079(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3218(span) -#: doc/reference/en/Groonga/Schema.html:3301(span) -#: doc/reference/en/Groonga/Schema.html:3320(span) -#: doc/reference/en/Groonga/Schema.html:3321(span) -#: doc/reference/en/Groonga/Schema.html:3345(span) -#: doc/reference/en/Groonga/Schema.html:3346(span) -#: doc/reference/en/Groonga/Schema.html:3347(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3538(span) -#: doc/reference/en/Groonga/Schema.html:3539(span) -#: doc/reference/en/Groonga/Schema.html:3563(span) -#: doc/reference/en/Groonga/Schema.html:3564(span) -#: doc/reference/en/Groonga/Schema.html:3565(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Schema.html:3697(span) -#: doc/reference/en/Groonga/Schema.html:3698(span) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:42(span) -#: doc/reference/en/Groonga/ResultTooLarge.html:42(span) -#: doc/reference/en/Groonga/DomainError.html:42(span) -#: doc/reference/en/Groonga/UnknownError.html:42(span) -#: doc/reference/en/Groonga/Expression.html:42(span) -#: doc/reference/en/Groonga/Expression.html:1115(span) -#: doc/reference/en/Groonga/Expression.html:1117(span) -#: doc/reference/en/Groonga/Expression.html:1118(span) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:42(span) -#: doc/reference/en/Groonga/Error.html:42(span) -#: doc/reference/en/Groonga/EndOfData.html:42(span) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:42(span) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:42(span) -#: doc/reference/en/Groonga/InvalidSeek.html:42(span) -#: doc/reference/en/Groonga/ViewCursor.html:42(span) -#: doc/reference/en/Groonga/Snippet.html:42(span) -#: doc/reference/en/Groonga/ImproperLink.html:42(span) -#: doc/reference/en/Groonga/TableDumper.html:42(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:42(span) -#: doc/reference/en/Groonga/TooSmallLimit.html:42(span) -#: doc/reference/en/Groonga/VariableSizeColumn.html:42(span) -#: doc/reference/en/Groonga/NoSuchColumn.html:42(span) -#: doc/reference/en/Groonga/Hash.html:42(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:273(span) -#: doc/reference/en/Groonga/Hash.html:276(span) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:288(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:298(span) -#: doc/reference/en/Groonga/Hash.html:300(span) -#: doc/reference/en/Groonga/Hash.html:302(span) -#: doc/reference/en/Groonga/Hash.html:476(span) -#: doc/reference/en/Groonga/Array.html:42(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:247(span) -#: doc/reference/en/Groonga/Array.html:250(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/Array.html:420(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:429(span) -#: doc/reference/en/Groonga/Encoding.html:42(span) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:42(span) -#: doc/reference/en/Groonga/ConnectionRefused.html:42(span) -#: doc/reference/en/Groonga/OperationWouldBlock.html:42(span) -#: doc/reference/en/Groonga/FixSizeColumn.html:42(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:42(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:234(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:238(span) -#: doc/reference/en/Groonga/TableCursor.html:42(span) +#: doc/reference/en/Groonga/Schema.html:124(span) +#: doc/reference/en/Groonga/Schema.html:125(span) +#: doc/reference/en/Groonga/Schema.html:128(span) +#: doc/reference/en/Groonga/Schema.html:129(span) +#: doc/reference/en/Groonga/Schema.html:130(span) +#: doc/reference/en/Groonga/Schema.html:131(span) +#: doc/reference/en/Groonga/Schema.html:132(span) +#: doc/reference/en/Groonga/Schema.html:897(span) +#: doc/reference/en/Groonga/Schema.html:898(span) +#: doc/reference/en/Groonga/Schema.html:928(span) +#: doc/reference/en/Groonga/Schema.html:1004(span) +#: doc/reference/en/Groonga/Schema.html:1006(span) +#: doc/reference/en/Groonga/Schema.html:1028(span) +#: doc/reference/en/Groonga/Schema.html:1104(span) +#: doc/reference/en/Groonga/Schema.html:1106(span) +#: doc/reference/en/Groonga/Schema.html:1147(span) +#: doc/reference/en/Groonga/Schema.html:1655(span) +#: doc/reference/en/Groonga/Schema.html:1657(span) +#: doc/reference/en/Groonga/Schema.html:1679(span) +#: doc/reference/en/Groonga/Schema.html:1792(span) +#: doc/reference/en/Groonga/Schema.html:1794(span) +#: doc/reference/en/Groonga/Schema.html:1817(span) +#: doc/reference/en/Groonga/Schema.html:1898(span) +#: doc/reference/en/Groonga/Schema.html:1899(span) +#: doc/reference/en/Groonga/Schema.html:1900(span) +#: doc/reference/en/Groonga/Schema.html:1926(span) +#: doc/reference/en/Groonga/Schema.html:1933(span) +#: doc/reference/en/Groonga/Schema.html:1934(span) +#: doc/reference/en/Groonga/Schema.html:1940(span) +#: doc/reference/en/Groonga/Schema.html:1941(span) +#: doc/reference/en/Groonga/Schema.html:2025(span) +#: doc/reference/en/Groonga/Schema.html:2027(span) +#: doc/reference/en/Groonga/Schema.html:2048(span) +#: doc/reference/en/Groonga/Schema.html:2049(span) +#: doc/reference/en/Groonga/Schema.html:2073(span) +#: doc/reference/en/Groonga/Schema.html:2074(span) +#: doc/reference/en/Groonga/Schema.html:2075(span) +#: doc/reference/en/Groonga/Schema.html:2160(span) +#: doc/reference/en/Groonga/Schema.html:2162(span) +#: doc/reference/en/Groonga/Schema.html:2248(span) +#: doc/reference/en/Groonga/Schema.html:2250(span) +#: doc/reference/en/Groonga/Schema.html:2273(span) +#: doc/reference/en/Groonga/Schema.html:2297(span) +#: doc/reference/en/Groonga/Schema.html:2299(span) +#: doc/reference/en/Groonga/Schema.html:2322(span) +#: doc/reference/en/Groonga/Schema.html:2346(span) +#: doc/reference/en/Groonga/Schema.html:2348(span) +#: doc/reference/en/Groonga/Schema.html:2389(span) +#: doc/reference/en/Groonga/Schema.html:2390(span) +#: doc/reference/en/Groonga/Schema.html:2391(span) +#: doc/reference/en/Groonga/Schema.html:2499(span) +#: doc/reference/en/Groonga/Schema.html:2500(span) +#: doc/reference/en/Groonga/Schema.html:2501(span) +#: doc/reference/en/Groonga/Schema.html:2502(span) +#: doc/reference/en/Groonga/Schema.html:2604(span) +#: doc/reference/en/Groonga/Schema.html:2605(span) +#: doc/reference/en/Groonga/Schema.html:2606(span) +#: doc/reference/en/Groonga/Schema.html:2607(span) +#: doc/reference/en/Groonga/Schema.html:3145(span) +#: doc/reference/en/Groonga/Schema.html:3146(span) +#: doc/reference/en/Groonga/Schema.html:3147(span) +#: doc/reference/en/Groonga/Schema.html:3286(span) +#: doc/reference/en/Groonga/Schema.html:3287(span) +#: doc/reference/en/Groonga/Schema.html:3288(span) +#: doc/reference/en/Groonga/Schema.html:3375(span) +#: doc/reference/en/Groonga/Schema.html:3396(span) +#: doc/reference/en/Groonga/Schema.html:3397(span) +#: doc/reference/en/Groonga/Schema.html:3421(span) +#: doc/reference/en/Groonga/Schema.html:3422(span) +#: doc/reference/en/Groonga/Schema.html:3423(span) +#: doc/reference/en/Groonga/Schema.html:3510(span) +#: doc/reference/en/Groonga/Schema.html:3511(span) +#: doc/reference/en/Groonga/Schema.html:3598(span) +#: doc/reference/en/Groonga/Schema.html:3599(span) +#: doc/reference/en/Groonga/Schema.html:3620(span) +#: doc/reference/en/Groonga/Schema.html:3621(span) +#: doc/reference/en/Groonga/Schema.html:3645(span) +#: doc/reference/en/Groonga/Schema.html:3646(span) +#: doc/reference/en/Groonga/Schema.html:3647(span) +#: doc/reference/en/Groonga/Schema.html:3736(span) +#: doc/reference/en/Groonga/Schema.html:3737(span) +#: doc/reference/en/Groonga/Schema.html:3738(span) +#: doc/reference/en/Groonga/Schema.html:3783(span) +#: doc/reference/en/Groonga/Schema.html:3784(span) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:40(span) +#: doc/reference/en/Groonga/ResultTooLarge.html:40(span) +#: doc/reference/en/Groonga/DomainError.html:40(span) +#: doc/reference/en/Groonga/UnknownError.html:40(span) +#: doc/reference/en/Groonga/Expression.html:40(span) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:40(span) +#: doc/reference/en/Groonga/Error.html:40(span) +#: doc/reference/en/Groonga/EndOfData.html:40(span) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:40(span) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:40(span) +#: doc/reference/en/Groonga/InvalidSeek.html:40(span) +#: doc/reference/en/Groonga/ViewCursor.html:40(span) +#: doc/reference/en/Groonga/ObjectClosed.html:40(span) +#: doc/reference/en/Groonga/Snippet.html:40(span) +#: doc/reference/en/Groonga/ImproperLink.html:40(span) +#: doc/reference/en/Groonga/TableDumper.html:40(span) +#: doc/reference/en/Groonga/TableDumper.html:204(span) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:40(span) +#: doc/reference/en/Groonga/TooSmallLimit.html:40(span) +#: doc/reference/en/Groonga/VariableSizeColumn.html:40(span) +#: doc/reference/en/Groonga/NoSuchColumn.html:40(span) +#: doc/reference/en/Groonga/Hash.html:40(span) +#: doc/reference/en/Groonga/Array.html:40(span) +#: doc/reference/en/Groonga/Encoding.html:40(span) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:40(span) +#: doc/reference/en/Groonga/ConnectionRefused.html:40(span) +#: doc/reference/en/Groonga/OperationWouldBlock.html:40(span) +#: doc/reference/en/Groonga/FixSizeColumn.html:40(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:40(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:248(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:252(span) +#: doc/reference/en/Groonga/TableCursor.html:40(span) #: doc/reference/en/Groonga/Procedure.html:42(span) #: doc/reference/en/Groonga/Procedure.html:105(span) #: doc/reference/en/Groonga/Procedure.html:110(span) #: doc/reference/en/Groonga/Procedure.html:115(span) #: doc/reference/en/Groonga/Procedure.html:120(span) #: doc/reference/en/Groonga/Procedure.html:125(span) -#: doc/reference/en/Groonga/CASError.html:42(span) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:42(span) +#: doc/reference/en/Groonga/CASError.html:40(span) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:40(span) #: doc/reference/en/Groonga/Operator.html:42(span) #: doc/reference/en/Groonga/Operator.html:88(span) #: doc/reference/en/Groonga/Operator.html:93(span) @@ -1389,324 +1127,262 @@ msgstr "??????" #: doc/reference/en/Groonga/Operator.html:453(span) #: doc/reference/en/Groonga/Operator.html:458(span) #: doc/reference/en/Groonga/Operator.html:463(span) -#: doc/reference/en/Groonga/Pagination.html:42(span) -#: doc/reference/en/Groonga/Pagination.html:1217(span) -#: doc/reference/en/Groonga/InputOutputError.html:42(span) -#: doc/reference/en/Groonga/ViewRecord.html:42(span) -#: doc/reference/en/Groonga/ViewRecord.html:265(span) -#: doc/reference/en/Groonga/ViewRecord.html:304(span) -#: doc/reference/en/Groonga/ViewRecord.html:437(span) -#: doc/reference/en/Groonga/ViewRecord.html:475(span) -#: doc/reference/en/Groonga/ViewRecord.html:476(span) -#: doc/reference/en/Groonga/Type.html:42(span) -#: doc/reference/en/Groonga/Type.html:126(span) -#: doc/reference/en/Groonga/Type.html:140(span) -#: doc/reference/en/Groonga/Type.html:154(span) -#: doc/reference/en/Groonga/Type.html:168(span) -#: doc/reference/en/Groonga/Type.html:182(span) -#: doc/reference/en/Groonga/Type.html:196(span) -#: doc/reference/en/Groonga/Type.html:210(span) -#: doc/reference/en/Groonga/Type.html:224(span) -#: doc/reference/en/Groonga/Type.html:238(span) -#: doc/reference/en/Groonga/Type.html:252(span) -#: doc/reference/en/Groonga/Type.html:266(span) -#: doc/reference/en/Groonga/Type.html:280(span) -#: doc/reference/en/Groonga/Type.html:295(span) -#: doc/reference/en/Groonga/Type.html:309(span) -#: doc/reference/en/Groonga/Type.html:323(span) -#: doc/reference/en/Groonga/Type.html:337(span) -#: doc/reference/en/Groonga/Type.html:342(span) -#: doc/reference/en/Groonga/Type.html:347(span) -#: doc/reference/en/Groonga/Type.html:352(span) -#: doc/reference/en/Groonga/Type.html:357(span) -#: doc/reference/en/Groonga/Type.html:362(span) -#: doc/reference/en/Groonga/OperationTimeout.html:42(span) -#: doc/reference/en/Groonga/Database.html:42(span) -#: doc/reference/en/Groonga/Database.html:1073(span) -#: doc/reference/en/Groonga/Database.html:1078(span) -#: doc/reference/en/Groonga/InvalidArgument.html:42(span) -#: doc/reference/en/Groonga/Command.html:42(span) -#: doc/reference/en/Groonga/SyntaxError.html:42(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:42(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:306(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:310(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:322(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:333(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:335(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:337(span) -#: doc/reference/en/Groonga/StackOverFlow.html:42(span) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:42(span) -#: doc/reference/en/Groonga/SchemaDumper.html:42(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/SchemaDumper.html:260(span) -#: doc/reference/en/Groonga/Object.html:42(span) -#: doc/reference/en/Groonga/NoSuchProcess.html:42(span) -#: doc/reference/en/Groonga/HashCursor.html:42(span) -#: doc/reference/en/Groonga/TooSmallOffset.html:42(span) -#: doc/reference/en/Groonga/NoLocksAvailable.html:42(span) -#: doc/reference/en/Groonga/RangeError.html:42(span) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:42(span) -#: doc/reference/en/Groonga/FileCorrupt.html:42(span) -#: doc/reference/en/Groonga/Record.html:42(span) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/Record.html:1027(span) -#: doc/reference/en/Groonga/Record.html:1035(span) -#: doc/reference/en/Groonga/Record.html:1038(span) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1135(span) -#: doc/reference/en/Groonga/Record.html:1173(span) -#: doc/reference/en/Groonga/Record.html:1174(span) -#: doc/reference/en/Groonga/Record.html:1211(span) -#: doc/reference/en/Groonga/Record.html:1212(span) -#: doc/reference/en/Groonga/Record.html:1299(span) -#: doc/reference/en/Groonga/Record.html:1300(span) -#: doc/reference/en/Groonga/Record.html:1341(span) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1380(span) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1455(span) -#: doc/reference/en/Groonga/Record.html:1492(span) -#: doc/reference/en/Groonga/Record.html:1541(span) -#: doc/reference/en/Groonga/Record.html:1630(span) -#: doc/reference/en/Groonga/Record.html:1631(span) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1669(span) -#: doc/reference/en/Groonga/Record.html:1719(span) -#: doc/reference/en/Groonga/Record.html:1720(span) -#: doc/reference/en/Groonga/Record.html:1764(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1850(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:1901(span) -#: doc/reference/en/Groonga/Record.html:1978(span) -#: doc/reference/en/Groonga/Record.html:1979(span) -#: doc/reference/en/Groonga/Record.html:2116(span) -#: doc/reference/en/Groonga/Record.html:2117(span) -#: doc/reference/en/Groonga/Record.html:2167(span) -#: doc/reference/en/Groonga/Record.html:2168(span) -#: doc/reference/en/Groonga/Record.html:2260(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2402(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/Record.html:2491(span) -#: doc/reference/en/Groonga/Record.html:2541(span) -#: doc/reference/en/Groonga/Record.html:2578(span) -#: doc/reference/en/Groonga/Record.html:2614(span) -#: doc/reference/en/Groonga/Record.html:2615(span) -#: doc/reference/en/Groonga/Record.html:2665(span) -#: doc/reference/en/Groonga/Record.html:2666(span) -#: doc/reference/en/Groonga/BadAddress.html:42(span) -#: doc/reference/en/Groonga/ExecFormatError.html:42(span) -#: doc/reference/en/Groonga/View.html:42(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:318(span) -#: doc/reference/en/Groonga/FilenameTooLong.html:42(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:42(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) +#: doc/reference/en/Groonga/Pagination.html:40(span) +#: doc/reference/en/Groonga/Pagination.html:1283(span) +#: doc/reference/en/Groonga/InputOutputError.html:40(span) +#: doc/reference/en/Groonga/ViewRecord.html:40(span) +#: doc/reference/en/Groonga/ViewRecord.html:283(span) +#: doc/reference/en/Groonga/ViewRecord.html:324(span) +#: doc/reference/en/Groonga/ViewRecord.html:463(span) +#: doc/reference/en/Groonga/ViewRecord.html:503(span) +#: doc/reference/en/Groonga/ViewRecord.html:504(span) +#: doc/reference/en/Groonga/Type.html:40(span) +#: doc/reference/en/Groonga/OperationTimeout.html:40(span) +#: doc/reference/en/Groonga/Database.html:40(span) +#: doc/reference/en/Groonga/InvalidArgument.html:40(span) +#: doc/reference/en/Groonga/Command.html:40(span) +#: doc/reference/en/Groonga/SyntaxError.html:40(span) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:40(span) +#: doc/reference/en/Groonga/StackOverFlow.html:40(span) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:40(span) +#: doc/reference/en/Groonga/SchemaDumper.html:40(span) +#: doc/reference/en/Groonga/SchemaDumper.html:210(span) +#: doc/reference/en/Groonga/SchemaDumper.html:211(span) +#: doc/reference/en/Groonga/SchemaDumper.html:273(span) +#: doc/reference/en/Groonga/Object.html:40(span) +#: doc/reference/en/Groonga/NoSuchProcess.html:40(span) +#: doc/reference/en/Groonga/HashCursor.html:40(span) +#: doc/reference/en/Groonga/TooSmallOffset.html:40(span) +#: doc/reference/en/Groonga/NoLocksAvailable.html:40(span) +#: doc/reference/en/Groonga/RangeError.html:40(span) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:40(span) +#: doc/reference/en/Groonga/FileCorrupt.html:40(span) +#: doc/reference/en/Groonga/Record.html:40(span) +#: doc/reference/en/Groonga/Record.html:1016(span) +#: doc/reference/en/Groonga/Record.html:1077(span) +#: doc/reference/en/Groonga/Record.html:1085(span) +#: doc/reference/en/Groonga/Record.html:1088(span) +#: doc/reference/en/Groonga/Record.html:1090(span) +#: doc/reference/en/Groonga/Record.html:1189(span) +#: doc/reference/en/Groonga/Record.html:1229(span) +#: doc/reference/en/Groonga/Record.html:1230(span) +#: doc/reference/en/Groonga/Record.html:1269(span) +#: doc/reference/en/Groonga/Record.html:1270(span) +#: doc/reference/en/Groonga/Record.html:1361(span) +#: doc/reference/en/Groonga/Record.html:1362(span) +#: doc/reference/en/Groonga/Record.html:1405(span) +#: doc/reference/en/Groonga/Record.html:1445(span) +#: doc/reference/en/Groonga/Record.html:1446(span) +#: doc/reference/en/Groonga/Record.html:1524(span) +#: doc/reference/en/Groonga/Record.html:1525(span) +#: doc/reference/en/Groonga/Record.html:1564(span) +#: doc/reference/en/Groonga/Record.html:1615(span) +#: doc/reference/en/Groonga/Record.html:1708(span) +#: doc/reference/en/Groonga/Record.html:1709(span) +#: doc/reference/en/Groonga/Record.html:1748(span) +#: doc/reference/en/Groonga/Record.html:1749(span) +#: doc/reference/en/Groonga/Record.html:1801(span) +#: doc/reference/en/Groonga/Record.html:1802(span) +#: doc/reference/en/Groonga/Record.html:1848(span) +#: doc/reference/en/Groonga/Record.html:1935(span) +#: doc/reference/en/Groonga/Record.html:1936(span) +#: doc/reference/en/Groonga/Record.html:1988(span) +#: doc/reference/en/Groonga/Record.html:1989(span) +#: doc/reference/en/Groonga/Record.html:2070(span) +#: doc/reference/en/Groonga/Record.html:2071(span) +#: doc/reference/en/Groonga/Record.html:2214(span) +#: doc/reference/en/Groonga/Record.html:2215(span) +#: doc/reference/en/Groonga/Record.html:2267(span) +#: doc/reference/en/Groonga/Record.html:2268(span) +#: doc/reference/en/Groonga/Record.html:2364(span) +#: doc/reference/en/Groonga/Record.html:2405(span) +#: doc/reference/en/Groonga/Record.html:2406(span) +#: doc/reference/en/Groonga/Record.html:2512(span) +#: doc/reference/en/Groonga/Record.html:2604(span) +#: doc/reference/en/Groonga/Record.html:2605(span) +#: doc/reference/en/Groonga/Record.html:2657(span) +#: doc/reference/en/Groonga/Record.html:2696(span) +#: doc/reference/en/Groonga/Record.html:2734(span) +#: doc/reference/en/Groonga/Record.html:2735(span) +#: doc/reference/en/Groonga/Record.html:2787(span) +#: doc/reference/en/Groonga/Record.html:2788(span) +#: doc/reference/en/Groonga/BadAddress.html:40(span) +#: doc/reference/en/Groonga/ExecFormatError.html:40(span) +#: doc/reference/en/Groonga/View.html:40(span) +#: doc/reference/en/Groonga/FilenameTooLong.html:40(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:40(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:209(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:277(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:278(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:279(span) #: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:42(span) -#: doc/reference/en/Groonga/ZLibError.html:42(span) -#: doc/reference/en/Groonga/TooLargeOffset.html:42(span) -#: doc/reference/en/Groonga/NotSocket.html:42(span) -#: doc/reference/en/Groonga/QueryLog.html:42(span) -#: doc/reference/en/Groonga/TokenizerError.html:42(span) -#: doc/reference/en/Groonga/NoSuchDevice.html:42(span) -#: doc/reference/en/Groonga/Column.html:42(span) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:42(span) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:42(span) -#: doc/reference/en/Groonga/NotADirectory.html:42(span) -#: doc/reference/en/Groonga/Closed.html:42(span) -#: doc/reference/en/Groonga/ResourceBusy.html:42(span) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:443(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:447(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:459(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:470(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:472(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:474(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1514(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1515(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1516(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1520(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1522(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1620(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1622(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1627(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1629(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1631(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1634(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1639(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1640(span) -#: doc/reference/en/Groonga/ObjectCorrupt.html:42(span) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:42(span) -#: doc/reference/en/Groonga/PermissionDenied.html:42(span) +#: doc/reference/en/Groonga/ZLibError.html:40(span) +#: doc/reference/en/Groonga/TooLargeOffset.html:40(span) +#: doc/reference/en/Groonga/NotSocket.html:40(span) +#: doc/reference/en/Groonga/QueryLog.html:40(span) +#: doc/reference/en/Groonga/TokenizerError.html:40(span) +#: doc/reference/en/Groonga/NoSuchDevice.html:40(span) +#: doc/reference/en/Groonga/Column.html:40(span) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:40(span) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:40(span) +#: doc/reference/en/Groonga/NotADirectory.html:40(span) +#: doc/reference/en/Groonga/Closed.html:40(span) +#: doc/reference/en/Groonga/ResourceBusy.html:40(span) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:213(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:214(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:215(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:219(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:221(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:222(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:314(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:319(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:321(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:326(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:328(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:330(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:333(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:338(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:339(span) +#: doc/reference/en/Groonga/ObjectCorrupt.html:40(span) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:40(span) +#: doc/reference/en/Groonga/PermissionDenied.html:40(span) #: doc/reference/en/Groonga/IndexCursor.html:42(span) -#: doc/reference/en/Groonga/OperationNotSupported.html:42(span) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:42(span) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:42(span) -#: doc/reference/en/Groonga/InvalidFormat.html:42(span) -#: doc/reference/en/Groonga/Command/Builder.html:42(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:437(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:472(span) +#: doc/reference/en/Groonga/OperationNotSupported.html:40(span) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:40(span) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:40(span) +#: doc/reference/en/Groonga/InvalidFormat.html:40(span) +#: doc/reference/en/Groonga/Command/Builder.html:40(span) +#: doc/reference/en/Groonga/Command/Builder.html:335(span) +#: doc/reference/en/Groonga/Command/Builder.html:463(span) +#: doc/reference/en/Groonga/Command/Builder.html:464(span) #: doc/reference/en/Groonga/Command/Builder.html:500(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Builder.html:538(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:42(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:562(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:566(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:608(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:611(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:617(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:653(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:42(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:414(span) -#: doc/reference/en/Groonga/Command/Select.html:42(span) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Command/Select.html:204(span) -#: doc/reference/en/Groonga/Command/Select.html:250(span) -#: doc/reference/en/Groonga/Command/Select.html:255(span) -#: doc/reference/en/Groonga/Command/Select.html:256(span) -#: doc/reference/en/Groonga/Command/Select.html:258(span) -#: doc/reference/en/Groonga/Posting.html:42(span) -#: doc/reference/en/Groonga/Posting.html:420(span) -#: doc/reference/en/Groonga/Posting.html:421(span) -#: doc/reference/en/Groonga/Posting.html:1025(span) -#: doc/reference/en/Groonga/RetryMax.html:42(span) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:42(span) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:42(span) -#: doc/reference/en/Groonga/NetworkIsDown.html:42(span) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:42(span) -#: doc/reference/en/Groonga/AddressIsInUse.html:42(span) -#: doc/reference/en/Groonga/NoBuffer.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:236(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:247(span) +#: doc/reference/en/Groonga/Command/Builder.html:530(span) +#: doc/reference/en/Groonga/Command/Builder.html:569(span) +#: doc/reference/en/Groonga/Command/Builder.html:570(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:40(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:244(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:248(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:249(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:292(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:293(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:295(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:301(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:339(span) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:40(span) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:433(span) +#: doc/reference/en/Groonga/Command/Select.html:40(span) +#: doc/reference/en/Groonga/Command/Select.html:212(span) +#: doc/reference/en/Groonga/Command/Select.html:215(span) +#: doc/reference/en/Groonga/Command/Select.html:263(span) +#: doc/reference/en/Groonga/Command/Select.html:268(span) +#: doc/reference/en/Groonga/Command/Select.html:269(span) +#: doc/reference/en/Groonga/Command/Select.html:271(span) +#: doc/reference/en/Groonga/Posting.html:40(span) +#: doc/reference/en/Groonga/Posting.html:439(span) +#: doc/reference/en/Groonga/Posting.html:440(span) +#: doc/reference/en/Groonga/Posting.html:1062(span) +#: doc/reference/en/Groonga/RetryMax.html:40(span) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:40(span) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:40(span) +#: doc/reference/en/Groonga/NetworkIsDown.html:40(span) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:40(span) +#: doc/reference/en/Groonga/AddressIsInUse.html:40(span) +#: doc/reference/en/Groonga/NoBuffer.html:40(span) +#: doc/reference/en/Groonga/IndexColumn.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:40(span) #: doc/reference/en/Groonga/QueryLog/Parser.html:249(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:585(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:587(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:589(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:260(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:262(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:443(span) #: doc/reference/en/Groonga/QueryLog/Command.html:617(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:653(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:654(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:756(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:768(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:42(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:559(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:887(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:916(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:975(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:980(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:985(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:987(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1018(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1046(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1240(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:42(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:315(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:317(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:318(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/Table.html:42(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:2910(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2916(span) -#: doc/reference/en/Groonga/Table.html:2918(span) -#: doc/reference/en/Groonga/Table.html:2921(span) -#: doc/reference/en/Groonga/Table.html:2923(span) -#: doc/reference/en/Groonga/Table.html:2924(span) -#: doc/reference/en/Groonga/Table.html:2925(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/Table.html:3173(span) -#: doc/reference/en/Groonga/Table.html:3174(span) -#: doc/reference/en/Groonga/Table.html:3175(span) -#: doc/reference/en/Groonga/Table.html:3176(span) -#: doc/reference/en/Groonga/SocketNotInitialized.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:546(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:694(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:778(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:946(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:619(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:621(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:651(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:689(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:690(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:796(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:808(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:854(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:861(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:864(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:40(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:596(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:940(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:971(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1032(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1037(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1042(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1044(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1077(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1107(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1311(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:40(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:332(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:334(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:335(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:367(span) +#: doc/reference/en/Groonga/Table.html:40(span) +#: doc/reference/en/Groonga/Table.html:314(span) +#: doc/reference/en/Groonga/Table.html:319(span) +#: doc/reference/en/Groonga/Table.html:322(span) +#: doc/reference/en/Groonga/Table.html:325(span) +#: doc/reference/en/Groonga/Table.html:327(span) +#: doc/reference/en/Groonga/Table.html:330(span) +#: doc/reference/en/Groonga/Table.html:332(span) +#: doc/reference/en/Groonga/Table.html:333(span) +#: doc/reference/en/Groonga/Table.html:334(span) +#: doc/reference/en/Groonga/SocketNotInitialized.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:574(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:702(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:732(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:822(span) #: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1002(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:254(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:262(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:280(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:282(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:284(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:197(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:347(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:42(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:197(span) -#: doc/reference/en/Groonga/TooSmallPage.html:42(span) -#: doc/reference/en/Groonga/TooSmallPage.html:234(span) -#: doc/reference/en/Groonga/TooSmallPage.html:238(span) -#: doc/reference/en/Groonga/Plugin.html:42(span) -#: doc/reference/en/Groonga/TooLargePage.html:42(span) -#: doc/reference/en/Groonga/TooLargePage.html:234(span) -#: doc/reference/en/Groonga/TooLargePage.html:238(span) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:42(span) -#: doc/reference/en/Groonga/Variable.html:42(span) -#: doc/reference/en/Groonga/GrntestLog.html:42(span) -#: doc/reference/en/Groonga/IsADirectory.html:42(span) -#: doc/reference/en/Groonga/IllegalByteSequence.html:42(span) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:42(span) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:42(span) -#: doc/reference/en/Groonga/FileTooLarge.html:42(span) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:42(span) -#: doc/reference/en/Groonga/LZOError.html:42(span) -#: doc/reference/en/Groonga/NotEnoughSpace.html:42(span) -#: doc/reference/en/Groonga/NoChildProcesses.html:42(span) -#: doc/reference/en/Groonga/ArrayCursor.html:42(span) -#: doc/reference/en/Groonga/ViewAccessor.html:42(span) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:42(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:42(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:828(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1062(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:267(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:275(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:287(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:291(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:293(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:295(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:297(span) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:210(span) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:378(span) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:40(span) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:210(span) +#: doc/reference/en/Groonga/TooSmallPage.html:40(span) +#: doc/reference/en/Groonga/TooSmallPage.html:248(span) +#: doc/reference/en/Groonga/TooSmallPage.html:252(span) +#: doc/reference/en/Groonga/Plugin.html:40(span) +#: doc/reference/en/Groonga/TooLargePage.html:40(span) +#: doc/reference/en/Groonga/TooLargePage.html:248(span) +#: doc/reference/en/Groonga/TooLargePage.html:252(span) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:40(span) +#: doc/reference/en/Groonga/Variable.html:40(span) +#: doc/reference/en/Groonga/GrntestLog.html:40(span) +#: doc/reference/en/Groonga/IsADirectory.html:40(span) +#: doc/reference/en/Groonga/IllegalByteSequence.html:40(span) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:40(span) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:40(span) +#: doc/reference/en/Groonga/FileTooLarge.html:40(span) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:40(span) +#: doc/reference/en/Groonga/LZOError.html:40(span) +#: doc/reference/en/Groonga/NotEnoughSpace.html:40(span) +#: doc/reference/en/Groonga/NoChildProcesses.html:40(span) +#: doc/reference/en/Groonga/ArrayCursor.html:40(span) +#: doc/reference/en/Groonga/ViewAccessor.html:40(span) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:40(span) +#: doc/reference/en/Groonga/Table/KeySupport.html:40(span) +#: doc/reference/en/index.html:38(span) +#: doc/reference/en/top-level-namespace.html:40(span) #: doc/reference/en/Grn/Table.html:42(span) #: doc/reference/en/Grn/Table.html:2911(span) #: doc/reference/en/Grn/Table.html:2914(span) @@ -1715,328 +1391,175 @@ msgstr "??????" #: doc/reference/en/Grn/Table.html:2959(span) #: doc/reference/en/Grn/Table.html:2960(span) #: doc/reference/en/Grn/Table.html:2961(span) -#: doc/reference/en/_index.html:38(span) -#: doc/reference/en/file.tutorial.html:40(span) +#: doc/reference/en/_index.html:33(span) +#: doc/reference/en/file.tutorial.html:38(span) msgid ")" msgstr "" -#: doc/reference/en/file.news.html:45(a) -#: doc/reference/en/file.README.html:45(a) doc/reference/en/Groonga.html:47(a) -#: doc/reference/en/Groonga/Logger.html:47(a) -#: doc/reference/en/Groonga/TooManyLinks.html:47(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:47(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:47(a) -#: doc/reference/en/Groonga/Accessor.html:47(a) -#: doc/reference/en/Groonga/FileExists.html:47(a) -#: doc/reference/en/Groonga/EncodingSupport.html:47(a) -#: doc/reference/en/Groonga/Schema/Error.html:47(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:47(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:47(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:47(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:47(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:47(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:47(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:47(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:47(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:47(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:47(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:47(a) -#: doc/reference/en/Groonga/BrokenPipe.html:47(a) -#: doc/reference/en/Groonga/Context.html:47(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:47(a) -#: doc/reference/en/Groonga/Schema.html:47(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:47(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:47(a) -#: doc/reference/en/Groonga/DomainError.html:47(a) -#: doc/reference/en/Groonga/UnknownError.html:47(a) -#: doc/reference/en/Groonga/Expression.html:47(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:47(a) -#: doc/reference/en/Groonga/Error.html:47(a) -#: doc/reference/en/Groonga/EndOfData.html:47(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:47(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:47(a) -#: doc/reference/en/Groonga/InvalidSeek.html:47(a) -#: doc/reference/en/Groonga/ViewCursor.html:47(a) -#: doc/reference/en/Groonga/Snippet.html:47(a) -#: doc/reference/en/Groonga/ImproperLink.html:47(a) -#: doc/reference/en/Groonga/TableDumper.html:47(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:47(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:47(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:47(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:47(a) -#: doc/reference/en/Groonga/Hash.html:47(a) -#: doc/reference/en/Groonga/Array.html:47(a) -#: doc/reference/en/Groonga/Encoding.html:47(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:47(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:47(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:47(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:47(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:47(a) -#: doc/reference/en/Groonga/TableCursor.html:47(a) +#: doc/reference/en/file.news.html:44(a) +#: doc/reference/en/file.README.html:44(a) doc/reference/en/Groonga.html:46(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:46(a) +#: doc/reference/en/Groonga/Logger.html:46(a) +#: doc/reference/en/Groonga/TooManyLinks.html:46(a) +#: doc/reference/en/Groonga/OperationNotPermitted.html:46(a) +#: doc/reference/en/Groonga/BadFileDescriptor.html:46(a) +#: doc/reference/en/Groonga/Accessor.html:46(a) +#: doc/reference/en/Groonga/FileExists.html:46(a) +#: doc/reference/en/Groonga/EncodingSupport.html:46(a) +#: doc/reference/en/Groonga/Schema/Error.html:46(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:46(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:46(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:46(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:46(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:46(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:46(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:46(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:46(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:46(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:46(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:46(a) +#: doc/reference/en/Groonga/BrokenPipe.html:46(a) +#: doc/reference/en/Groonga/Context.html:46(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:46(a) +#: doc/reference/en/Groonga/Schema.html:46(a) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:46(a) +#: doc/reference/en/Groonga/ResultTooLarge.html:46(a) +#: doc/reference/en/Groonga/DomainError.html:46(a) +#: doc/reference/en/Groonga/UnknownError.html:46(a) +#: doc/reference/en/Groonga/Expression.html:46(a) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:46(a) +#: doc/reference/en/Groonga/Error.html:46(a) +#: doc/reference/en/Groonga/EndOfData.html:46(a) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:46(a) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:46(a) +#: doc/reference/en/Groonga/InvalidSeek.html:46(a) +#: doc/reference/en/Groonga/ViewCursor.html:46(a) +#: doc/reference/en/Groonga/ObjectClosed.html:46(a) +#: doc/reference/en/Groonga/Snippet.html:46(a) +#: doc/reference/en/Groonga/ImproperLink.html:46(a) +#: doc/reference/en/Groonga/TableDumper.html:46(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:46(a) +#: doc/reference/en/Groonga/TooSmallLimit.html:46(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:46(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:46(a) +#: doc/reference/en/Groonga/Hash.html:46(a) +#: doc/reference/en/Groonga/Array.html:46(a) +#: doc/reference/en/Groonga/Encoding.html:46(a) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:46(a) +#: doc/reference/en/Groonga/ConnectionRefused.html:46(a) +#: doc/reference/en/Groonga/OperationWouldBlock.html:46(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:46(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:46(a) +#: doc/reference/en/Groonga/TableCursor.html:46(a) #: doc/reference/en/Groonga/Procedure.html:47(a) -#: doc/reference/en/Groonga/CASError.html:47(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:47(a) +#: doc/reference/en/Groonga/CASError.html:46(a) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:46(a) #: doc/reference/en/Groonga/Operator.html:47(a) -#: doc/reference/en/Groonga/Pagination.html:47(a) -#: doc/reference/en/Groonga/InputOutputError.html:47(a) -#: doc/reference/en/Groonga/ViewRecord.html:47(a) -#: doc/reference/en/Groonga/Type.html:47(a) -#: doc/reference/en/Groonga/OperationTimeout.html:47(a) -#: doc/reference/en/Groonga/Database.html:47(a) -#: doc/reference/en/Groonga/InvalidArgument.html:47(a) -#: doc/reference/en/Groonga/Command.html:47(a) -#: doc/reference/en/Groonga/SyntaxError.html:47(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:47(a) -#: doc/reference/en/Groonga/StackOverFlow.html:47(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:47(a) -#: doc/reference/en/Groonga/SchemaDumper.html:47(a) -#: doc/reference/en/Groonga/Object.html:47(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:47(a) -#: doc/reference/en/Groonga/HashCursor.html:47(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:47(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:47(a) -#: doc/reference/en/Groonga/RangeError.html:47(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:47(a) -#: doc/reference/en/Groonga/FileCorrupt.html:47(a) -#: doc/reference/en/Groonga/Record.html:47(a) -#: doc/reference/en/Groonga/BadAddress.html:47(a) -#: doc/reference/en/Groonga/ExecFormatError.html:47(a) -#: doc/reference/en/Groonga/View.html:47(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:47(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:47(a) +#: doc/reference/en/Groonga/Pagination.html:46(a) +#: doc/reference/en/Groonga/InputOutputError.html:46(a) +#: doc/reference/en/Groonga/ViewRecord.html:46(a) +#: doc/reference/en/Groonga/Type.html:46(a) +#: doc/reference/en/Groonga/OperationTimeout.html:46(a) +#: doc/reference/en/Groonga/Database.html:46(a) +#: doc/reference/en/Groonga/InvalidArgument.html:46(a) +#: doc/reference/en/Groonga/Command.html:46(a) +#: doc/reference/en/Groonga/SyntaxError.html:46(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:46(a) +#: doc/reference/en/Groonga/StackOverFlow.html:46(a) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:46(a) +#: doc/reference/en/Groonga/SchemaDumper.html:46(a) +#: doc/reference/en/Groonga/Object.html:46(a) +#: doc/reference/en/Groonga/NoSuchProcess.html:46(a) +#: doc/reference/en/Groonga/HashCursor.html:46(a) +#: doc/reference/en/Groonga/TooSmallOffset.html:46(a) +#: doc/reference/en/Groonga/NoLocksAvailable.html:46(a) +#: doc/reference/en/Groonga/RangeError.html:46(a) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:46(a) +#: doc/reference/en/Groonga/FileCorrupt.html:46(a) +#: doc/reference/en/Groonga/Record.html:46(a) +#: doc/reference/en/Groonga/BadAddress.html:46(a) +#: doc/reference/en/Groonga/ExecFormatError.html:46(a) +#: doc/reference/en/Groonga/View.html:46(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:46(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:46(a) #: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:47(a) -#: doc/reference/en/Groonga/ZLibError.html:47(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:47(a) -#: doc/reference/en/Groonga/NotSocket.html:47(a) -#: doc/reference/en/Groonga/QueryLog.html:47(a) -#: doc/reference/en/Groonga/TokenizerError.html:47(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:47(a) -#: doc/reference/en/Groonga/Column.html:47(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:47(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:47(a) -#: doc/reference/en/Groonga/NotADirectory.html:47(a) -#: doc/reference/en/Groonga/Closed.html:47(a) -#: doc/reference/en/Groonga/ResourceBusy.html:47(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:47(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:47(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:47(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:47(a) -#: doc/reference/en/Groonga/PermissionDenied.html:47(a) +#: doc/reference/en/Groonga/ZLibError.html:46(a) +#: doc/reference/en/Groonga/TooLargeOffset.html:46(a) +#: doc/reference/en/Groonga/NotSocket.html:46(a) +#: doc/reference/en/Groonga/QueryLog.html:46(a) +#: doc/reference/en/Groonga/TokenizerError.html:46(a) +#: doc/reference/en/Groonga/NoSuchDevice.html:46(a) +#: doc/reference/en/Groonga/Column.html:46(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:46(a) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:46(a) +#: doc/reference/en/Groonga/NotADirectory.html:46(a) +#: doc/reference/en/Groonga/Closed.html:46(a) +#: doc/reference/en/Groonga/ResourceBusy.html:46(a) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:46(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:46(a) +#: doc/reference/en/Groonga/ObjectCorrupt.html:46(a) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:46(a) +#: doc/reference/en/Groonga/PermissionDenied.html:46(a) #: doc/reference/en/Groonga/IndexCursor.html:47(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:47(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:47(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:47(a) -#: doc/reference/en/Groonga/InvalidFormat.html:47(a) -#: doc/reference/en/Groonga/Command/Builder.html:47(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:47(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:47(a) -#: doc/reference/en/Groonga/Command/Select.html:47(a) -#: doc/reference/en/Groonga/Posting.html:47(a) -#: doc/reference/en/Groonga/RetryMax.html:47(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:47(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:47(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:47(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:47(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:47(a) -#: doc/reference/en/Groonga/NoBuffer.html:47(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:47(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:47(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:47(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:47(a) -#: doc/reference/en/Groonga/Table.html:47(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:47(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:47(a) -#: doc/reference/en/Groonga/TooSmallPage.html:47(a) -#: doc/reference/en/Groonga/Plugin.html:47(a) -#: doc/reference/en/Groonga/TooLargePage.html:47(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:47(a) -#: doc/reference/en/Groonga/Variable.html:47(a) -#: doc/reference/en/Groonga/GrntestLog.html:47(a) -#: doc/reference/en/Groonga/IsADirectory.html:47(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:47(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:47(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:47(a) -#: doc/reference/en/Groonga/FileTooLarge.html:47(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:47(a) -#: doc/reference/en/Groonga/LZOError.html:47(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:47(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:47(a) -#: doc/reference/en/Groonga/ArrayCursor.html:47(a) -#: doc/reference/en/Groonga/ViewAccessor.html:47(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:47(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:47(a) -#: doc/reference/en/index.html:45(a) doc/reference/en/class_list.html:28(h1) -#: doc/reference/en/top-level-namespace.html:47(a) -#: doc/reference/en/Grn/Table.html:47(a) doc/reference/en/_index.html:43(a) -#: doc/reference/en/file.tutorial.html:45(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:46(a) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:46(a) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:46(a) +#: doc/reference/en/Groonga/InvalidFormat.html:46(a) +#: doc/reference/en/Groonga/Command/Builder.html:46(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:46(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:46(a) +#: doc/reference/en/Groonga/Command/Select.html:46(a) +#: doc/reference/en/Groonga/Posting.html:46(a) +#: doc/reference/en/Groonga/RetryMax.html:46(a) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:46(a) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:46(a) +#: doc/reference/en/Groonga/NetworkIsDown.html:46(a) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:46(a) +#: doc/reference/en/Groonga/AddressIsInUse.html:46(a) +#: doc/reference/en/Groonga/NoBuffer.html:46(a) +#: doc/reference/en/Groonga/IndexColumn.html:46(a) +#: doc/reference/en/Groonga/QueryLog/Parser.html:46(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:46(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:46(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:46(a) +#: doc/reference/en/Groonga/Table.html:46(a) +#: doc/reference/en/Groonga/SocketNotInitialized.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:46(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:46(a) +#: doc/reference/en/Groonga/TooSmallPage.html:46(a) +#: doc/reference/en/Groonga/Plugin.html:46(a) +#: doc/reference/en/Groonga/TooLargePage.html:46(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:46(a) +#: doc/reference/en/Groonga/Variable.html:46(a) +#: doc/reference/en/Groonga/GrntestLog.html:46(a) +#: doc/reference/en/Groonga/IsADirectory.html:46(a) +#: doc/reference/en/Groonga/IllegalByteSequence.html:46(a) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:46(a) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:46(a) +#: doc/reference/en/Groonga/FileTooLarge.html:46(a) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:46(a) +#: doc/reference/en/Groonga/LZOError.html:46(a) +#: doc/reference/en/Groonga/NotEnoughSpace.html:46(a) +#: doc/reference/en/Groonga/NoChildProcesses.html:46(a) +#: doc/reference/en/Groonga/ArrayCursor.html:46(a) +#: doc/reference/en/Groonga/ViewAccessor.html:46(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:46(a) +#: doc/reference/en/Groonga/Table/KeySupport.html:46(a) +#: doc/reference/en/index.html:44(a) doc/reference/en/class_list.html:28(h1) +#: doc/reference/en/top-level-namespace.html:46(a) +#: doc/reference/en/Grn/Table.html:47(a) doc/reference/en/_index.html:39(a) +#: doc/reference/en/file.tutorial.html:44(a) msgid "Class List" msgstr "??????" -#: doc/reference/en/file.news.html:47(a) -#: doc/reference/en/file.README.html:47(a) doc/reference/en/Groonga.html:49(a) -#: doc/reference/en/Groonga/Logger.html:49(a) -#: doc/reference/en/Groonga/TooManyLinks.html:49(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:49(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:49(a) -#: doc/reference/en/Groonga/Accessor.html:49(a) -#: doc/reference/en/Groonga/FileExists.html:49(a) -#: doc/reference/en/Groonga/EncodingSupport.html:49(a) -#: doc/reference/en/Groonga/Schema/Error.html:49(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:49(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:49(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:49(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:49(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:49(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:49(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:49(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:49(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:49(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:49(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:49(a) -#: doc/reference/en/Groonga/BrokenPipe.html:49(a) -#: doc/reference/en/Groonga/Context.html:49(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:49(a) -#: doc/reference/en/Groonga/Schema.html:49(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:49(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:49(a) -#: doc/reference/en/Groonga/DomainError.html:49(a) -#: doc/reference/en/Groonga/UnknownError.html:49(a) -#: doc/reference/en/Groonga/Expression.html:49(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:49(a) -#: doc/reference/en/Groonga/Error.html:49(a) -#: doc/reference/en/Groonga/EndOfData.html:49(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:49(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:49(a) -#: doc/reference/en/Groonga/InvalidSeek.html:49(a) -#: doc/reference/en/Groonga/ViewCursor.html:49(a) -#: doc/reference/en/Groonga/Snippet.html:49(a) -#: doc/reference/en/Groonga/ImproperLink.html:49(a) -#: doc/reference/en/Groonga/TableDumper.html:49(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:49(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:49(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:49(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:49(a) -#: doc/reference/en/Groonga/Hash.html:49(a) -#: doc/reference/en/Groonga/Array.html:49(a) -#: doc/reference/en/Groonga/Encoding.html:49(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:49(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:49(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:49(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:49(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:49(a) -#: doc/reference/en/Groonga/TableCursor.html:49(a) -#: doc/reference/en/Groonga/Procedure.html:49(a) -#: doc/reference/en/Groonga/CASError.html:49(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:49(a) -#: doc/reference/en/Groonga/Operator.html:49(a) -#: doc/reference/en/Groonga/Pagination.html:49(a) -#: doc/reference/en/Groonga/InputOutputError.html:49(a) -#: doc/reference/en/Groonga/ViewRecord.html:49(a) -#: doc/reference/en/Groonga/Type.html:49(a) -#: doc/reference/en/Groonga/OperationTimeout.html:49(a) -#: doc/reference/en/Groonga/Database.html:49(a) -#: doc/reference/en/Groonga/InvalidArgument.html:49(a) -#: doc/reference/en/Groonga/Command.html:49(a) -#: doc/reference/en/Groonga/SyntaxError.html:49(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:49(a) -#: doc/reference/en/Groonga/StackOverFlow.html:49(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:49(a) -#: doc/reference/en/Groonga/SchemaDumper.html:49(a) -#: doc/reference/en/Groonga/Object.html:49(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:49(a) -#: doc/reference/en/Groonga/HashCursor.html:49(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:49(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:49(a) -#: doc/reference/en/Groonga/RangeError.html:49(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:49(a) -#: doc/reference/en/Groonga/FileCorrupt.html:49(a) -#: doc/reference/en/Groonga/Record.html:49(a) -#: doc/reference/en/Groonga/BadAddress.html:49(a) -#: doc/reference/en/Groonga/ExecFormatError.html:49(a) -#: doc/reference/en/Groonga/View.html:49(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:49(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:49(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:49(a) -#: doc/reference/en/Groonga/ZLibError.html:49(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:49(a) -#: doc/reference/en/Groonga/NotSocket.html:49(a) -#: doc/reference/en/Groonga/QueryLog.html:49(a) -#: doc/reference/en/Groonga/TokenizerError.html:49(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:49(a) -#: doc/reference/en/Groonga/Column.html:49(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:49(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:49(a) -#: doc/reference/en/Groonga/NotADirectory.html:49(a) -#: doc/reference/en/Groonga/Closed.html:49(a) -#: doc/reference/en/Groonga/ResourceBusy.html:49(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:49(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:49(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:49(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:49(a) -#: doc/reference/en/Groonga/PermissionDenied.html:49(a) -#: doc/reference/en/Groonga/IndexCursor.html:49(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:49(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:49(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:49(a) -#: doc/reference/en/Groonga/InvalidFormat.html:49(a) -#: doc/reference/en/Groonga/Command/Builder.html:49(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:49(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:49(a) -#: doc/reference/en/Groonga/Command/Select.html:49(a) -#: doc/reference/en/Groonga/Posting.html:49(a) -#: doc/reference/en/Groonga/RetryMax.html:49(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:49(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:49(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:49(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:49(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:49(a) -#: doc/reference/en/Groonga/NoBuffer.html:49(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:49(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:49(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:49(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:49(a) -#: doc/reference/en/Groonga/Table.html:49(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:49(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:49(a) -#: doc/reference/en/Groonga/TooSmallPage.html:49(a) -#: doc/reference/en/Groonga/Plugin.html:49(a) -#: doc/reference/en/Groonga/TooLargePage.html:49(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:49(a) -#: doc/reference/en/Groonga/Variable.html:49(a) -#: doc/reference/en/Groonga/GrntestLog.html:49(a) -#: doc/reference/en/Groonga/IsADirectory.html:49(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:49(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:49(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:49(a) -#: doc/reference/en/Groonga/FileTooLarge.html:49(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:49(a) -#: doc/reference/en/Groonga/LZOError.html:49(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:49(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:49(a) -#: doc/reference/en/Groonga/ArrayCursor.html:49(a) -#: doc/reference/en/Groonga/ViewAccessor.html:49(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:49(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:49(a) -#: doc/reference/en/index.html:47(a) -#: doc/reference/en/top-level-namespace.html:49(a) -#: doc/reference/en/method_list.html:28(h1) -#: doc/reference/en/Grn/Table.html:49(a) doc/reference/en/_index.html:45(a) -#: doc/reference/en/file.tutorial.html:47(a) -msgid "Method List" -msgstr "???????" - #: doc/reference/en/file.news.html:49(a) +#: doc/reference/en/methods_list.html:28(h1) #: doc/reference/en/file.README.html:49(a) doc/reference/en/Groonga.html:51(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:51(a) #: doc/reference/en/Groonga/Logger.html:51(a) #: doc/reference/en/Groonga/TooManyLinks.html:51(a) #: doc/reference/en/Groonga/OperationNotPermitted.html:51(a) @@ -2072,6 +1595,7 @@ msgstr "???????" #: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:51(a) #: doc/reference/en/Groonga/InvalidSeek.html:51(a) #: doc/reference/en/Groonga/ViewCursor.html:51(a) +#: doc/reference/en/Groonga/ObjectClosed.html:51(a) #: doc/reference/en/Groonga/Snippet.html:51(a) #: doc/reference/en/Groonga/ImproperLink.html:51(a) #: doc/reference/en/Groonga/TableDumper.html:51(a) @@ -2088,10 +1612,10 @@ msgstr "???????" #: doc/reference/en/Groonga/FixSizeColumn.html:51(a) #: doc/reference/en/Groonga/TooSmallPageSize.html:51(a) #: doc/reference/en/Groonga/TableCursor.html:51(a) -#: doc/reference/en/Groonga/Procedure.html:51(a) +#: doc/reference/en/Groonga/Procedure.html:49(a) #: doc/reference/en/Groonga/CASError.html:51(a) #: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:51(a) -#: doc/reference/en/Groonga/Operator.html:51(a) +#: doc/reference/en/Groonga/Operator.html:49(a) #: doc/reference/en/Groonga/Pagination.html:51(a) #: doc/reference/en/Groonga/InputOutputError.html:51(a) #: doc/reference/en/Groonga/ViewRecord.html:51(a) @@ -2119,7 +1643,7 @@ msgstr "???????" #: doc/reference/en/Groonga/View.html:51(a) #: doc/reference/en/Groonga/FilenameTooLong.html:51(a) #: doc/reference/en/Groonga/DatabaseDumper.html:51(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:51(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:49(a) #: doc/reference/en/Groonga/ZLibError.html:51(a) #: doc/reference/en/Groonga/TooLargeOffset.html:51(a) #: doc/reference/en/Groonga/NotSocket.html:51(a) @@ -2137,7 +1661,7 @@ msgstr "???????" #: doc/reference/en/Groonga/ObjectCorrupt.html:51(a) #: doc/reference/en/Groonga/TooManyOpenFiles.html:51(a) #: doc/reference/en/Groonga/PermissionDenied.html:51(a) -#: doc/reference/en/Groonga/IndexCursor.html:51(a) +#: doc/reference/en/Groonga/IndexCursor.html:49(a) #: doc/reference/en/Groonga/OperationNotSupported.html:51(a) #: doc/reference/en/Groonga/InappropriateIOControlOperation.html:51(a) #: doc/reference/en/Groonga/TableCursor/KeySupport.html:51(a) @@ -2154,6 +1678,7 @@ msgstr "???????" #: doc/reference/en/Groonga/DirectoryNotEmpty.html:51(a) #: doc/reference/en/Groonga/AddressIsInUse.html:51(a) #: doc/reference/en/Groonga/NoBuffer.html:51(a) +#: doc/reference/en/Groonga/IndexColumn.html:51(a) #: doc/reference/en/Groonga/QueryLog/Parser.html:51(a) #: doc/reference/en/Groonga/QueryLog/Command.html:51(a) #: doc/reference/en/Groonga/QueryLog/Statistic.html:51(a) @@ -2187,101 +1712,329 @@ msgstr "???????" #: doc/reference/en/Groonga/Table/KeySupport.html:51(a) #: doc/reference/en/index.html:49(a) #: doc/reference/en/top-level-namespace.html:51(a) -#: doc/reference/en/Grn/Table.html:51(a) doc/reference/en/_index.html:47(a) -#: doc/reference/en/file_list.html:28(h1) +#: doc/reference/en/method_list.html:28(h1) +#: doc/reference/en/Grn/Table.html:49(a) doc/reference/en/_index.html:44(a) #: doc/reference/en/file.tutorial.html:49(a) +msgid "Method List" +msgstr "???????" + +#: doc/reference/en/file.news.html:54(a) +#: doc/reference/en/file.README.html:54(a) doc/reference/en/Groonga.html:56(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:56(a) +#: doc/reference/en/Groonga/Logger.html:56(a) +#: doc/reference/en/Groonga/TooManyLinks.html:56(a) +#: doc/reference/en/Groonga/OperationNotPermitted.html:56(a) +#: doc/reference/en/Groonga/BadFileDescriptor.html:56(a) +#: doc/reference/en/Groonga/Accessor.html:56(a) +#: doc/reference/en/Groonga/FileExists.html:56(a) +#: doc/reference/en/Groonga/EncodingSupport.html:56(a) +#: doc/reference/en/Groonga/Schema/Error.html:56(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:56(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:56(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:56(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:56(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:56(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:56(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:56(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:56(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:56(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:56(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:56(a) +#: doc/reference/en/Groonga/BrokenPipe.html:56(a) +#: doc/reference/en/Groonga/Context.html:56(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:56(a) +#: doc/reference/en/Groonga/Schema.html:56(a) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:56(a) +#: doc/reference/en/Groonga/ResultTooLarge.html:56(a) +#: doc/reference/en/Groonga/DomainError.html:56(a) +#: doc/reference/en/Groonga/UnknownError.html:56(a) +#: doc/reference/en/Groonga/Expression.html:56(a) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:56(a) +#: doc/reference/en/Groonga/Error.html:56(a) +#: doc/reference/en/Groonga/EndOfData.html:56(a) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:56(a) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:56(a) +#: doc/reference/en/Groonga/InvalidSeek.html:56(a) +#: doc/reference/en/Groonga/ViewCursor.html:56(a) +#: doc/reference/en/Groonga/ObjectClosed.html:56(a) +#: doc/reference/en/Groonga/Snippet.html:56(a) +#: doc/reference/en/Groonga/ImproperLink.html:56(a) +#: doc/reference/en/Groonga/TableDumper.html:56(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:56(a) +#: doc/reference/en/Groonga/TooSmallLimit.html:56(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:56(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:56(a) +#: doc/reference/en/Groonga/Hash.html:56(a) +#: doc/reference/en/Groonga/Array.html:56(a) +#: doc/reference/en/Groonga/Encoding.html:56(a) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:56(a) +#: doc/reference/en/Groonga/ConnectionRefused.html:56(a) +#: doc/reference/en/Groonga/OperationWouldBlock.html:56(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:56(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:56(a) +#: doc/reference/en/Groonga/TableCursor.html:56(a) +#: doc/reference/en/Groonga/Procedure.html:51(a) +#: doc/reference/en/Groonga/CASError.html:56(a) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:56(a) +#: doc/reference/en/Groonga/Operator.html:51(a) +#: doc/reference/en/Groonga/Pagination.html:56(a) +#: doc/reference/en/Groonga/InputOutputError.html:56(a) +#: doc/reference/en/Groonga/ViewRecord.html:56(a) +#: doc/reference/en/Groonga/Type.html:56(a) +#: doc/reference/en/Groonga/OperationTimeout.html:56(a) +#: doc/reference/en/Groonga/Database.html:56(a) +#: doc/reference/en/Groonga/InvalidArgument.html:56(a) +#: doc/reference/en/Groonga/Command.html:56(a) +#: doc/reference/en/Groonga/SyntaxError.html:56(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:56(a) +#: doc/reference/en/Groonga/StackOverFlow.html:56(a) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:56(a) +#: doc/reference/en/Groonga/SchemaDumper.html:56(a) +#: doc/reference/en/Groonga/Object.html:56(a) +#: doc/reference/en/Groonga/NoSuchProcess.html:56(a) +#: doc/reference/en/Groonga/HashCursor.html:56(a) +#: doc/reference/en/Groonga/TooSmallOffset.html:56(a) +#: doc/reference/en/Groonga/NoLocksAvailable.html:56(a) +#: doc/reference/en/Groonga/RangeError.html:56(a) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:56(a) +#: doc/reference/en/Groonga/FileCorrupt.html:56(a) +#: doc/reference/en/Groonga/Record.html:56(a) +#: doc/reference/en/Groonga/BadAddress.html:56(a) +#: doc/reference/en/Groonga/ExecFormatError.html:56(a) +#: doc/reference/en/Groonga/View.html:56(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:56(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:56(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:51(a) +#: doc/reference/en/Groonga/ZLibError.html:56(a) +#: doc/reference/en/Groonga/TooLargeOffset.html:56(a) +#: doc/reference/en/Groonga/NotSocket.html:56(a) +#: doc/reference/en/Groonga/QueryLog.html:56(a) +#: doc/reference/en/Groonga/TokenizerError.html:56(a) +#: doc/reference/en/Groonga/NoSuchDevice.html:56(a) +#: doc/reference/en/Groonga/Column.html:56(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:56(a) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:56(a) +#: doc/reference/en/Groonga/NotADirectory.html:56(a) +#: doc/reference/en/Groonga/Closed.html:56(a) +#: doc/reference/en/Groonga/ResourceBusy.html:56(a) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:56(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:56(a) +#: doc/reference/en/Groonga/ObjectCorrupt.html:56(a) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:56(a) +#: doc/reference/en/Groonga/PermissionDenied.html:56(a) +#: doc/reference/en/Groonga/IndexCursor.html:51(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:56(a) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:56(a) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:56(a) +#: doc/reference/en/Groonga/InvalidFormat.html:56(a) +#: doc/reference/en/Groonga/Command/Builder.html:56(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:56(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:56(a) +#: doc/reference/en/Groonga/Command/Select.html:56(a) +#: doc/reference/en/Groonga/Posting.html:56(a) +#: doc/reference/en/Groonga/RetryMax.html:56(a) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:56(a) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:56(a) +#: doc/reference/en/Groonga/NetworkIsDown.html:56(a) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:56(a) +#: doc/reference/en/Groonga/AddressIsInUse.html:56(a) +#: doc/reference/en/Groonga/NoBuffer.html:56(a) +#: doc/reference/en/Groonga/IndexColumn.html:56(a) +#: doc/reference/en/Groonga/QueryLog/Parser.html:56(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:56(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:56(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:56(a) +#: doc/reference/en/Groonga/Table.html:56(a) +#: doc/reference/en/Groonga/SocketNotInitialized.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:56(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:56(a) +#: doc/reference/en/Groonga/TooSmallPage.html:56(a) +#: doc/reference/en/Groonga/Plugin.html:56(a) +#: doc/reference/en/Groonga/TooLargePage.html:56(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:56(a) +#: doc/reference/en/Groonga/Variable.html:56(a) +#: doc/reference/en/Groonga/GrntestLog.html:56(a) +#: doc/reference/en/Groonga/IsADirectory.html:56(a) +#: doc/reference/en/Groonga/IllegalByteSequence.html:56(a) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:56(a) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:56(a) +#: doc/reference/en/Groonga/FileTooLarge.html:56(a) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:56(a) +#: doc/reference/en/Groonga/LZOError.html:56(a) +#: doc/reference/en/Groonga/NotEnoughSpace.html:56(a) +#: doc/reference/en/Groonga/NoChildProcesses.html:56(a) +#: doc/reference/en/Groonga/ArrayCursor.html:56(a) +#: doc/reference/en/Groonga/ViewAccessor.html:56(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:56(a) +#: doc/reference/en/Groonga/Table/KeySupport.html:56(a) +#: doc/reference/en/index.html:54(a) +#: doc/reference/en/top-level-namespace.html:56(a) +#: doc/reference/en/Grn/Table.html:51(a) doc/reference/en/_index.html:49(a) +#: doc/reference/en/file_list.html:28(h1) +#: doc/reference/en/file.tutorial.html:54(a) msgid "File List" msgstr "???????" -#: doc/reference/en/file.news.html:57(span) +#: doc/reference/en/file.news.html:64(span) msgid "NEWS" msgstr "????" -#: doc/reference/en/file.news.html:58(h2) -msgid "2.0.1: 2012-03-29" +#: doc/reference/en/file.news.html:65(h2) +msgid "2.0.3: 2012-05-02" +msgstr "" + +#: doc/reference/en/file.news.html:66(h3) +#: doc/reference/en/file.news.html:88(h3) +#: doc/reference/en/file.news.html:98(h3) +#: doc/reference/en/file.news.html:116(h3) +#: doc/reference/en/file.news.html:134(h3) +#: doc/reference/en/file.news.html:166(h3) +#: doc/reference/en/file.news.html:175(h3) +#: doc/reference/en/file.news.html:184(h3) +#: doc/reference/en/file.news.html:199(h3) +#: doc/reference/en/file.news.html:214(h3) +#: doc/reference/en/file.news.html:230(h3) +#: doc/reference/en/file.news.html:253(h3) +#: doc/reference/en/file.news.html:281(h3) +#: doc/reference/en/file.news.html:298(h3) +#: doc/reference/en/file.news.html:304(h3) +#: doc/reference/en/file.news.html:350(h3) +#: doc/reference/en/file.news.html:369(h3) +#: doc/reference/en/file.news.html:379(h3) +msgid "Improvements" +msgstr "??" + +#: doc/reference/en/file.news.html:68(li) +#, fuzzy +msgid "Supported groonga 2.0.2." +msgstr "groonga 2.0.1???" + +#: doc/reference/en/file.news.html:69(li) +#, fuzzy +msgid "" +"Groonga::Table#each supports options that are same as Groonga::" +"Table#open_cursor?s one." +msgstr "Groonga::Database#each????????????????" + +#: doc/reference/en/file.news.html:71(code) +msgid "--order-by=id" +msgstr "" + +#: doc/reference/en/file.news.html:71(li) +msgid "" +"[grndump] added option. With this option, dumped records " +"are sorted by ID instead of key. You can restore records without ID change " +"if you don?t delete any records. [#1341]" +msgstr "" + +#: doc/reference/en/file.news.html:74(li) +msgid "" +"Supported building on Windows with RubyInstaller for Windows with DevKit " +"[GitHub#6] [Patch by @ongaeshi]" +msgstr "" + +#: doc/reference/en/file.news.html:76(code) +msgid "table.select {|record| record.column.similar_search(text)}" +msgstr "" + +#: doc/reference/en/file.news.html:76(li) +msgid "Supported similar search by syntax." msgstr "" -#: doc/reference/en/file.news.html:59(h3) -#: doc/reference/en/file.news.html:69(h3) -#: doc/reference/en/file.news.html:87(h3) -#: doc/reference/en/file.news.html:105(h3) -#: doc/reference/en/file.news.html:137(h3) -#: doc/reference/en/file.news.html:146(h3) -#: doc/reference/en/file.news.html:155(h3) -#: doc/reference/en/file.news.html:170(h3) -#: doc/reference/en/file.news.html:185(h3) -#: doc/reference/en/file.news.html:201(h3) +#: doc/reference/en/file.news.html:79(h3) +#: doc/reference/en/file.news.html:93(h3) +#: doc/reference/en/file.news.html:103(h3) +#: doc/reference/en/file.news.html:156(h3) +#: doc/reference/en/file.news.html:161(h3) +#: doc/reference/en/file.news.html:179(h3) +#: doc/reference/en/file.news.html:192(h3) +#: doc/reference/en/file.news.html:208(h3) +#: doc/reference/en/file.news.html:218(h3) #: doc/reference/en/file.news.html:224(h3) -#: doc/reference/en/file.news.html:252(h3) -#: doc/reference/en/file.news.html:269(h3) +#: doc/reference/en/file.news.html:242(h3) +#: doc/reference/en/file.news.html:339(h3) +#: doc/reference/en/file.news.html:354(h3) +#: doc/reference/en/file.news.html:359(h3) +#: doc/reference/en/file.news.html:374(h3) +#: doc/reference/en/file.news.html:430(h3) +#: doc/reference/en/file.news.html:436(h3) +msgid "Fixes" +msgstr "??" + +#: doc/reference/en/file.news.html:81(li) +#, fuzzy +msgid "Fixed a GC related crach bug." +msgstr "Groonga::Snippet?????GC????????????????" + +#: doc/reference/en/file.news.html:83(h3) +#: doc/reference/en/file.news.html:110(h3) +#: doc/reference/en/file.news.html:129(h3) +#: doc/reference/en/file.news.html:248(h3) #: doc/reference/en/file.news.html:275(h3) -#: doc/reference/en/file.news.html:321(h3) -#: doc/reference/en/file.news.html:340(h3) -#: doc/reference/en/file.news.html:350(h3) -msgid "Improvements" -msgstr "??" +#: doc/reference/en/file.news.html:345(h3) +#: doc/reference/en/file.news.html:364(h3) +#: doc/reference/en/file.news.html:440(h3) +#: doc/reference/en/file.news.html:555(h3) +#: doc/reference/en/file.README.html:109(h2) +#: doc/reference/en/index.html:109(h2) +msgid "Thanks" +msgstr "??" + +#: doc/reference/en/file.news.html:85(li) +#, fuzzy +msgid "@ongaeshi" +msgstr "ongaeshi??" -#: doc/reference/en/file.news.html:61(li) +#: doc/reference/en/file.news.html:87(h2) +msgid "2.0.2: 2012-03-29" +msgstr "" + +#: doc/reference/en/file.news.html:90(li) msgid "Supported groonga 2.0.1." msgstr "groonga 2.0.1???" -#: doc/reference/en/file.news.html:62(a) +#: doc/reference/en/file.news.html:91(a) msgid "logos" msgstr "??" -#: doc/reference/en/file.news.html:62(li) +#: doc/reference/en/file.news.html:91(li) msgid "Added ." msgstr "???" -#: doc/reference/en/file.news.html:64(h3) -#: doc/reference/en/file.news.html:74(h3) -#: doc/reference/en/file.news.html:127(h3) -#: doc/reference/en/file.news.html:132(h3) -#: doc/reference/en/file.news.html:150(h3) -#: doc/reference/en/file.news.html:163(h3) -#: doc/reference/en/file.news.html:179(h3) -#: doc/reference/en/file.news.html:189(h3) -#: doc/reference/en/file.news.html:195(h3) -#: doc/reference/en/file.news.html:213(h3) -#: doc/reference/en/file.news.html:310(h3) -#: doc/reference/en/file.news.html:325(h3) -#: doc/reference/en/file.news.html:330(h3) -#: doc/reference/en/file.news.html:345(h3) -#: doc/reference/en/file.news.html:401(h3) -#: doc/reference/en/file.news.html:407(h3) -msgid "Fixes" -msgstr "??" - -#: doc/reference/en/file.news.html:66(li) +#: doc/reference/en/file.news.html:95(li) msgid "Fixed a Groonga::Snipet related crach bug caused by GC." msgstr "Groonga::Snippet?????GC????????????????" -#: doc/reference/en/file.news.html:68(h2) +#: doc/reference/en/file.news.html:97(h2) msgid "2.0.0: 2012-03-22" msgstr "" -#: doc/reference/en/file.news.html:71(li) +#: doc/reference/en/file.news.html:100(li) msgid "Supported groonga 2.0.0." msgstr "groonga 2.0.0???" -#: doc/reference/en/file.news.html:72(li) +#: doc/reference/en/file.news.html:101(li) msgid "[gem][windows] Removed mswin packages." msgstr "[gem][windows] mswin?????????????" -#: doc/reference/en/file.news.html:76(li) +#: doc/reference/en/file.news.html:105(li) msgid "[test] Fixed version test failure. [GitHub#4] [Reported by @takkanm]" msgstr "" "[test] ?????????????????? [GitHub#4] [@takkanm?????]" -#: doc/reference/en/file.news.html:77(li) +#: doc/reference/en/file.news.html:106(li) msgid "Fixed a Groonga::Expression related crach bug caused by GC." msgstr "Groonga::Expression?????GC????????????????" -#: doc/reference/en/file.news.html:78(span) +#: doc/reference/en/file.news.html:107(span) msgid "HTML" msgstr "" -#: doc/reference/en/file.news.html:78(li) +#: doc/reference/en/file.news.html:107(li) msgid "" "[doc] Fixed broken output. [groonga-dev,00699] [Reported by " "Hirano]" @@ -2289,85 +2042,72 @@ msgstr "" "[doc] ??????????? [groonga-dev,00699] [?????" "??]" -#: doc/reference/en/file.news.html:81(h3) -#: doc/reference/en/file.news.html:100(h3) -#: doc/reference/en/file.news.html:219(h3) -#: doc/reference/en/file.news.html:246(h3) -#: doc/reference/en/file.news.html:316(h3) -#: doc/reference/en/file.news.html:335(h3) -#: doc/reference/en/file.news.html:411(h3) -#: doc/reference/en/file.news.html:526(h3) -#: doc/reference/en/file.README.html:102(h2) -#: doc/reference/en/index.html:102(h2) -msgid "Thanks" -msgstr "??" - -#: doc/reference/en/file.news.html:83(li) +#: doc/reference/en/file.news.html:112(li) msgid "@takkanm" msgstr "@takkanm??" -#: doc/reference/en/file.news.html:84(li) +#: doc/reference/en/file.news.html:113(li) msgid "Hirano" msgstr "????" -#: doc/reference/en/file.news.html:86(h2) +#: doc/reference/en/file.news.html:115(h2) msgid "1.3.1: 2012-01-29" msgstr "" -#: doc/reference/en/file.news.html:89(li) +#: doc/reference/en/file.news.html:118(li) msgid "Supported groonga 1.3.0." msgstr "groonga 1.3.0???" -#: doc/reference/en/file.news.html:90(li) +#: doc/reference/en/file.news.html:119(li) msgid "[schema] Supported Int8, Int16, UInt8 and UInt16." msgstr "[schema] Int8?Int16?UInt8?UInt16????" -#: doc/reference/en/file.news.html:91(li) +#: doc/reference/en/file.news.html:120(li) msgid "[schema] Supported TokyoGeoPoint and WGS84GeoPoint." msgstr "[schema] TokyoGeoPoint?WGS84GeoPoint????" -#: doc/reference/en/file.news.html:92(li) +#: doc/reference/en/file.news.html:121(li) msgid "" "[schema][dumper] Supported Boolean and more built-in types. [Reported by " "@mashiro]" msgstr "" "[schema][dumper] Boolean????????????? [@mashiro?????]" -#: doc/reference/en/file.news.html:94(li) +#: doc/reference/en/file.news.html:123(li) msgid "[schema] Supported type object as column type. [#1002]" msgstr "" "[schema] ???????????????????????????? [#1002]" -#: doc/reference/en/file.news.html:95(li) +#: doc/reference/en/file.news.html:124(li) msgid "Added Groonga::VariableSizeColumn#compressed?. [#1004]" msgstr "Groonga::VariableSizeColumn#compressed????? [#1004]" -#: doc/reference/en/file.news.html:96(li) +#: doc/reference/en/file.news.html:125(li) msgid "Added Groonga::Record#score=." msgstr "Groonga::Record#score=????" -#: doc/reference/en/file.news.html:97(li) +#: doc/reference/en/file.news.html:126(li) msgid "Improve performance for encoded string." msgstr "?????????????????????????????" -#: doc/reference/en/file.news.html:98(li) +#: doc/reference/en/file.news.html:127(li) msgid "Added Groonga::Command::Builder.escape_value." msgstr "Groonga::Command::Builder.escape_value????" -#: doc/reference/en/file.news.html:102(li) +#: doc/reference/en/file.news.html:131(li) msgid "@mashiro" msgstr "@mashiro??" -#: doc/reference/en/file.news.html:104(h2) +#: doc/reference/en/file.news.html:133(h2) msgid "1.3.0: 2011-11-29" msgstr "" -#: doc/reference/en/file.news.html:107(li) +#: doc/reference/en/file.news.html:136(li) msgid "[schema] Remove also needless db.tables/ directory if it is empty." msgstr "" "[schema] db.tables/?????????????????????????????" -#: doc/reference/en/file.news.html:108(li) +#: doc/reference/en/file.news.html:137(li) msgid "" "[schema] Remove also needless db.tables/table.columns/ directory if it is " "empty." @@ -2375,113 +2115,113 @@ msgstr "" "[schema] db.tables/table.columns/??????????????????????" "???????" -#: doc/reference/en/file.news.html:109(li) +#: doc/reference/en/file.news.html:138(li) msgid "Added query log parser." msgstr "????????????" -#: doc/reference/en/file.news.html:110(li) +#: doc/reference/en/file.news.html:139(li) msgid "Added groonga-query-log-extract command." msgstr "groonga-query-log-extract????????" -#: doc/reference/en/file.news.html:111(li) +#: doc/reference/en/file.news.html:140(li) msgid "Added grntest log analyzer." msgstr "grntest?????????????????" -#: doc/reference/en/file.news.html:112(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) +#: doc/reference/en/file.news.html:141(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:293(span) msgid "JSON" msgstr "" -#: doc/reference/en/file.news.html:112(li) +#: doc/reference/en/file.news.html:141(li) msgid "Added gem dependency." msgstr "gem??????????" -#: doc/reference/en/file.news.html:113(li) +#: doc/reference/en/file.news.html:142(li) msgid "Supported groonga 1.2.8." msgstr "groonga 1.2.8???" -#: doc/reference/en/file.news.html:114(li) +#: doc/reference/en/file.news.html:143(li) msgid "Dropped groonga 1.2.7 or former support." msgstr "" -#: doc/reference/en/file.news.html:115(li) +#: doc/reference/en/file.news.html:144(li) msgid "Added Groonga::Table#defrag." msgstr "Groonga::Table#defrag????" -#: doc/reference/en/file.news.html:116(li) +#: doc/reference/en/file.news.html:145(li) msgid "Added Groonga::Table#rename." msgstr "Groonga::Table#rename????" -#: doc/reference/en/file.news.html:117(li) +#: doc/reference/en/file.news.html:146(li) msgid "Added Groonga::Column#rename." msgstr "Groonga::Column#rename????" -#: doc/reference/en/file.news.html:118(li) +#: doc/reference/en/file.news.html:147(li) msgid "Added Groonga::DoubleArrayTrie." msgstr "Groonga::DoubleArrayTrie????" -#: doc/reference/en/file.news.html:119(li) +#: doc/reference/en/file.news.html:148(li) msgid "[schema] Supported table rename." msgstr "[schema] ?????????????" -#: doc/reference/en/file.news.html:120(li) +#: doc/reference/en/file.news.html:149(li) msgid "[schema] Supported column rename." msgstr "[schema] ????????????" -#: doc/reference/en/file.news.html:121(li) +#: doc/reference/en/file.news.html:150(li) msgid "[schema] Supported double array trie." msgstr "[schema] ????????????" -#: doc/reference/en/file.news.html:123(h3) -#: doc/reference/en/file.news.html:206(h3) -#: doc/reference/en/file.news.html:241(h3) -#: doc/reference/en/file.news.html:305(h3) -#: doc/reference/en/file.news.html:388(h2) +#: doc/reference/en/file.news.html:152(h3) +#: doc/reference/en/file.news.html:235(h3) +#: doc/reference/en/file.news.html:270(h3) +#: doc/reference/en/file.news.html:334(h3) +#: doc/reference/en/file.news.html:417(h2) msgid "Changes" msgstr "??" -#: doc/reference/en/file.news.html:125(li) +#: doc/reference/en/file.news.html:154(li) msgid "[schema] Don?t use named path by default for location aware DB." msgstr "" "[schema] DB?????????????????????????????????" "?????????????????" -#: doc/reference/en/file.news.html:129(li) -#: doc/reference/en/file.news.html:404(li) +#: doc/reference/en/file.news.html:158(li) +#: doc/reference/en/file.news.html:433(li) msgid "Fixed a crash problem on GC." msgstr "GC???????????????" -#: doc/reference/en/file.news.html:131(h2) +#: doc/reference/en/file.news.html:160(h2) msgid "1.2.9: 2011-09-16" msgstr "" -#: doc/reference/en/file.news.html:134(li) +#: doc/reference/en/file.news.html:163(li) msgid "deleted unneed object files." msgstr "????????????????????????" -#: doc/reference/en/file.news.html:136(h2) +#: doc/reference/en/file.news.html:165(h2) msgid "1.2.8: 2011-09-16" msgstr "" -#: doc/reference/en/file.news.html:139(li) +#: doc/reference/en/file.news.html:168(li) msgid "supported ?!=? expression for column in block of Groonga::Table#select." msgstr "" "Groonga::Table#select????????????\"!=\"????????????" "Groonga::Table#select???????????" -#: doc/reference/en/file.news.html:140(li) +#: doc/reference/en/file.news.html:169(li) msgid "accepted Hash like object as options." msgstr "?????????????????" -#: doc/reference/en/file.news.html:141(li) +#: doc/reference/en/file.news.html:170(li) msgid "supported vector in dump in Ruby syntax." msgstr "Ruby?????????????????????" -#: doc/reference/en/file.news.html:143(span) +#: doc/reference/en/file.news.html:172(span) msgid "NOTE" msgstr "" -#: doc/reference/en/file.news.html:142(li) +#: doc/reference/en/file.news.html:171(li) msgid "" "supported GRN_CTX_PER_DB environment variables. (: You " "should pay attention to use this variables.)" @@ -2489,134 +2229,134 @@ msgstr "" "????GRN_CTX_PER_DB???????????????????????????" "??????" -#: doc/reference/en/file.news.html:145(h2) +#: doc/reference/en/file.news.html:174(h2) msgid "1.2.7: 2011-08-29" msgstr "" -#: doc/reference/en/file.news.html:148(li) +#: doc/reference/en/file.news.html:177(li) msgid "Added Groonga::Snippet#close that frees resource." msgstr "?????????Groonga::Snippet#close????" -#: doc/reference/en/file.news.html:152(li) +#: doc/reference/en/file.news.html:181(li) msgid "Fixed build error on Ruby 1.8.7." msgstr "Ruby 1.8.7??????????????" -#: doc/reference/en/file.news.html:154(h2) +#: doc/reference/en/file.news.html:183(h2) msgid "1.2.6: 2011-08-29" msgstr "" -#: doc/reference/en/file.news.html:157(li) +#: doc/reference/en/file.news.html:186(li) msgid "Supported groonga 1.2.5." msgstr "groonga 1.2.5???" -#: doc/reference/en/file.news.html:158(li) +#: doc/reference/en/file.news.html:187(li) msgid "" "Added Groonga::Record#added? that returns true when the record is just added." msgstr "???????????????? Groonga::Record#added? ????" -#: doc/reference/en/file.news.html:159(li) +#: doc/reference/en/file.news.html:188(li) msgid "Added Groonga::VariableSizeColumn#defrag? that defrags the column." msgstr "?????????? Groonga::VariableSizeColumn#defrag? ????" -#: doc/reference/en/file.news.html:160(li) +#: doc/reference/en/file.news.html:189(li) msgid "" "Added Groonga::Database#defrag that defrags the all variable size columns." msgstr "" "????????????????????????? Groonga::Database#defrag " "????" -#: doc/reference/en/file.news.html:161(li) +#: doc/reference/en/file.news.html:190(li) msgid "Supported column name specification by symbol." msgstr "????????????????" -#: doc/reference/en/file.news.html:165(li) +#: doc/reference/en/file.news.html:194(li) msgid "Fixed install *.rb failure by gem install." msgstr "gem install??*.rb??????????????????" -#: doc/reference/en/file.news.html:166(li) +#: doc/reference/en/file.news.html:195(li) msgid "Fixed some memory leaks." msgstr "??????????" -#: doc/reference/en/file.news.html:167(li) +#: doc/reference/en/file.news.html:196(li) msgid "Fixed crash bug on exit." msgstr "?????????????????" -#: doc/reference/en/file.news.html:169(h2) +#: doc/reference/en/file.news.html:198(h2) msgid "1.2.5: 2011-08-05" msgstr "" -#: doc/reference/en/file.news.html:172(li) +#: doc/reference/en/file.news.html:201(li) msgid "Re-supported tar.gz distribution." msgstr "tar.gz????????????????" -#: doc/reference/en/file.news.html:173(li) +#: doc/reference/en/file.news.html:202(li) msgid "Added Groonga::Context#close." msgstr "Groonga::Context#close????" -#: doc/reference/en/file.news.html:174(li) +#: doc/reference/en/file.news.html:203(li) msgid "Added Groonga::Context#closed?." msgstr "Groonga::Context#closed?????" -#: doc/reference/en/file.news.html:175(li) +#: doc/reference/en/file.news.html:204(li) msgid "Deprecated Groonga::ObjectClosed. Use Groonga::Closed instead." msgstr "" "Groonga::ObjectClosed????????????Groonga::Closed??????" -#: doc/reference/en/file.news.html:176(li) +#: doc/reference/en/file.news.html:205(li) msgid "grndump: Added ?exclude-table option that specifies not dumped tables." msgstr "" "grndump: ???????????????--exclude-table?????????" -#: doc/reference/en/file.news.html:177(li) +#: doc/reference/en/file.news.html:206(li) msgid "dump: Removed path equality check." msgstr "dump: ???????????????????" -#: doc/reference/en/file.news.html:181(li) +#: doc/reference/en/file.news.html:210(li) msgid "dump: Fixed wrong index table type." msgstr "dump: ??????????????????????????" -#: doc/reference/en/file.news.html:182(li) -#: doc/reference/en/file.news.html:191(li) +#: doc/reference/en/file.news.html:211(li) +#: doc/reference/en/file.news.html:220(li) msgid "Re-supported auto groonga install." msgstr "groonga????????????????" -#: doc/reference/en/file.news.html:184(h2) +#: doc/reference/en/file.news.html:213(h2) msgid "1.2.4: 2011-06-29" msgstr "" -#: doc/reference/en/file.news.html:187(li) +#: doc/reference/en/file.news.html:216(li) msgid "Supported groonga 1.2.3." msgstr "groonga 1.2.3???" -#: doc/reference/en/file.news.html:192(li) +#: doc/reference/en/file.news.html:221(li) msgid "Added missing pkg-config gem dependency." msgstr "pkg-config gem??????????" -#: doc/reference/en/file.news.html:194(h2) +#: doc/reference/en/file.news.html:223(h2) msgid "1.2.3: 2011-06-27" msgstr "" -#: doc/reference/en/file.news.html:197(li) +#: doc/reference/en/file.news.html:226(li) msgid "remove object files in gem packages." msgstr "gem????????????????????????(*.o)????" -#: doc/reference/en/file.news.html:198(li) +#: doc/reference/en/file.news.html:227(li) msgid "fix charactor corruption in reference." msgstr "???????????????????????" -#: doc/reference/en/file.news.html:200(h2) +#: doc/reference/en/file.news.html:229(h2) msgid "1.2.2: 2011-06-27" msgstr "" -#: doc/reference/en/file.news.html:203(li) +#: doc/reference/en/file.news.html:232(li) msgid "created ?Developers? page in English." msgstr "????????????????????" -#: doc/reference/en/file.news.html:204(li) +#: doc/reference/en/file.news.html:233(li) msgid "added description for tasks of ?html:publish? and ?publish?." msgstr "\"html:publish\"????\"publish\"???????????" -#: doc/reference/en/file.news.html:208(li) +#: doc/reference/en/file.news.html:237(li) msgid "" "Groonga::Record#attributes return same attributes object for duplicate " "records." @@ -2624,54 +2364,54 @@ msgstr "" "Groonga::Record#attributes?????????????????attributes??" "?????????????" -#: doc/reference/en/file.news.html:209(li) +#: doc/reference/en/file.news.html:238(li) msgid "added document for Groonga::Record#attributes." msgstr "Groonga::Record#attributes???????????" -#: doc/reference/en/file.news.html:210(li) +#: doc/reference/en/file.news.html:239(li) msgid "changed tool name in document page for creating document." msgstr "???????????????????????????????" -#: doc/reference/en/file.news.html:211(li) +#: doc/reference/en/file.news.html:240(li) msgid "moved NEWS*.rdoc and tutorial.texttile to doc/text/." msgstr "NEWS*.rdoc?tutorial.texttile???????doc/text/????" -#: doc/reference/en/file.news.html:215(li) +#: doc/reference/en/file.news.html:244(li) msgid "fixed the tutorial path in index page." msgstr "?????????????????????????????????" -#: doc/reference/en/file.news.html:216(li) +#: doc/reference/en/file.news.html:245(li) msgid "fixed the path of tutorial in index page in English." msgstr "" "????????????????????????????????????" -#: doc/reference/en/file.news.html:217(span) -#: doc/reference/en/file.README.html:67(span) -#: doc/reference/en/index.html:67(span) +#: doc/reference/en/file.news.html:246(span) +#: doc/reference/en/file.README.html:74(span) +#: doc/reference/en/index.html:74(span) msgid "URL" msgstr "" -#: doc/reference/en/file.news.html:217(li) +#: doc/reference/en/file.news.html:246(li) msgid "follow the groonga downlowd change. [mallowlabs]" msgstr "???groonga???????URL???? [mallowlabs]" -#: doc/reference/en/file.news.html:221(li) +#: doc/reference/en/file.news.html:250(li) msgid "mallowlabs" msgstr "mallowlabs??" -#: doc/reference/en/file.news.html:223(h2) +#: doc/reference/en/file.news.html:252(h2) msgid "1.2.1: 2011-06-07" msgstr "" -#: doc/reference/en/file.news.html:226(li) +#: doc/reference/en/file.news.html:255(li) msgid "added document of Groonga::Table#pagination." msgstr "Groonga::Table#pagination???????????" -#: doc/reference/en/file.news.html:227(li) +#: doc/reference/en/file.news.html:256(li) msgid "added grndump in package." msgstr "grndump??????????" -#: doc/reference/en/file.news.html:228(li) +#: doc/reference/en/file.news.html:257(li) msgid "" "corresponded recursive reference of Records by Groonga::Record#attributes. " "(experimental) [mooz]" @@ -2679,11 +2419,11 @@ msgstr "" "Groonga::Record#attributes?????????????????????????" "????????[mooz]" -#: doc/reference/en/file.news.html:230(li) +#: doc/reference/en/file.news.html:259(li) msgid "Groonga::Record#attributes supported data including _score." msgstr "Groonga::Record#attributes??_score????????????????" -#: doc/reference/en/file.news.html:231(li) +#: doc/reference/en/file.news.html:260(li) msgid "" "corresponded Windows for 64-bit. (but there?s not 64-bit ruby, so rroonga " "for 64-bit windows cannot run.)" @@ -2691,99 +2431,99 @@ msgstr "" "Windows?64bit?????????ruby?64bit????????????????" "??" -#: doc/reference/en/file.news.html:233(li) +#: doc/reference/en/file.news.html:262(li) msgid "added Groonga::Posting." msgstr "Groonga::Posting????" -#: doc/reference/en/file.news.html:234(li) +#: doc/reference/en/file.news.html:263(li) msgid "added :delimit, :token_delimiter for alias of TokenDelimit." msgstr "TokenDelimit???????:delimit, :token_delimiter????" -#: doc/reference/en/file.news.html:235(li) +#: doc/reference/en/file.news.html:264(li) msgid "Groonga::DatabaseDumper#dump corresponded lexicon table." msgstr "Groonga::DatabaseDumper#dump??lexicon????????????" -#: doc/reference/en/file.news.html:236(li) +#: doc/reference/en/file.news.html:265(li) msgid "Groonga::DatabaseDumper#dump corresponded data including plugin." msgstr "Groonga::DatabaseDumper#dump??????????????????" -#: doc/reference/en/file.news.html:237(li) +#: doc/reference/en/file.news.html:266(li) msgid "added Groonga::IndexColumn#open_cursor. [yoshihara]" msgstr "Groonga::IndexColumn#open_cursor????[yoshihara]" -#: doc/reference/en/file.news.html:238(li) +#: doc/reference/en/file.news.html:267(li) msgid "added Groonga::IndexCursor. [yoshihara]" msgstr "Groonga::IndexCursor????[yoshihara]" -#: doc/reference/en/file.news.html:239(li) +#: doc/reference/en/file.news.html:268(li) msgid "added Groonga::Object#builtin?. [yoshihara]" msgstr "Groonga::Object#builtin?????[yoshihara]" -#: doc/reference/en/file.news.html:243(li) +#: doc/reference/en/file.news.html:272(li) msgid "check existence of column before removing it." msgstr "?????????????????????????????????" -#: doc/reference/en/file.news.html:244(li) +#: doc/reference/en/file.news.html:273(li) msgid "removed grn expression document." msgstr "????????grn?????????" -#: doc/reference/en/file.news.html:248(li) +#: doc/reference/en/file.news.html:277(li) msgid "mooz" msgstr "mooz??" -#: doc/reference/en/file.news.html:249(li) +#: doc/reference/en/file.news.html:278(li) msgid "yoshihara" msgstr "yoshihara??" -#: doc/reference/en/file.news.html:251(h2) +#: doc/reference/en/file.news.html:280(h2) msgid "1.2.0: 2011-04-01" msgstr "" -#: doc/reference/en/file.news.html:254(li) +#: doc/reference/en/file.news.html:283(li) msgid "Supported groonga 1.2.0." msgstr "groonga 1.2.0???" -#: doc/reference/en/file.news.html:255(li) +#: doc/reference/en/file.news.html:284(li) msgid "Added Groonga::Accessor#local_name." msgstr "Groonga::Accessor#local_name????" -#: doc/reference/en/file.news.html:256(li) +#: doc/reference/en/file.news.html:285(li) msgid "Added Groonga::IndexColumn#with_section?." msgstr "Groonga::IndexColumn#with_section?????" -#: doc/reference/en/file.news.html:257(li) +#: doc/reference/en/file.news.html:286(li) msgid "Added Groonga::IndexColumn#with_weight?." msgstr "Groonga::IndexColumn#with_weight?????" -#: doc/reference/en/file.news.html:258(li) +#: doc/reference/en/file.news.html:287(li) msgid "Added Groonga::IndexColumn#with_position?." msgstr "Groonga::IndexColumn#with_position?????" -#: doc/reference/en/file.news.html:259(li) +#: doc/reference/en/file.news.html:288(li) msgid "Groonga::Schema.dump supported groonga command format dump." msgstr "Groonga::Schema.dump?groonga???????????????" -#: doc/reference/en/file.news.html:260(li) +#: doc/reference/en/file.news.html:289(li) msgid "Added grndump command." msgstr "grndump????" -#: doc/reference/en/file.news.html:261(li) +#: doc/reference/en/file.news.html:290(li) msgid "Groonga::Database#each supports order customize." msgstr "Groonga::Database#each????????????????" -#: doc/reference/en/file.news.html:262(li) +#: doc/reference/en/file.news.html:291(li) msgid "Added Groonga::Context#match_escalation_threshold." msgstr "Groonga::Context#match_escalation_threshold????" -#: doc/reference/en/file.news.html:263(li) +#: doc/reference/en/file.news.html:292(li) msgid "Added Groonga::Context#match_escalation_threshold=." msgstr "Groonga::Context#match_escalation_threshold=????" -#: doc/reference/en/file.news.html:264(li) +#: doc/reference/en/file.news.html:293(li) msgid "Improved error message." msgstr "????????????" -#: doc/reference/en/file.news.html:265(li) +#: doc/reference/en/file.news.html:294(li) msgid "" "Supported Rubyish name like :short_text instead of the official type name " "like ?ShortText? in Groonga::Schema." @@ -2791,27 +2531,27 @@ msgstr "" "Groonga::Schema?????\"ShortText\"?????????????:short_text?" "???Ruby???????????????" -#: doc/reference/en/file.news.html:268(h2) +#: doc/reference/en/file.news.html:297(h2) msgid "1.1.0: 2011-02-09" msgstr "" -#: doc/reference/en/file.news.html:271(li) +#: doc/reference/en/file.news.html:300(li) msgid "Supported groonga 1.1.0." msgstr "groonga 1.1.0???" -#: doc/reference/en/file.news.html:272(li) +#: doc/reference/en/file.news.html:301(li) msgid "Added Groonga::Plugin.register." msgstr "Groonga::Plugin.register????" -#: doc/reference/en/file.news.html:274(h2) +#: doc/reference/en/file.news.html:303(h2) msgid "1.0.9: 2011-01-29" msgstr "" -#: doc/reference/en/file.news.html:277(li) +#: doc/reference/en/file.news.html:306(li) msgid "Supported gem creation on Windows. [Patch by ongaeshi]" msgstr "Windows???gem?????? [ongaeshi????????]" -#: doc/reference/en/file.news.html:278(li) +#: doc/reference/en/file.news.html:307(li) msgid "" "Supported generated directory that is created by Groonga::Schema removal " "when table or column is removed." @@ -2819,19 +2559,19 @@ msgstr "" "Groonga::Schema???????????????????????????????" "??????" -#: doc/reference/en/file.news.html:280(li) +#: doc/reference/en/file.news.html:309(li) msgid "Added Groonga::Context#create_database." msgstr "Groonga::Context#create_database????" -#: doc/reference/en/file.news.html:281(li) +#: doc/reference/en/file.news.html:310(li) msgid "Added Groonga::Context#open_database." msgstr "Groonga::Context#open_database????" -#: doc/reference/en/file.news.html:282(li) +#: doc/reference/en/file.news.html:311(li) msgid "Added Groonga::Column#indexes." msgstr "Groonga::Column#indexes????" -#: doc/reference/en/file.news.html:283(li) +#: doc/reference/en/file.news.html:312(li) msgid "" "Supported a notation for specifying index column as match target in Groonga::" "Table#select: table.select do |record| record.match(?query?) do |" @@ -2839,35 +2579,35 @@ msgid "" "index(?Terms.description?) * 100) match_record.content end end" msgstr "" -#: doc/reference/en/file.news.html:292(li) +#: doc/reference/en/file.news.html:321(li) msgid "" "Supported prefix search in Groonga::Table#select: table.select do |record| " "record.name.prefix_search(?groo?) end" msgstr "" -#: doc/reference/en/file.news.html:296(li) +#: doc/reference/en/file.news.html:325(li) msgid "" "Supported suffix search in Groonga::Table#select: table.select do |record| " "record.name.suffix_search(?nga?) end" msgstr "" -#: doc/reference/en/file.news.html:300(li) +#: doc/reference/en/file.news.html:329(li) msgid "Supported :default_tokenizer schema dump." msgstr ":default_tokenizer????????????" -#: doc/reference/en/file.news.html:301(li) +#: doc/reference/en/file.news.html:330(li) msgid "Supported :key_normalize schema dump." msgstr ":key_normalize????????????" -#: doc/reference/en/file.news.html:302(li) +#: doc/reference/en/file.news.html:331(li) msgid "Supported pseudo columns by Groonga::Table#have_column?." msgstr "Groonga::Table#have_column???????????" -#: doc/reference/en/file.news.html:303(li) +#: doc/reference/en/file.news.html:332(li) msgid "Supported pseudo columns by Groonga::Record#have_column?." msgstr "Groonga::Record#have_column???????????" -#: doc/reference/en/file.news.html:307(li) +#: doc/reference/en/file.news.html:336(li) msgid "" "Renamed Groonga::Operatoion to Groonga::Operator. (Groonga::Operation is " "deprecated but still usable.)" @@ -2875,7 +2615,7 @@ msgstr "" "Groonga::Operatoion?Groonga::Operator??????????Groonga::Operation" "???????????" -#: doc/reference/en/file.news.html:312(li) +#: doc/reference/en/file.news.html:341(li) msgid "" "Fixed a crash bug when not default Groonga::Context is used in Groonga::" "Table#select." @@ -2883,52 +2623,52 @@ msgstr "" "???Groonga::Context????????Groonga::Table#select?????????" "?????" -#: doc/reference/en/file.news.html:314(li) +#: doc/reference/en/file.news.html:343(li) msgid "Fixed a crash bug when an exception is occurred." msgstr "???????????????????" -#: doc/reference/en/file.news.html:318(li) +#: doc/reference/en/file.news.html:347(li) msgid "ongaeshi" msgstr "ongaeshi??" -#: doc/reference/en/file.news.html:320(h2) +#: doc/reference/en/file.news.html:349(h2) msgid "1.0.8: 2010-12-25" msgstr "" -#: doc/reference/en/file.news.html:323(li) +#: doc/reference/en/file.news.html:352(li) msgid "Improved Groonga::Schema?s n-gram tokenizer detect process." msgstr "Groonga::Schema?n-gram???????????????" -#: doc/reference/en/file.news.html:327(li) +#: doc/reference/en/file.news.html:356(li) msgid "Fixed GC problem caused by match_target in select." msgstr "" "select?match_target????????????????????GC???????" "??" -#: doc/reference/en/file.news.html:329(h2) +#: doc/reference/en/file.news.html:358(h2) msgid "1.0.7: 2010-12-19" msgstr "" -#: doc/reference/en/file.news.html:332(li) +#: doc/reference/en/file.news.html:361(li) msgid "" "Supported pkg-config installed by RubyGems on Ruby 1.8. [Reported by @kamipo]" msgstr "" "Ruby 1.8?RubyGems??????????pkg-config?????????? [@kamipo" "?????]" -#: doc/reference/en/file.news.html:333(li) +#: doc/reference/en/file.news.html:362(li) msgid "Fixed a memory leak in Groonga::Table#columns." msgstr "Groonga::Table#columns???????????" -#: doc/reference/en/file.news.html:337(li) +#: doc/reference/en/file.news.html:366(li) msgid "@kamipo" msgstr "@kamipo??" -#: doc/reference/en/file.news.html:339(h2) +#: doc/reference/en/file.news.html:368(h2) msgid "1.0.5: 2010-11-29" msgstr "" -#: doc/reference/en/file.news.html:342(li) +#: doc/reference/en/file.news.html:371(li) msgid "" "Added snail_case type name aliases for built-in groonga types to Groonga::" "Schema." @@ -2936,27 +2676,27 @@ msgstr "" "Groonga::Schema?groonga???????short_text?????????? + ??" "???????????????????" -#: doc/reference/en/file.news.html:347(li) +#: doc/reference/en/file.news.html:376(li) msgid "Fixed a crash bug on GC. [Ryo Onodera]" msgstr "GC??????????????? [Ryo Onodera]" -#: doc/reference/en/file.news.html:349(h2) +#: doc/reference/en/file.news.html:378(h2) msgid "1.0.4: 2010-11-29" msgstr "" -#: doc/reference/en/file.news.html:352(li) +#: doc/reference/en/file.news.html:381(li) msgid "Supported groonga 1.0.4." msgstr "groonga 1.0.4???" -#: doc/reference/en/file.news.html:353(li) +#: doc/reference/en/file.news.html:382(li) msgid "Added Groonga::UnsupportedCommandVersion." msgstr "Groonga::UnsupportedCommandVersion????" -#: doc/reference/en/file.news.html:354(li) +#: doc/reference/en/file.news.html:383(li) msgid "Added Groonga::Record#support_sub_records?." msgstr "Groonga::Record#support_sub_records?????" -#: doc/reference/en/file.news.html:355(li) +#: doc/reference/en/file.news.html:384(li) msgid "" "Added Groonga::Record#eql??Groonga::Record#hash. (treat two the same table " "and the same record ID object as the same Hash key.)" @@ -2964,11 +2704,11 @@ msgstr "" "Groonga::Record#eql??Groonga::Record#hash?????????????????" "?ID???????????Hash?????????" -#: doc/reference/en/file.news.html:357(li) +#: doc/reference/en/file.news.html:386(li) msgid "Supported pkg-config gem." msgstr "pkg-config gem???????????" -#: doc/reference/en/file.news.html:358(li) +#: doc/reference/en/file.news.html:387(li) msgid "" "Supported generic #record_id object handle for custom record object in " "Groonga::Table#select." @@ -2976,53 +2716,53 @@ msgstr "" "Groonga::Table#select??record_id?????????????????????" "?????????" -#: doc/reference/en/file.news.html:360(li) +#: doc/reference/en/file.news.html:389(li) msgid "Added Groonga::Record#record_id." msgstr "Groonga::Record#record_id????" -#: doc/reference/en/file.news.html:361(li) +#: doc/reference/en/file.news.html:390(li) msgid "Added Groonga::Table#support_key?." msgstr "Groonga::Table#support_key?????" -#: doc/reference/en/file.news.html:362(li) -#: doc/reference/en/file.news.html:363(li) +#: doc/reference/en/file.news.html:391(li) +#: doc/reference/en/file.news.html:392(li) msgid "Added Groonga::Record#support_key?." msgstr "Groonga::Record#support_key?????" -#: doc/reference/en/file.news.html:364(li) +#: doc/reference/en/file.news.html:393(li) msgid "Added Groonga::Column#reference_key?." msgstr "Groonga::Column#reference_key?????" -#: doc/reference/en/file.news.html:365(li) +#: doc/reference/en/file.news.html:394(li) msgid "Added Groonga::Column#index_column?." msgstr "Groonga::Column#index_column?????" -#: doc/reference/en/file.news.html:366(li) +#: doc/reference/en/file.news.html:395(li) msgid "Added Groonga::Schema#dump." msgstr "Groonga::Schema#dump????" -#: doc/reference/en/file.news.html:367(li) +#: doc/reference/en/file.news.html:396(li) msgid "Supported multi columns index creation in Groonga::Schema." msgstr "Groonga::Schema????????????????????" -#: doc/reference/en/file.news.html:368(li) +#: doc/reference/en/file.news.html:397(li) msgid "Supported meaningful path in Groonga::Schema." msgstr "" "Groonga::Schema???????????????????????????????" "?????????????" -#: doc/reference/en/file.news.html:369(li) +#: doc/reference/en/file.news.html:398(li) msgid "" "Made reference table omissible when index column definition in Groonga::" "Schema." msgstr "" "Groonga::Schema??????????????????????????????" -#: doc/reference/en/file.news.html:371(li) +#: doc/reference/en/file.news.html:400(li) msgid "Added Groonga::Schema.remove_column." msgstr "Groonga::Schema.remove_column????" -#: doc/reference/en/file.news.html:372(li) +#: doc/reference/en/file.news.html:401(li) msgid "" "Added convenience timestamps methods to define ?created_at? and ?updated_at? " "columns in Groonga::Schema." @@ -3030,43 +2770,43 @@ msgstr "" "Groonga::Schema?created_at????updated_at?????????timestamps??" "????????" -#: doc/reference/en/file.news.html:374(li) +#: doc/reference/en/file.news.html:403(li) msgid "Added Groonga::Context#support_zlib?." msgstr "Groonga::Context#support_zlib?????" -#: doc/reference/en/file.news.html:375(li) +#: doc/reference/en/file.news.html:404(li) msgid "Added Groonga::Context#support_lzo?." msgstr "Groonga::Context#support_lzo?????" -#: doc/reference/en/file.news.html:376(li) +#: doc/reference/en/file.news.html:405(li) msgid "Added Groonga::Database#touch." msgstr "Groonga::Database#touch????" -#: doc/reference/en/file.news.html:377(li) +#: doc/reference/en/file.news.html:406(li) msgid "Added Groonga::Table#exist?." msgstr "Groonga::Table#exist?????" -#: doc/reference/en/file.news.html:378(li) +#: doc/reference/en/file.news.html:407(li) msgid "Added Groonga::Record#valid?." msgstr "Groonga::Record#valid?????" -#: doc/reference/en/file.news.html:379(li) +#: doc/reference/en/file.news.html:408(li) msgid "Added Groonga::Column#vector?." msgstr "Groonga::Column#vector?????" -#: doc/reference/en/file.news.html:380(li) +#: doc/reference/en/file.news.html:409(li) msgid "Added Groonga::Column#scalar?." msgstr "Groonga::Column#scalar?????" -#: doc/reference/en/file.news.html:381(li) +#: doc/reference/en/file.news.html:410(li) msgid "Added Groonga::Record#vector_column?." msgstr "Groonga::Record#vector_column?????" -#: doc/reference/en/file.news.html:382(li) +#: doc/reference/en/file.news.html:411(li) msgid "Added Groonga::Record#scalar_column?." msgstr "Groonga::Record#scalar_column?????" -#: doc/reference/en/file.news.html:383(li) +#: doc/reference/en/file.news.html:412(li) msgid "" "Accepted any object that has record_raw_id method for record ID required " "location. Groonga::Record isn?t required." @@ -3074,18 +2814,18 @@ msgstr "" "????ID????????record_raw_id???????????Groonga::Record" "????????????" -#: doc/reference/en/file.news.html:385(li) +#: doc/reference/en/file.news.html:414(li) msgid "Added Groonga::Record#record_raw_id." msgstr "Groonga::Record#record_raw_id????" -#: doc/reference/en/file.news.html:386(li) +#: doc/reference/en/file.news.html:415(li) msgid "" "Accepted any object that as to_ary method for reference vector column value." msgstr "" "????????????Array????to_ary?????????????????" "????" -#: doc/reference/en/file.news.html:390(li) +#: doc/reference/en/file.news.html:419(li) msgid "" "Used :key as the default value of :order_by of Groonga::" "PatriciaTrie#open_cursor." @@ -3093,11 +2833,11 @@ msgstr "" "Groonga::PatriciaTrie#open_cursor??:order_by??????????:key???" "??????" -#: doc/reference/en/file.news.html:392(li) +#: doc/reference/en/file.news.html:421(li) msgid "Removed a deprecated Groonga::TableKeySupport#find." msgstr "??????Groonga::TableKeySupport#find????" -#: doc/reference/en/file.news.html:393(li) +#: doc/reference/en/file.news.html:422(li) msgid "" "Used ShortText as the default key type of Groonga::Hash#create and Groonga::" "PatriciaTrie#create." @@ -3105,60 +2845,60 @@ msgstr "" "Groonga::Hash#create?Groonga::PatriciaTrie#create?????????????" "ShortText???????????" -#: doc/reference/en/file.news.html:395(li) +#: doc/reference/en/file.news.html:424(li) msgid "Renamed Groonga::Schema#load to Groonga::Schema#restore." msgstr "Groonga::Schema#load?Groonga::Schema#restore????" -#: doc/reference/en/file.news.html:396(li) +#: doc/reference/en/file.news.html:425(li) msgid "Supported pkg-confg 1.0.7." msgstr "pkg-config 1.0.7???" -#: doc/reference/en/file.news.html:397(li) +#: doc/reference/en/file.news.html:426(li) msgid "" "Added Groonga::Column#index? and deprecated Groonga::Column#index_column?." msgstr "Groonga::Column#index?????Groonga::Column#index_column??????" -#: doc/reference/en/file.news.html:398(li) +#: doc/reference/en/file.news.html:427(li) msgid "" "Added Groonga::Column#reference? and deprecated Groonga::" "Column#reference_column?." msgstr "" "Groonga::Column#reference?????Groonga::Column#reference_column??????" -#: doc/reference/en/file.news.html:403(li) +#: doc/reference/en/file.news.html:432(li) msgid "Fixed index for key isn?t be able to define." msgstr "key??????????????????" -#: doc/reference/en/file.news.html:406(h2) +#: doc/reference/en/file.news.html:435(h2) msgid "1.0.1: 2010-09-12" msgstr "" -#: doc/reference/en/file.news.html:409(li) +#: doc/reference/en/file.news.html:438(li) msgid "Fixed wrong flag used on creating a table. [Reported by ono matope]" msgstr "" "??????????????????????????? [??????????]" -#: doc/reference/en/file.news.html:413(li) +#: doc/reference/en/file.news.html:442(li) msgid "ono matope" msgstr "???????" -#: doc/reference/en/file.news.html:415(h2) +#: doc/reference/en/file.news.html:444(h2) msgid "1.0.0: 2010-08-29" msgstr "" -#: doc/reference/en/file.news.html:417(li) +#: doc/reference/en/file.news.html:446(li) msgid "Supported groonga 1.0.0." msgstr "groonga 1.0.0???" -#: doc/reference/en/file.news.html:418(li) +#: doc/reference/en/file.news.html:447(li) msgid "Added Groonga::CASError." msgstr "Groonga::CASError????" -#: doc/reference/en/file.news.html:419(li) +#: doc/reference/en/file.news.html:448(li) msgid "Added :order_by option to Groonga::Table#open_cursor." msgstr "Groonga::Table#open_cursor?:order_by?????????" -#: doc/reference/en/file.news.html:420(li) +#: doc/reference/en/file.news.html:449(li) msgid "" "Added Groonga::PatriciaTrie#open_prefix_cursor that creates a cursor to " "retrieve each records by prefix search." @@ -3166,7 +2906,7 @@ msgstr "" "??????????????????????????????Groonga::" "PatriciaTrie#open_prefix_cursor????" -#: doc/reference/en/file.news.html:422(li) +#: doc/reference/en/file.news.html:451(li) msgid "" "Added Groonga::PatriciaTrie#open_rk_cursor that creats a cursor to retrieve " "katakana keys from roman letters and/or hiragana." @@ -3174,7 +2914,7 @@ msgstr "" "?????????????????????????????Groonga::" "PatriciaTrie#open_rk_cursor????" -#: doc/reference/en/file.news.html:424(li) +#: doc/reference/en/file.news.html:453(li) msgid "" "Added Groonga::PatriciaTrie#open_near_cursor that creates a cursor to " "retrieve records order by distance from key." @@ -3182,274 +2922,274 @@ msgstr "" "??????????????????????Groonga::" "PatriciaTrie#open_near_cursor????" -#: doc/reference/en/file.news.html:426(li) +#: doc/reference/en/file.news.html:455(li) msgid "Supported _key as index source." msgstr "???????????_key?????????????" -#: doc/reference/en/file.news.html:428(h2) +#: doc/reference/en/file.news.html:457(h2) msgid "0.9.5: 2010-07-20" msgstr "" -#: doc/reference/en/file.news.html:430(li) +#: doc/reference/en/file.news.html:459(li) msgid "Supported groonga 0.7.4." msgstr "groonga 0.7.4???" -#: doc/reference/en/file.news.html:431(li) +#: doc/reference/en/file.news.html:460(li) msgid "Imporoved Groonga::Table#select:" msgstr "Groonga::Table#select???:" -#: doc/reference/en/file.news.html:432(li) +#: doc/reference/en/file.news.html:461(li) msgid "Supported weight match:" msgstr "??????????:" -#: doc/reference/en/file.news.html:440(li) +#: doc/reference/en/file.news.html:469(li) msgid "Supported and representation for and conditions:" msgstr "????????and?????:" -#: doc/reference/en/file.news.html:454(span) -#: doc/reference/en/Groonga.html:450(span) -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1058(span) +#: doc/reference/en/file.news.html:483(span) +#: doc/reference/en/Groonga.html:388(span) +#: doc/reference/en/Groonga.html:412(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1122(span) msgid "VERSION" msgstr "" -#: doc/reference/en/file.news.html:454(li) +#: doc/reference/en/file.news.html:483(li) msgid "Provided groonga runtime version: Groonga::" msgstr "??????groonga??????????: Groonga::VERSION" -#: doc/reference/en/file.news.html:455(li) +#: doc/reference/en/file.news.html:484(li) msgid "Added Groonga::Table#support_sub_records?" msgstr "Groonga::Table#support_sub_records???" -#: doc/reference/en/file.news.html:456(li) +#: doc/reference/en/file.news.html:485(li) msgid "Supported pagination: Groonga::Table#paginate, Groonga::Pagination" msgstr "??????????: Groonga::Table#paginate, Groonga::Pagination" -#: doc/reference/en/file.news.html:458(h2) +#: doc/reference/en/file.news.html:487(h2) msgid "0.9.4: 2010-04-22" msgstr "" -#: doc/reference/en/file.news.html:460(li) -#: doc/reference/en/file.news.html:464(li) +#: doc/reference/en/file.news.html:489(li) +#: doc/reference/en/file.news.html:493(li) msgid "Fixed release miss." msgstr "?????????" -#: doc/reference/en/file.news.html:462(h2) +#: doc/reference/en/file.news.html:491(h2) msgid "0.9.3: 2010-04-22" msgstr "" -#: doc/reference/en/file.news.html:466(h2) +#: doc/reference/en/file.news.html:495(h2) msgid "0.9.2: 2010-04-22" msgstr "" -#: doc/reference/en/file.news.html:468(li) +#: doc/reference/en/file.news.html:497(li) msgid "Supported groonga 0.1.9." msgstr "groonga 0.1.9???" -#: doc/reference/en/file.news.html:469(li) +#: doc/reference/en/file.news.html:498(li) msgid "Many." msgstr "?????" -#: doc/reference/en/file.news.html:471(h2) +#: doc/reference/en/file.news.html:500(h2) msgid "0.9.1: 2010-02-09" msgstr "" -#: doc/reference/en/file.news.html:473(li) +#: doc/reference/en/file.news.html:502(li) msgid "Supported groonga 0.1.6" msgstr "groonga 0.1.6??" -#: doc/reference/en/file.news.html:475(h2) +#: doc/reference/en/file.news.html:504(h2) msgid "0.9.0: 2010-02-09" msgstr "" -#: doc/reference/en/file.news.html:477(li) +#: doc/reference/en/file.news.html:506(li) msgid "Supported groonga 0.1.5" msgstr "groonga 0.1.5??" -#: doc/reference/en/file.news.html:478(span) -#: doc/reference/en/file.news.html:494(span) -#: doc/reference/en/file.news.html:535(span) -#: doc/reference/en/file.news.html:547(span) -#: doc/reference/en/file.news.html:574(span) -#: doc/reference/en/file.README.html:63(span) -#: doc/reference/en/file.README.html:64(span) -#: doc/reference/en/file.README.html:65(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:117(span) -#: doc/reference/en/index.html:63(span) doc/reference/en/index.html:64(span) -#: doc/reference/en/index.html:65(span) +#: doc/reference/en/file.news.html:507(span) +#: doc/reference/en/file.news.html:523(span) +#: doc/reference/en/file.news.html:564(span) +#: doc/reference/en/file.news.html:576(span) +#: doc/reference/en/file.news.html:603(span) +#: doc/reference/en/file.README.html:70(span) +#: doc/reference/en/file.README.html:71(span) +#: doc/reference/en/file.README.html:72(span) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:120(span) +#: doc/reference/en/index.html:70(span) doc/reference/en/index.html:71(span) +#: doc/reference/en/index.html:72(span) msgid "API" msgstr "" -#: doc/reference/en/file.news.html:478(li) -#: doc/reference/en/file.news.html:535(li) -#: doc/reference/en/file.news.html:547(li) +#: doc/reference/en/file.news.html:507(li) +#: doc/reference/en/file.news.html:564(li) +#: doc/reference/en/file.news.html:576(li) msgid "Added " msgstr "???" -#: doc/reference/en/file.news.html:479(li) +#: doc/reference/en/file.news.html:508(li) msgid "Groonga::Object#context" msgstr "" -#: doc/reference/en/file.news.html:480(li) +#: doc/reference/en/file.news.html:509(li) msgid "Groonga::Record#n_sub_records" msgstr "" -#: doc/reference/en/file.news.html:481(li) +#: doc/reference/en/file.news.html:510(li) msgid "Groonga::Context#send" msgstr "" -#: doc/reference/en/file.news.html:482(li) +#: doc/reference/en/file.news.html:511(li) msgid "Groonga::Context#receive" msgstr "" -#: doc/reference/en/file.news.html:483(span) -#: doc/reference/en/file.news.html:485(span) -#: doc/reference/en/file.news.html:486(span) -#: doc/reference/en/file.news.html:487(span) -#: doc/reference/en/file.news.html:530(span) -#: doc/reference/en/file.news.html:557(span) +#: doc/reference/en/file.news.html:512(span) +#: doc/reference/en/file.news.html:514(span) +#: doc/reference/en/file.news.html:515(span) +#: doc/reference/en/file.news.html:516(span) #: doc/reference/en/file.news.html:559(span) -#: doc/reference/en/file.news.html:578(span) -#: doc/reference/en/file.README.html:74(span) -#: doc/reference/en/file.README.html:105(span) -#: doc/reference/en/index.html:74(span) doc/reference/en/index.html:105(span) +#: doc/reference/en/file.news.html:586(span) +#: doc/reference/en/file.news.html:588(span) +#: doc/reference/en/file.news.html:607(span) +#: doc/reference/en/file.README.html:81(span) +#: doc/reference/en/file.README.html:112(span) +#: doc/reference/en/index.html:81(span) doc/reference/en/index.html:112(span) msgid "SUENAGA" msgstr "" -#: doc/reference/en/file.news.html:483(li) +#: doc/reference/en/file.news.html:512(li) msgid "Groonga::PatriciaTrie#prefix_search [Tasuku ]" msgstr "" -#: doc/reference/en/file.news.html:484(li) +#: doc/reference/en/file.news.html:513(li) msgid "Groonga::Object#path [Ryo Onodera]" msgstr "" -#: doc/reference/en/file.news.html:485(li) +#: doc/reference/en/file.news.html:514(li) msgid "Groonga::Object#lock [Tasuku ]" msgstr "" -#: doc/reference/en/file.news.html:486(li) +#: doc/reference/en/file.news.html:515(li) msgid "Groonga::Object#unlock [Tasuku ]" msgstr "" -#: doc/reference/en/file.news.html:487(li) +#: doc/reference/en/file.news.html:516(li) msgid "Groonga::Object#locked? [Tasuku ]" msgstr "" -#: doc/reference/en/file.news.html:488(li) +#: doc/reference/en/file.news.html:517(li) msgid "Groonga::Object#temporary?" msgstr "" -#: doc/reference/en/file.news.html:489(li) +#: doc/reference/en/file.news.html:518(li) msgid "Groonga::Object#persistent?" msgstr "" -#: doc/reference/en/file.news.html:490(li) -#: doc/reference/en/Groonga.html:181(p) +#: doc/reference/en/file.news.html:519(li) +#: doc/reference/en/Groonga/ObjectClosed.html:81(li) msgid "Groonga::ObjectClosed" msgstr "" -#: doc/reference/en/file.news.html:491(li) +#: doc/reference/en/file.news.html:520(li) msgid "Groonga::Context.[]" msgstr "" -#: doc/reference/en/file.news.html:492(li) +#: doc/reference/en/file.news.html:521(li) msgid "Groonga::Table#column_value" msgstr "" -#: doc/reference/en/file.news.html:493(li) +#: doc/reference/en/file.news.html:522(li) msgid "Groonga::Table#set_column_value" msgstr "" -#: doc/reference/en/file.news.html:494(li) +#: doc/reference/en/file.news.html:523(li) msgid "Changed " msgstr "????" -#: doc/reference/en/file.news.html:495(li) +#: doc/reference/en/file.news.html:524(li) msgid "Groonga::Table#select, Groonga::Column#select" msgstr "" -#: doc/reference/en/file.news.html:496(li) +#: doc/reference/en/file.news.html:525(li) msgid "They also accept Groonga::Expression" msgstr "Groonga::Expression????????????" -#: doc/reference/en/file.news.html:497(li) +#: doc/reference/en/file.news.html:526(li) msgid "Added :syntax option that specifies grn expression syntax" msgstr "grn?????????????:syntax????????" -#: doc/reference/en/file.news.html:498(li) +#: doc/reference/en/file.news.html:527(li) msgid "Groonga::Table#open_cursor" msgstr "" -#: doc/reference/en/file.news.html:499(li) +#: doc/reference/en/file.news.html:528(li) msgid "Added :offset option that specifies offset." msgstr "?????????:offset????????" -#: doc/reference/en/file.news.html:500(li) +#: doc/reference/en/file.news.html:529(li) msgid "Added :limit option that specifies max number of records." msgstr "????????????:limit????????" -#: doc/reference/en/file.news.html:501(li) +#: doc/reference/en/file.news.html:530(li) msgid "Changed Groonga::Expression.parse options:" msgstr "Groonga::Expression.parse????????:" -#: doc/reference/en/file.news.html:502(li) +#: doc/reference/en/file.news.html:531(li) msgid "(nil (default) ? :column) ? (nil (default) ? :query)" msgstr "" -#: doc/reference/en/file.news.html:503(li) +#: doc/reference/en/file.news.html:532(li) msgid ":column ? removed" msgstr ":column ? ??" -#: doc/reference/en/file.news.html:504(li) +#: doc/reference/en/file.news.html:533(li) msgid ":table ? :query" msgstr "" -#: doc/reference/en/file.news.html:505(li) +#: doc/reference/en/file.news.html:534(li) msgid ":table_query ? :query" msgstr "" -#: doc/reference/en/file.news.html:506(li) +#: doc/reference/en/file.news.html:535(li) msgid ":expression ? :script" msgstr "" -#: doc/reference/en/file.news.html:507(li) +#: doc/reference/en/file.news.html:536(li) msgid ":language ? :script" msgstr "" -#: doc/reference/en/file.news.html:508(li) +#: doc/reference/en/file.news.html:537(li) msgid "Groonga::Table#define_column, Groonga::Table#define_index_column" msgstr "" -#: doc/reference/en/file.news.html:509(li) +#: doc/reference/en/file.news.html:538(li) msgid "Defined column becomes persistent table by default" msgstr "???????????????" -#: doc/reference/en/file.news.html:510(li) +#: doc/reference/en/file.news.html:539(li) msgid "Groonga::Table#[] ? Groonga::Table#value" msgstr "" -#: doc/reference/en/file.news.html:511(li) +#: doc/reference/en/file.news.html:540(li) msgid "Groonga::Table#[]= ? Groonga::Table#set_value" msgstr "" -#: doc/reference/en/file.news.html:512(li) +#: doc/reference/en/file.news.html:541(li) msgid "Groonga::Table#find ? Groonga::Table#[]" msgstr "" -#: doc/reference/en/file.news.html:513(li) +#: doc/reference/en/file.news.html:542(li) msgid "Groonga::Table#find ? obsolete" msgstr "" -#: doc/reference/en/file.news.html:514(li) +#: doc/reference/en/file.news.html:543(li) msgid "Groonga::Table#[]= ? removed" msgstr "Groonga::Table#[]= ? ??" -#: doc/reference/en/file.news.html:515(li) +#: doc/reference/en/file.news.html:544(li) msgid "Groonga::TableKeySupport#[]= is alias of Groonga::TableKeySupport#add" msgstr "Groonga::TableKeySupport#[]=?Groonga::TableKeySupport#add???" -#: doc/reference/en/file.news.html:516(li) +#: doc/reference/en/file.news.html:545(li) msgid "" "Changed exception class to Groonga::NoSuchColumn from Groonga::" "InvalidArgument when Groonga::Record accesses nonexistent a column." @@ -3457,15 +3197,15 @@ msgstr "" "Groonga::Record??????????????????????Groonga::" "InvalidArgument??Groonga::NoSuchColumn???" -#: doc/reference/en/file.news.html:519(li) +#: doc/reference/en/file.news.html:548(li) msgid "Bug fixes" msgstr "" -#: doc/reference/en/file.news.html:520(li) +#: doc/reference/en/file.news.html:549(li) msgid "Fixed a bug that context isn?t passed to schema [dara]" msgstr "??????????????????????? [dara]" -#: doc/reference/en/file.news.html:521(li) +#: doc/reference/en/file.news.html:550(li) msgid "" "Fixed a bug that Groonga::PatriciaTrie#tag_keys doesn?t return that last " "text. [Ryo Onodera]" @@ -3473,105 +3213,105 @@ msgstr "" "Groonga::PatriciaTrie#tag_keys?????????????????? [Ryo " "Onodera]" -#: doc/reference/en/file.news.html:523(li) +#: doc/reference/en/file.news.html:552(li) msgid "Added ?with-debug option to extconf.rb for debug build." msgstr "extconf.rb??????????????--with-debug????????" -#: doc/reference/en/file.news.html:524(li) +#: doc/reference/en/file.news.html:553(li) msgid "Fixed a bug that Ruby 1.9.1 may fail extconf.rb." msgstr "Ruby 1.9.1?extconf.rb??????????" -#: doc/reference/en/file.news.html:528(li) +#: doc/reference/en/file.news.html:557(li) msgid "dara" msgstr "dara??" -#: doc/reference/en/file.news.html:529(li) +#: doc/reference/en/file.news.html:558(li) msgid "Ryo Onodera" msgstr "Ryo Onodera??" -#: doc/reference/en/file.news.html:530(li) +#: doc/reference/en/file.news.html:559(li) msgid "Tasuku " msgstr "Tasuku ??" -#: doc/reference/en/file.news.html:532(h2) +#: doc/reference/en/file.news.html:561(h2) msgid "0.0.7: 2009-10-02" msgstr "" -#: doc/reference/en/file.news.html:534(li) +#: doc/reference/en/file.news.html:563(li) msgid "Supported groonga 0.1.4" msgstr "groonga 0.1.4??" -#: doc/reference/en/file.news.html:536(li) +#: doc/reference/en/file.news.html:565(li) msgid "Groonga::PatriciaTrie#scan" msgstr "" -#: doc/reference/en/file.news.html:537(li) +#: doc/reference/en/file.news.html:566(li) msgid "Groonga::PatriciaTrie#tag_keys" msgstr "" -#: doc/reference/en/file.news.html:538(li) +#: doc/reference/en/file.news.html:567(li) msgid "Groonga::Expression#snippet" msgstr "" -#: doc/reference/en/file.news.html:539(li) +#: doc/reference/en/file.news.html:568(li) msgid "Groonga::Object#append" msgstr "" -#: doc/reference/en/file.news.html:540(li) +#: doc/reference/en/file.news.html:569(li) msgid "Groonga::Object#prepend" msgstr "" -#: doc/reference/en/file.news.html:542(h2) +#: doc/reference/en/file.news.html:571(h2) msgid "0.0.6: 2009-07-31" msgstr "" -#: doc/reference/en/file.news.html:544(li) +#: doc/reference/en/file.news.html:573(li) msgid "Supported groonga 0.1.1." msgstr "groonga 0.1.1??" -#: doc/reference/en/file.news.html:545(li) +#: doc/reference/en/file.news.html:574(li) msgid "Fixed documents [id:mat_aki]" msgstr "????????? [id:mat_aki]" -#: doc/reference/en/file.news.html:546(li) +#: doc/reference/en/file.news.html:575(li) msgid "Supported groonga expression for searching." msgstr "Groonga::Table#select??grn???" -#: doc/reference/en/file.news.html:548(li) +#: doc/reference/en/file.news.html:577(li) msgid "Groonga::Table#union!" msgstr "" -#: doc/reference/en/file.news.html:549(li) +#: doc/reference/en/file.news.html:578(li) msgid "Groonga::Table#intersect!" msgstr "" -#: doc/reference/en/file.news.html:550(li) +#: doc/reference/en/file.news.html:579(li) msgid "Groonga::Table#differene!" msgstr "" -#: doc/reference/en/file.news.html:551(li) +#: doc/reference/en/file.news.html:580(li) msgid "Groonga::Table#merge!" msgstr "" -#: doc/reference/en/file.news.html:552(li) +#: doc/reference/en/file.news.html:581(li) msgid "Provided tar.gz [id:m_seki]" msgstr "tar.gz??? [id:m_seki]" -#: doc/reference/en/file.news.html:553(li) -#: doc/reference/en/file.news.html:579(li) +#: doc/reference/en/file.news.html:582(li) +#: doc/reference/en/file.news.html:608(li) msgid "Fixed memory leaks" msgstr "?????????" -#: doc/reference/en/file.news.html:555(h2) +#: doc/reference/en/file.news.html:584(h2) msgid "0.0.3: 2009-07-18" msgstr "" -#: doc/reference/en/file.news.html:557(li) +#: doc/reference/en/file.news.html:586(li) msgid "" "Added Groonga::TableKeySupport#has_key? [#26145] [Tasuku ]" msgstr "Groonga::TableKeySupport#has_key???? [#26145] [Tasuku SUENAGA]" -#: doc/reference/en/file.news.html:558(li) +#: doc/reference/en/file.news.html:587(li) msgid "" "Groonga::Record#[] raises an exception for nonexistent column name. [#26146] " "[Tasuku ]" @@ -3579,44 +3319,44 @@ msgstr "" "?????????????Groonga::Record#[]????????????? " "[#26146] [Tasuku SUENAGA]" -#: doc/reference/en/file.news.html:560(li) +#: doc/reference/en/file.news.html:589(li) msgid "Supported 32bit environment [niku]" msgstr "32?????????? [niku]" -#: doc/reference/en/file.news.html:561(li) +#: doc/reference/en/file.news.html:590(li) msgid "Added a test for N-gram index search [dara]" msgstr "N-gram???????????????? [dara]" -#: doc/reference/en/file.news.html:562(li) +#: doc/reference/en/file.news.html:591(li) msgid "Added APIs" msgstr "" -#: doc/reference/en/file.news.html:563(li) +#: doc/reference/en/file.news.html:592(li) msgid "Groonga::Record#incemrent!" msgstr "" -#: doc/reference/en/file.news.html:564(li) +#: doc/reference/en/file.news.html:593(li) msgid "Groonga::Record#decemrent!" msgstr "" -#: doc/reference/en/file.news.html:565(li) +#: doc/reference/en/file.news.html:594(li) msgid "Groonga::Record#lock" msgstr "" -#: doc/reference/en/file.news.html:566(li) +#: doc/reference/en/file.news.html:595(li) msgid "Groonga::Table#lock" msgstr "" -#: doc/reference/en/file.news.html:567(span) +#: doc/reference/en/file.news.html:596(span) msgid "DSL" msgstr "" -#: doc/reference/en/file.news.html:567(li) +#: doc/reference/en/file.news.html:596(li) msgid "Groonga::Schema: A for schema definition" msgstr "Groonga::Schema: ???????DSL" -#: doc/reference/en/file.news.html:568(li) -#: doc/reference/en/Groonga/Expression.html:76(li) +#: doc/reference/en/file.news.html:597(li) +#: doc/reference/en/Groonga/Expression.html:83(li) #: doc/reference/en/method_list.html:118(small) #: doc/reference/en/method_list.html:278(small) #: doc/reference/en/method_list.html:286(small) @@ -3631,112 +3371,112 @@ msgstr "Groonga::Schema: ???????DSL" msgid "Groonga::Expression" msgstr "" -#: doc/reference/en/file.news.html:570(h2) +#: doc/reference/en/file.news.html:599(h2) msgid "0.0.2: 2009-06-04" msgstr "" -#: doc/reference/en/file.news.html:572(li) +#: doc/reference/en/file.news.html:601(li) msgid "Supported groonga 0.0.8 [mori]" msgstr "groonga 0.0.8?? [mori]" -#: doc/reference/en/file.news.html:573(li) +#: doc/reference/en/file.news.html:602(li) msgid "Improved preformance: cache key, value, domain and range" msgstr "????: ???????????????????" -#: doc/reference/en/file.news.html:574(li) +#: doc/reference/en/file.news.html:603(li) msgid "Improved " msgstr "???" -#: doc/reference/en/file.news.html:575(li) +#: doc/reference/en/file.news.html:604(li) msgid "Added documents" msgstr "?????????" -#: doc/reference/en/file.news.html:576(li) +#: doc/reference/en/file.news.html:605(li) msgid "Supported Ruby 1.9" msgstr "Ruby 1.9??" -#: doc/reference/en/file.news.html:577(li) +#: doc/reference/en/file.news.html:606(li) msgid "Bug fixes:" msgstr "" -#: doc/reference/en/file.news.html:578(li) +#: doc/reference/en/file.news.html:607(li) msgid "Fixed install process [Tasuku ]" msgstr "" -#: doc/reference/en/file.news.html:581(h2) +#: doc/reference/en/file.news.html:610(h2) msgid "0.0.1: 2009-04-30" msgstr "" -#: doc/reference/en/file.news.html:583(li) +#: doc/reference/en/file.news.html:612(li) msgid "Initial release!" msgstr "????????" -#: doc/reference/en/file.news.html:57(div) +#: doc/reference/en/file.news.html:64(div) msgid "" "

\n" "\n" "\n" "
    \n" -"\t
\n" -"\n" -"
\n" -"\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" "\n" -"
    \n" -"\t
\n" -"\n" -"
    \n" -"\t\n" -"\t
\n" -"\n" -"
    \n" -"\t
\n" +"
\n" +"\n" +"
\n" +"\n" +"\n" +"
    \n" +"\t
\n" +"\n" +"
\n" "\n" "\n" "
    \n" -"\t\n" -"\t\n" -"\t\n" +"\t
\n" +"\n" +"
    \n" "\t\n" -"\t\n" -"\t\n" -"\t\n" +"\t
\n" +"\n" +"
    \n" "\t
\n" "\n" -"
\n" -"\n" -"\n" -"
    \n" +"\n" +"
      \n" +"\t\n" +"\t\n" "\t\n" "\t\n" "\t\n" "\t\n" "\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" +"\t
    \n" +"\n" +"
    \n" +"\n" +"\n" +"
      \n" "\t\n" "\t\n" -"\t
    \n" -"\n" -"
    \n" -"\n" -"
    \n" -"\n" -"\n" -"
    \n" -"\n" -"\n" -"
      \n" -"\t\n" -"\t\n" -"\t
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
\n" "\n" -"\n" -"
\n" +"
\n" +"\n" "\n" "
\n" "\n" @@ -3744,113 +3484,113 @@ msgid "" "
    \n" "\t\n" "\t\n" -"\t\n" -"\t
\n" +"\t\n" +"\n" "\n" -"
    \n" -"\t\n" -"\t
\n" +"
\n" +"\n" +"
\n" "\n" "\n" "
    \n" "\t\n" "\t\n" "\t\n" -"\t\n" -"\t
\n" -"\n" -"
    \n" +"\t
\n" +"\n" +"
    \n" +"\t\n" "\t
\n" "\n" "\n" -"
\n" -"\n" -"
    \n" -"\t
\n" -"\n" -"\n" -"
    \n" -"\t
\n" -"\n" +"
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
    \n" +"\t
\n" "\n" -"
    \n" -"\t
\n" +"\n" +"
\n" "\n" "
    \n" -"\t\n" -"\t\n" -"\t
\n" -"\n" -"
    \n" -"\t\n" -"\t
\n" -"\n" -"
\n" +"\t\n" +"\n" +"\n" +"
    \n" +"\t
\n" +"\n" +"\n" +"
    \n" +"\t
\n" "\n" -"\n" -"
    \n" +"
      \n" +"\t\n" "\t\n" -"\t\n" -"\t\n" -"\t\n" +"\t
    \n" +"\n" +"
      \n" "\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t
    \n" -"\n" -"
      \n" -"\t
    \n" -"\n" -"
      \n" -"\t
    \n" -"\n" -"\n" -"
      \n" +"\t
    \n" +"\n" +"
    \n" +"\n" +"\n" +"
      \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" "\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t
    \n" -"\n" -"\n" -"
      \n" -"\t
    \n" -"\n" -"\n" -"
      \n" +"\t
    \n" +"\n" +"
      \n" +"\t
    \n" +"\n" +"
      \n" +"\t
    \n" +"\n" +"\n" +"
      \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" "\t\n" "\t\n" "\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t
    \n" -"\n" -"
    \n" -"\n" -"
      \n" -"\t
    \n" -"\n" -"
    \n" -"\n" -"\n" -"
    \n" -"\n" -"
    \n" -"\n" +"\t
\n" +"\n" +"\n" +"
    \n" +"\t
\n" +"\n" +"\n" +"
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
\n" "\n" "
    \n" "\t
\n" @@ -3864,17 +3604,17 @@ msgid "" "\n" "\n" "
    \n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" +"\t
\n" +"\n" +"
\n" +"\n" +"\n" +"
\n" +"\n" +"
\n" +"\n" +"\n" +"
    \n" "\t\n" "\t\n" "\t\n" @@ -3892,67 +3632,67 @@ msgid "" "\t\n" "\t\n" "\t\n" -"\t
\n" -"\n" -"
    \n" +"\t\n" +"\t\n" +"\t\n" "\t\n" "\t\n" "\t\n" "\t\n" "\t\n" -"\t
\n" -"\n" -"
    \n" +"\t\n" +"\t\n" +"\t\n" "\t
\n" "\n" -"\n" -"
\n" -"\n" -"
\n" -"\n" -"
    \n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t
\n" -"\n" -"
    \n" -"\t\n" -"\t
Here is an example to match source column or title " +"
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
    \n" +"\t
\n" +"\n" +"\n" +"
\n" +"\n" +"
\n" +"\n" +"
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
    \n" +"\t\n" +"\t
Here is an example to match source column or title " "column and title column has high score: table.select do |record| (record." -"title * 10 | record.source) =~ ?query? end
Here " +"title * 10 | record.source) =~ ?query? end
Here " "are examples that represents the same condition: table.select do |record| " "conditions = [] conditions << record.title =~ ?query? conditions <" "< record.updated_at > Time.parse(?2010-07-29T21:14:29+09:00?) " "conditions end table.select do |record| (record.title =~ ?query?) & " "(record.updated_at > Time.parse(?2010-07-29T21:14:29+09:00?)) end " -"
    \n" -"\t\n" -"\t
\n" -"\n" -"
\n" -"\n" -"
\n" -"\n" -"
    \n" -"\t
\n" -"\n" -"
\n" -"\n" -"
    \n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" -"\t\n" +"
      \n" +"\t\n" +"\t
    \n" +"\n" +"
    \n" +"\n" +"
    \n" +"\n" +"
      \n" +"\t
    \n" +"\n" +"
    \n" +"\n" +"
      \n" "\t\n" "\t\n" "\t\n" @@ -3985,24 +3725,24 @@ msgid "" "\t\n" "\t\n" "\t\n" -"\t
    \n" -"\n" -"
      \n" +"\t\n" +"\t\n" +"\t\n" "\t\n" -"\t
    \n" -"\n" -"
      \n" +"\t\n" +"\t\n" +"\t\n" "\t\n" "\t\n" "\t\n" "\t\n" -"\t\n" -"\t
    \n" -"\n" -"
      \n" -"\t\n" -"\t\n" -"\t\n" +"\t
    \n" +"\n" +"
      \n" +"\t\n" +"\t
    \n" +"\n" +"
      \n" "\t\n" "\t\n" "\t\n" @@ -4019,28780 +3759,20816 @@ msgid "" "\t\n" "\t\n" "\t\n" -"\t\n" -"\t
    \n" -"\n" -"
      \n" +"\t
    \n" +"\n" +"
      \n" +"\t\n" "\t\n" "\t\n" "\t\n" "\t\n" "\t\n" "\t\n" -"\t
    \n" -"\n" -"
    " +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
    \n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t\n" +"\t
\n" +"\n" +"
" +msgstr "" + +#: doc/reference/en/methods_list.html:21(script) +#: doc/reference/en/class_list.html:21(script) +#: doc/reference/en/method_list.html:21(script) +#: doc/reference/en/file_list.html:21(script) +msgid "" +"if (window.top.frames.main) { document.getElementById('base_target').target " +"= 'main'; document.body.className = 'frames'; }" msgstr "" -#: doc/reference/en/file.README.html:6(title) -#: doc/reference/en/index.html:6(title) -msgid "File: README — rroonga" -msgstr "????: ???? — rroonga" - -#: doc/reference/en/file.README.html:37(span) -#: doc/reference/en/index.html:37(span) -msgid "File: README" -msgstr "????: ????" - -#: doc/reference/en/file.README.html:57(span) -#: doc/reference/en/index.html:57(span) doc/reference/en/_index.html:63(a) -#: doc/reference/en/file_list.html:43(a) -msgid "README" -msgstr "????" +#: doc/reference/en/methods_list.html:31(a) +#: doc/reference/en/class_list.html:31(a) +#: doc/reference/en/method_list.html:31(a) +#: doc/reference/en/file_list.html:31(a) +msgid "Classes" +msgstr "" -#: doc/reference/en/file.README.html:58(h2) doc/reference/en/index.html:58(h2) -msgid "Name" -msgstr "??" +#: doc/reference/en/methods_list.html:35(a) +#: doc/reference/en/class_list.html:35(a) +#: doc/reference/en/method_list.html:33(a) +#: doc/reference/en/file_list.html:35(a) +msgid "Methods" +msgstr "" -#: doc/reference/en/file.README.html:59(p) doc/reference/en/index.html:59(p) -#: doc/reference/en/frames.html:7(title) doc/reference/en/_index.html:6(title) -#: doc/reference/en/_index.html:55(h1) -msgid "rroonga" +#: doc/reference/en/methods_list.html:39(a) +#: doc/reference/en/class_list.html:39(a) +#: doc/reference/en/method_list.html:35(a) +#: doc/reference/en/file_list.html:39(a) +msgid "Files" msgstr "" -#: doc/reference/en/file.README.html:60(h2) doc/reference/en/index.html:60(h2) -msgid "Description" -msgstr "??" +#: doc/reference/en/methods_list.html:44(div) +#: doc/reference/en/class_list.html:44(div) +#: doc/reference/en/method_list.html:38(div) +#: doc/reference/en/file_list.html:44(div) +msgid "Search: " +msgstr "" -#: doc/reference/en/file.README.html:61(p) doc/reference/en/index.html:61(p) -msgid "" -"Ruby bindings for groonga that provide full text search and column store " -"features." +#: doc/reference/en/methods_list.html:50(a) +#: doc/reference/en/methods_list.html:58(a) +#: doc/reference/en/methods_list.html:66(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:44(a) +#: doc/reference/en/method_list.html:52(a) +#: doc/reference/en/method_list.html:60(a) +#: doc/reference/en/method_list.html:68(a) +msgid "#==" msgstr "" -"????????????????????groonga?Ruby??????????" -#: doc/reference/en/file.README.html:63(p) doc/reference/en/index.html:63(p) -msgid "" -"rroonga is an extension library to use groonga?s DB- layer. " -"rroonga provides Rubyish readable and writable not C like " -". You can use groonga?s fast and highly functional features " -"from Ruby with Rubyish form." +#: doc/reference/en/methods_list.html:52(small) +#: doc/reference/en/methods_list.html:84(small) +#: doc/reference/en/methods_list.html:108(small) +#: doc/reference/en/methods_list.html:140(small) +#: doc/reference/en/methods_list.html:148(small) +#: doc/reference/en/methods_list.html:164(small) +#: doc/reference/en/methods_list.html:284(small) +#: doc/reference/en/methods_list.html:308(small) +#: doc/reference/en/methods_list.html:452(small) +#: doc/reference/en/methods_list.html:476(small) +#: doc/reference/en/methods_list.html:588(small) +#: doc/reference/en/methods_list.html:652(small) +#: doc/reference/en/methods_list.html:660(small) +#: doc/reference/en/methods_list.html:724(small) +#: doc/reference/en/methods_list.html:740(small) +#: doc/reference/en/methods_list.html:756(small) +#: doc/reference/en/methods_list.html:1028(small) +#: doc/reference/en/methods_list.html:1068(small) +#: doc/reference/en/methods_list.html:1076(small) +#: doc/reference/en/methods_list.html:1172(small) +#: doc/reference/en/methods_list.html:1404(small) +#: doc/reference/en/methods_list.html:1460(small) +#: doc/reference/en/methods_list.html:1468(small) +#: doc/reference/en/methods_list.html:1500(small) +#: doc/reference/en/methods_list.html:1676(small) +#: doc/reference/en/methods_list.html:1684(small) +#: doc/reference/en/methods_list.html:1692(small) +#: doc/reference/en/methods_list.html:1716(small) +#: doc/reference/en/methods_list.html:1820(small) +#: doc/reference/en/methods_list.html:1828(small) +#: doc/reference/en/methods_list.html:1836(small) +#: doc/reference/en/methods_list.html:1852(small) +#: doc/reference/en/methods_list.html:2012(small) +#: doc/reference/en/methods_list.html:2076(small) +#: doc/reference/en/methods_list.html:2084(small) +#: doc/reference/en/methods_list.html:2092(small) +#: doc/reference/en/methods_list.html:2108(small) +#: doc/reference/en/Groonga/Record.html:81(li) +#: doc/reference/en/method_list.html:62(small) +#: doc/reference/en/method_list.html:110(small) +#: doc/reference/en/method_list.html:182(small) +#: doc/reference/en/method_list.html:254(small) +#: doc/reference/en/method_list.html:270(small) +#: doc/reference/en/method_list.html:310(small) +#: doc/reference/en/method_list.html:462(small) +#: doc/reference/en/method_list.html:598(small) +#: doc/reference/en/method_list.html:822(small) +#: doc/reference/en/method_list.html:966(small) +#: doc/reference/en/method_list.html:1190(small) +#: doc/reference/en/method_list.html:1294(small) +#: doc/reference/en/method_list.html:1310(small) +#: doc/reference/en/method_list.html:1390(small) +#: doc/reference/en/method_list.html:1422(small) +#: doc/reference/en/method_list.html:1478(small) +#: doc/reference/en/method_list.html:1814(small) +#: doc/reference/en/method_list.html:1886(small) +#: doc/reference/en/method_list.html:1918(small) +#: doc/reference/en/method_list.html:2086(small) +#: doc/reference/en/method_list.html:2438(small) +#: doc/reference/en/method_list.html:2534(small) +#: doc/reference/en/method_list.html:2542(small) +#: doc/reference/en/method_list.html:2590(small) +#: doc/reference/en/method_list.html:2830(small) +#: doc/reference/en/method_list.html:2846(small) +#: doc/reference/en/method_list.html:2854(small) +#: doc/reference/en/method_list.html:2910(small) +#: doc/reference/en/method_list.html:3150(small) +#: doc/reference/en/method_list.html:3166(small) +#: doc/reference/en/method_list.html:3174(small) +#: doc/reference/en/method_list.html:3238(small) +#: doc/reference/en/method_list.html:3422(small) +#: doc/reference/en/method_list.html:3510(small) +#: doc/reference/en/method_list.html:3518(small) +#: doc/reference/en/method_list.html:3574(small) +#: doc/reference/en/method_list.html:3606(small) +#: doc/reference/en/Grn/Table.html:907(tt) +#: doc/reference/en/Grn/Table.html:934(tt) +msgid "Groonga::Record" msgstr "" -"groonga?????DB-??Ruby???????????????" -"??groonga??????Ruby??????????????Ruby?" -"??????????????????????????groonga?" -"Ruby??????????????" -#: doc/reference/en/file.README.html:67(p) doc/reference/en/index.html:67(p) -msgid "See the following about groonga." -msgstr "groonga???????????????????" +#: doc/reference/en/methods_list.html:60(small) +#: doc/reference/en/methods_list.html:100(small) +#: doc/reference/en/methods_list.html:716(small) +#: doc/reference/en/methods_list.html:796(small) +#: doc/reference/en/methods_list.html:2132(small) +#: doc/reference/en/Groonga/ViewRecord.html:81(li) +#: doc/reference/en/method_list.html:54(small) +#: doc/reference/en/method_list.html:102(small) +#: doc/reference/en/method_list.html:1374(small) +#: doc/reference/en/method_list.html:1622(small) +#: doc/reference/en/method_list.html:3630(small) +msgid "Groonga::ViewRecord" +msgstr "" -#: doc/reference/en/file.README.html:69(a) doc/reference/en/index.html:69(a) -msgid "The groonga official site" -msgstr "groonga?????" +#: doc/reference/en/methods_list.html:68(small) +#: doc/reference/en/methods_list.html:348(small) +#: doc/reference/en/methods_list.html:812(small) +#: doc/reference/en/methods_list.html:1220(small) +#: doc/reference/en/methods_list.html:1276(small) +#: doc/reference/en/methods_list.html:1348(small) +#: doc/reference/en/methods_list.html:1356(small) +#: doc/reference/en/methods_list.html:1508(small) +#: doc/reference/en/methods_list.html:1932(small) +#: doc/reference/en/methods_list.html:1948(small) +#: doc/reference/en/methods_list.html:2060(small) +#: doc/reference/en/Groonga/QueryLog/Command.html:81(li) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:295(a) +#: doc/reference/en/method_list.html:46(small) +#: doc/reference/en/method_list.html:630(small) +#: doc/reference/en/method_list.html:1494(small) +#: doc/reference/en/method_list.html:2102(small) +#: doc/reference/en/method_list.html:2278(small) +#: doc/reference/en/method_list.html:2350(small) +#: doc/reference/en/method_list.html:2390(small) +#: doc/reference/en/method_list.html:2614(small) +#: doc/reference/en/method_list.html:3310(small) +#: doc/reference/en/method_list.html:3326(small) +#: doc/reference/en/method_list.html:3494(small) +msgid "Groonga::QueryLog::Command" +msgstr "" -#: doc/reference/en/file.README.html:71(h2) doc/reference/en/index.html:71(h2) -msgid "Authors" -msgstr "??" +#: doc/reference/en/methods_list.html:74(a) +#: doc/reference/en/Groonga.html:138(strong) +#: doc/reference/en/Groonga.html:239(strong) +#: doc/reference/en/Groonga.html:270(span) +#: doc/reference/en/Groonga/ViewRecord.html:202(strong) +#: doc/reference/en/Groonga/ViewRecord.html:475(strong) +#: doc/reference/en/Groonga/ViewRecord.html:503(span) +#: doc/reference/en/Groonga/Record.html:176(strong) +#: doc/reference/en/Groonga/Record.html:1090(span) +#: doc/reference/en/Groonga/Record.html:1201(strong) +#: doc/reference/en/Groonga/Record.html:1229(span) +#: doc/reference/en/Groonga/Command/Builder.html:210(strong) +#: doc/reference/en/Groonga/Command/Builder.html:481(strong) +#: doc/reference/en/Groonga/Command/Builder.html:500(span) +#: doc/reference/en/method_list.html:84(a) +#: doc/reference/en/Grn/Table.html:119(strong) +#: doc/reference/en/Grn/Table.html:907(strong) +#: doc/reference/en/Grn/Table.html:2308(p) +#: doc/reference/en/Grn/Table.html:2653(p) +msgid "[]" +msgstr "" -#: doc/reference/en/file.README.html:73(li) doc/reference/en/index.html:73(li) -msgid "Kouhei Sutou <kou at clear-code.com>" +#: doc/reference/en/methods_list.html:76(small) +#: doc/reference/en/methods_list.html:212(small) +#: doc/reference/en/methods_list.html:244(small) +#: doc/reference/en/methods_list.html:2124(small) +#: doc/reference/en/Groonga.html:37(span) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:35(a) +#: doc/reference/en/Groonga/Logger.html:35(a) +#: doc/reference/en/Groonga/TooManyLinks.html:35(a) +#: doc/reference/en/Groonga/OperationNotPermitted.html:35(a) +#: doc/reference/en/Groonga/BadFileDescriptor.html:35(a) +#: doc/reference/en/Groonga/Accessor.html:35(a) +#: doc/reference/en/Groonga/FileExists.html:35(a) +#: doc/reference/en/Groonga/EncodingSupport.html:35(a) +#: doc/reference/en/Groonga/Schema/Error.html:35(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:35(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:35(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:35(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:35(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:35(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:35(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:35(a) +#: doc/reference/en/Groonga/BrokenPipe.html:35(a) +#: doc/reference/en/Groonga/Context.html:35(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:35(a) +#: doc/reference/en/Groonga/Schema.html:35(a) +#: doc/reference/en/Groonga/Schema.html:119(span) +#: doc/reference/en/Groonga/Schema.html:899(span) +#: doc/reference/en/Groonga/Schema.html:927(span) +#: doc/reference/en/Groonga/Schema.html:1027(span) +#: doc/reference/en/Groonga/Schema.html:1146(span) +#: doc/reference/en/Groonga/Schema.html:1678(span) +#: doc/reference/en/Groonga/Schema.html:1817(span) +#: doc/reference/en/Groonga/Schema.html:1927(span) +#: doc/reference/en/Groonga/Schema.html:1932(span) +#: doc/reference/en/Groonga/Schema.html:1933(span) +#: doc/reference/en/Groonga/Schema.html:1934(span) +#: doc/reference/en/Groonga/Schema.html:1941(span) +#: doc/reference/en/Groonga/Schema.html:2048(span) +#: doc/reference/en/Groonga/Schema.html:2271(span) +#: doc/reference/en/Groonga/Schema.html:2321(span) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:35(a) +#: doc/reference/en/Groonga/ResultTooLarge.html:35(a) +#: doc/reference/en/Groonga/DomainError.html:35(a) +#: doc/reference/en/Groonga/UnknownError.html:35(a) +#: doc/reference/en/Groonga/Expression.html:35(a) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:35(a) +#: doc/reference/en/Groonga/Error.html:35(a) +#: doc/reference/en/Groonga/EndOfData.html:35(a) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:35(a) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:35(a) +#: doc/reference/en/Groonga/InvalidSeek.html:35(a) +#: doc/reference/en/Groonga/ViewCursor.html:35(a) +#: doc/reference/en/Groonga/ObjectClosed.html:35(a) +#: doc/reference/en/Groonga/Snippet.html:35(a) +#: doc/reference/en/Groonga/ImproperLink.html:35(a) +#: doc/reference/en/Groonga/TableDumper.html:35(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:35(a) +#: doc/reference/en/Groonga/TooSmallLimit.html:35(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:35(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:35(a) +#: doc/reference/en/Groonga/Hash.html:35(a) +#: doc/reference/en/Groonga/Array.html:35(a) +#: doc/reference/en/Groonga/Encoding.html:35(a) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:35(a) +#: doc/reference/en/Groonga/ConnectionRefused.html:35(a) +#: doc/reference/en/Groonga/OperationWouldBlock.html:35(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:35(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:35(a) +#: doc/reference/en/Groonga/TableCursor.html:35(a) +#: doc/reference/en/Groonga/Procedure.html:37(a) +#: doc/reference/en/Groonga/CASError.html:35(a) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:35(a) +#: doc/reference/en/Groonga/Operator.html:37(a) +#: doc/reference/en/Groonga/Pagination.html:35(a) +#: doc/reference/en/Groonga/InputOutputError.html:35(a) +#: doc/reference/en/Groonga/ViewRecord.html:35(a) +#: doc/reference/en/Groonga/Type.html:35(a) +#: doc/reference/en/Groonga/OperationTimeout.html:35(a) +#: doc/reference/en/Groonga/Database.html:35(a) +#: doc/reference/en/Groonga/InvalidArgument.html:35(a) +#: doc/reference/en/Groonga/Command.html:35(a) +#: doc/reference/en/Groonga/SyntaxError.html:35(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:35(a) +#: doc/reference/en/Groonga/StackOverFlow.html:35(a) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:35(a) +#: doc/reference/en/Groonga/SchemaDumper.html:35(a) +#: doc/reference/en/Groonga/SchemaDumper.html:265(span) +#: doc/reference/en/Groonga/Object.html:35(a) +#: doc/reference/en/Groonga/NoSuchProcess.html:35(a) +#: doc/reference/en/Groonga/HashCursor.html:35(a) +#: doc/reference/en/Groonga/TooSmallOffset.html:35(a) +#: doc/reference/en/Groonga/NoLocksAvailable.html:35(a) +#: doc/reference/en/Groonga/RangeError.html:35(a) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:35(a) +#: doc/reference/en/Groonga/FileCorrupt.html:35(a) +#: doc/reference/en/Groonga/Record.html:35(a) +#: doc/reference/en/Groonga/BadAddress.html:35(a) +#: doc/reference/en/Groonga/ExecFormatError.html:35(a) +#: doc/reference/en/Groonga/View.html:35(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:35(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:35(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:270(span) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:37(a) +#: doc/reference/en/Groonga/ZLibError.html:35(a) +#: doc/reference/en/Groonga/TooLargeOffset.html:35(a) +#: doc/reference/en/Groonga/NotSocket.html:35(a) +#: doc/reference/en/Groonga/QueryLog.html:35(a) +#: doc/reference/en/Groonga/TokenizerError.html:35(a) +#: doc/reference/en/Groonga/NoSuchDevice.html:35(a) +#: doc/reference/en/Groonga/Column.html:35(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:35(a) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:35(a) +#: doc/reference/en/Groonga/NotADirectory.html:35(a) +#: doc/reference/en/Groonga/Closed.html:35(a) +#: doc/reference/en/Groonga/ResourceBusy.html:35(a) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:35(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:35(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:211(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:212(span) +#: doc/reference/en/Groonga/ObjectCorrupt.html:35(a) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:35(a) +#: doc/reference/en/Groonga/PermissionDenied.html:35(a) +#: doc/reference/en/Groonga/IndexCursor.html:37(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:35(a) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:35(a) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:35(a) +#: doc/reference/en/Groonga/InvalidFormat.html:35(a) +#: doc/reference/en/Groonga/Command/Builder.html:35(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:35(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:35(a) +#: doc/reference/en/Groonga/Command/Select.html:35(a) +#: doc/reference/en/Groonga/Posting.html:35(a) +#: doc/reference/en/Groonga/RetryMax.html:35(a) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:35(a) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:35(a) +#: doc/reference/en/Groonga/NetworkIsDown.html:35(a) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:35(a) +#: doc/reference/en/Groonga/AddressIsInUse.html:35(a) +#: doc/reference/en/Groonga/NoBuffer.html:35(a) +#: doc/reference/en/Groonga/IndexColumn.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Parser.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:35(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:35(a) +#: doc/reference/en/Groonga/Table.html:35(a) +#: doc/reference/en/Groonga/SocketNotInitialized.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:35(a) +#: doc/reference/en/Groonga/TooSmallPage.html:35(a) +#: doc/reference/en/Groonga/Plugin.html:35(a) +#: doc/reference/en/Groonga/TooLargePage.html:35(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:35(a) +#: doc/reference/en/Groonga/Variable.html:35(a) +#: doc/reference/en/Groonga/GrntestLog.html:35(a) +#: doc/reference/en/Groonga/IsADirectory.html:35(a) +#: doc/reference/en/Groonga/IllegalByteSequence.html:35(a) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:35(a) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:35(a) +#: doc/reference/en/Groonga/FileTooLarge.html:35(a) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:35(a) +#: doc/reference/en/Groonga/LZOError.html:35(a) +#: doc/reference/en/Groonga/NotEnoughSpace.html:35(a) +#: doc/reference/en/Groonga/NoChildProcesses.html:35(a) +#: doc/reference/en/Groonga/ArrayCursor.html:35(a) +#: doc/reference/en/Groonga/ViewAccessor.html:35(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:35(a) +#: doc/reference/en/Groonga/Table/KeySupport.html:35(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/top-level-namespace.html:88(a) +#: doc/reference/en/method_list.html:86(small) +#: doc/reference/en/method_list.html:358(small) +#: doc/reference/en/method_list.html:390(small) +#: doc/reference/en/method_list.html:3622(small) +#: doc/reference/en/Grn/Table.html:2957(span) +#: doc/reference/en/_index.html:429(a) +msgid "Groonga" msgstr "" -#: doc/reference/en/file.README.html:74(li) doc/reference/en/index.html:74(li) -msgid "Tasuku <a at razil.jp>" +#: doc/reference/en/methods_list.html:82(a) +#: doc/reference/en/methods_list.html:90(a) +#: doc/reference/en/methods_list.html:98(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/method_list.html:76(a) +#: doc/reference/en/method_list.html:92(a) +#: doc/reference/en/method_list.html:100(a) +#: doc/reference/en/method_list.html:108(a) +#: doc/reference/en/method_list.html:116(a) +#: doc/reference/en/method_list.html:124(a) +#: doc/reference/en/method_list.html:132(a) +#: doc/reference/en/method_list.html:140(a) +#: doc/reference/en/method_list.html:148(a) +msgid "#[]" msgstr "" -#: doc/reference/en/file.README.html:75(span) -#: doc/reference/en/file.README.html:104(span) -#: doc/reference/en/index.html:75(span) doc/reference/en/index.html:104(span) -msgid "MORI" +#: doc/reference/en/methods_list.html:92(small) +#: doc/reference/en/methods_list.html:116(small) +#: doc/reference/en/methods_list.html:156(small) +#: doc/reference/en/methods_list.html:236(small) +#: doc/reference/en/methods_list.html:324(small) +#: doc/reference/en/methods_list.html:596(small) +#: doc/reference/en/methods_list.html:884(small) +#: doc/reference/en/Groonga/Command/Builder.html:81(li) +#: doc/reference/en/method_list.html:150(small) +#: doc/reference/en/method_list.html:174(small) +#: doc/reference/en/method_list.html:302(small) +#: doc/reference/en/method_list.html:382(small) +#: doc/reference/en/method_list.html:614(small) +#: doc/reference/en/method_list.html:1198(small) +#: doc/reference/en/method_list.html:1454(small) +#, fuzzy +msgid "Groonga::Command::Builder" +msgstr "Groonga::Column#indexes????" + +#: doc/reference/en/methods_list.html:106(a) +#: doc/reference/en/methods_list.html:114(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/method_list.html:156(a) +#: doc/reference/en/method_list.html:164(a) +#: doc/reference/en/method_list.html:172(a) +#: doc/reference/en/method_list.html:180(a) +#: doc/reference/en/method_list.html:188(a) +#: doc/reference/en/method_list.html:196(a) +msgid "#[]=" msgstr "" -#: doc/reference/en/file.README.html:75(li) doc/reference/en/index.html:75(li) -msgid "Daijiro <morita at razil.jp>" +#: doc/reference/en/methods_list.html:122(a) +#: doc/reference/en/method_list.html:204(a) +#: doc/reference/en/method_list.html:212(a) +#: doc/reference/en/method_list.html:220(a) +msgid "#add" msgstr "" -#: doc/reference/en/file.README.html:76(span) -#: doc/reference/en/index.html:76(span) -msgid "HAYAMIZU" +#: doc/reference/en/methods_list.html:124(small) +#: doc/reference/en/methods_list.html:1180(small) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:81(li) +#: doc/reference/en/method_list.html:214(small) +#: doc/reference/en/method_list.html:2118(small) +msgid "Groonga::Schema::ViewDefinition" msgstr "" -#: doc/reference/en/file.README.html:76(li) doc/reference/en/index.html:76(li) -msgid "Yuto <y.hayamizu at gmail.com>" +#: doc/reference/en/methods_list.html:130(a) +#: doc/reference/en/method_list.html:236(a) +msgid "#add_operation" msgstr "" -#: doc/reference/en/file.README.html:77(span) -#: doc/reference/en/index.html:77(span) -msgid "SHIDARA" +#: doc/reference/en/methods_list.html:132(small) +#: doc/reference/en/methods_list.html:332(small) +#: doc/reference/en/methods_list.html:364(small) +#: doc/reference/en/methods_list.html:540(small) +#: doc/reference/en/methods_list.html:556(small) +#: doc/reference/en/methods_list.html:564(small) +#: doc/reference/en/methods_list.html:620(small) +#: doc/reference/en/methods_list.html:788(small) +#: doc/reference/en/methods_list.html:1052(small) +#: doc/reference/en/methods_list.html:1244(small) +#: doc/reference/en/methods_list.html:1444(small) +#: doc/reference/en/methods_list.html:1668(small) +#: doc/reference/en/methods_list.html:1740(small) +#: doc/reference/en/methods_list.html:1756(small) +#: doc/reference/en/methods_list.html:1764(small) +#: doc/reference/en/methods_list.html:1772(small) +#: doc/reference/en/methods_list.html:1788(small) +#: doc/reference/en/methods_list.html:1804(small) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:81(li) +#: doc/reference/en/method_list.html:238(small) +#: doc/reference/en/method_list.html:622(small) +#: doc/reference/en/method_list.html:670(small) +#: doc/reference/en/method_list.html:1110(small) +#: doc/reference/en/method_list.html:1126(small) +#: doc/reference/en/method_list.html:1134(small) +#: doc/reference/en/method_list.html:1246(small) +#: doc/reference/en/method_list.html:1502(small) +#: doc/reference/en/method_list.html:1854(small) +#: doc/reference/en/method_list.html:2246(small) +#: doc/reference/en/method_list.html:2510(small) +#: doc/reference/en/method_list.html:2814(small) +#: doc/reference/en/method_list.html:2950(small) +#: doc/reference/en/method_list.html:3014(small) +#: doc/reference/en/method_list.html:3022(small) +#: doc/reference/en/method_list.html:3030(small) +#: doc/reference/en/method_list.html:3094(small) +#: doc/reference/en/method_list.html:3110(small) +msgid "Groonga::QueryLog::Statistic" msgstr "" -#: doc/reference/en/file.README.html:77(li) doc/reference/en/index.html:77(li) -msgid " Yoji <dara at shidara.net>" +#: doc/reference/en/methods_list.html:138(a) +#: doc/reference/en/method_list.html:252(a) +msgid "#added?" msgstr "" -#: doc/reference/en/file.README.html:78(li) doc/reference/en/index.html:78(li) -msgid "yoshihara haruka <yoshihara at clear-code.com>" +#: doc/reference/en/methods_list.html:146(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/method_list.html:260(a) +#: doc/reference/en/method_list.html:268(a) +msgid "#append" msgstr "" -#: doc/reference/en/file.README.html:80(h2) doc/reference/en/index.html:80(h2) -msgid "License" -msgstr "?????" +#: doc/reference/en/methods_list.html:154(a) +#: doc/reference/en/method_list.html:300(a) +#, fuzzy +msgid "#arguments" +msgstr "??????" -#: doc/reference/en/file.README.html:81(span) -#: doc/reference/en/index.html:81(span) -msgid "LGPL" +#: doc/reference/en/methods_list.html:162(a) +#: doc/reference/en/method_list.html:308(a) +msgid "#attributes" msgstr "" -#: doc/reference/en/file.README.html:81(p) doc/reference/en/index.html:81(p) -msgid " 2.1. See license/ for details." +#: doc/reference/en/methods_list.html:170(a) +#: doc/reference/en/method_list.html:316(a) +msgid "#available_keys" msgstr "" -" 2.1???????license/????????" -#: doc/reference/en/file.README.html:82(p) doc/reference/en/index.html:82(p) -msgid "" -"(Kouhei Sutou has a right to change the license including contributed " -"patches.)" +#: doc/reference/en/methods_list.html:172(small) +#: doc/reference/en/methods_list.html:860(small) +#: doc/reference/en/methods_list.html:1260(small) +#: doc/reference/en/methods_list.html:2004(small) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:85(li) +#: doc/reference/en/method_list.html:318(small) +#: doc/reference/en/method_list.html:1438(small) +#: doc/reference/en/method_list.html:2262(small) +#: doc/reference/en/method_list.html:3406(small) +msgid "Groonga::Schema::UnknownOptions" msgstr "" -"?????????????????????Kouhei Sutou???????????" -"?????????" - -#: doc/reference/en/file.README.html:84(h2) doc/reference/en/index.html:84(h2) -msgid "Dependencies" -msgstr "????????" -#: doc/reference/en/file.README.html:86(li) doc/reference/en/index.html:86(li) -msgid "Ruby >= 1.8 (including 1.9.2)" -msgstr "Ruby >= 1.8 ?1.9.2???" - -#: doc/reference/en/file.README.html:87(li) doc/reference/en/index.html:87(li) -msgid "groonga >= 1.2.0" +#: doc/reference/en/methods_list.html:178(a) +#: doc/reference/en/method_list.html:324(a) +msgid "#available_page_sizes" msgstr "" -#: doc/reference/en/file.README.html:89(h2) doc/reference/en/index.html:89(h2) -msgid "Install" -msgstr "??????" - -#: doc/reference/en/file.README.html:90(code) -#: doc/reference/en/index.html:90(code) -#: doc/reference/en/file.tutorial.html:62(code) -msgid "% sudo gem install rroonga" +#: doc/reference/en/methods_list.html:180(small) +#: doc/reference/en/methods_list.html:820(small) +#: doc/reference/en/methods_list.html:1316(small) +#: doc/reference/en/Groonga/TooSmallPageSize.html:83(li) +#: doc/reference/en/method_list.html:326(small) +#: doc/reference/en/method_list.html:1638(small) +#: doc/reference/en/method_list.html:2318(small) +msgid "Groonga::TooSmallPageSize" msgstr "" -#: doc/reference/en/file.README.html:92(h2) doc/reference/en/index.html:92(h2) -msgid "Documents" -msgstr "??????" +#: doc/reference/en/methods_list.html:186(a) +#: doc/reference/en/methods_list.html:194(a) +#: doc/reference/en/method_list.html:332(a) +#: doc/reference/en/method_list.html:340(a) +msgid "#available_pages" +msgstr "" -#: doc/reference/en/file.README.html:94(a) doc/reference/en/index.html:94(a) -msgid "Reference manual in English" -msgstr "???????????????" - -#: doc/reference/en/file.README.html:95(a) doc/reference/en/index.html:95(a) -msgid "Reference manual in Japanese" -msgstr "????????????????" - -#: doc/reference/en/file.README.html:97(h2) doc/reference/en/index.html:97(h2) -msgid "Mailing list" -msgstr "????????" - -#: doc/reference/en/file.README.html:99(a) doc/reference/en/index.html:99(a) -msgid "groonga-users-en" +#: doc/reference/en/methods_list.html:188(small) +#: doc/reference/en/methods_list.html:900(small) +#: doc/reference/en/methods_list.html:1300(small) +#: doc/reference/en/Groonga/TooSmallPage.html:83(li) +#: doc/reference/en/method_list.html:342(small) +#: doc/reference/en/method_list.html:1670(small) +#: doc/reference/en/method_list.html:2302(small) +msgid "Groonga::TooSmallPage" msgstr "" -#: doc/reference/en/file.README.html:99(li) doc/reference/en/index.html:99(li) -msgid "English: " -msgstr "??: " - -#: doc/reference/en/file.README.html:100(a) doc/reference/en/index.html:100(a) -msgid "groonga-dev" +#: doc/reference/en/methods_list.html:196(small) +#: doc/reference/en/methods_list.html:868(small) +#: doc/reference/en/methods_list.html:1308(small) +#: doc/reference/en/Groonga/TooLargePage.html:83(li) +#: doc/reference/en/method_list.html:334(small) +#: doc/reference/en/method_list.html:1694(small) +#: doc/reference/en/method_list.html:2310(small) +msgid "Groonga::TooLargePage" msgstr "" -#: doc/reference/en/file.README.html:100(li) -#: doc/reference/en/index.html:100(li) -msgid "Japanese: " -msgstr "???: " - -#: doc/reference/en/file.README.html:104(li) -#: doc/reference/en/index.html:104(li) -msgid "Daijiro : sent patches to support the latest groonga." -msgstr "???: ??groonga????????????" - -#: doc/reference/en/file.README.html:105(li) -#: doc/reference/en/index.html:105(li) -msgid "Tasuku : sent bug reports." -msgstr "??????: ???????????????" - -#: doc/reference/en/file.README.html:106(li) -#: doc/reference/en/index.html:106(li) -msgid "niku: sent bug reports." -msgstr "????: ???????????????" - -#: doc/reference/en/file.README.html:109(li) -#: doc/reference/en/index.html:109(li) -msgid "wrote tests." -msgstr "?????????????" - -#: doc/reference/en/file.README.html:110(li) -#: doc/reference/en/index.html:110(li) -msgid "fixed bugs." -msgstr "????????????" - -#: doc/reference/en/file.README.html:107(li) -#: doc/reference/en/index.html:107(li) -msgid "" -"dara:
    \n" -"\t\t
" +#: doc/reference/en/methods_list.html:202(a) +#: doc/reference/en/method_list.html:348(a) +msgid "#available_types" msgstr "" -"dara??:
    \n" -"\t\t
" - -#: doc/reference/en/file.README.html:112(li) -#: doc/reference/en/index.html:112(li) -msgid "id:mat_aki: sent bug reports." -msgstr "id:mat_aki??: ???????????????" - -#: doc/reference/en/file.README.html:113(li) -#: doc/reference/en/index.html:113(li) -msgid "@yune_kotomi: sent a bug report." -msgstr "@yune_kotomi??: ???????????????" - -#: doc/reference/en/file.README.html:114(li) -#: doc/reference/en/index.html:114(li) -msgid "m_seki: sent bug reports." -msgstr "???: ???????????????" - -#: doc/reference/en/file.README.html:115(li) -#: doc/reference/en/index.html:115(li) -msgid "ono matope: sent bug reports." -msgstr "???????: ???????????????" - -#: doc/reference/en/file.README.html:116(li) -#: doc/reference/en/index.html:116(li) -msgid "@kamipo: send a bug report." -msgstr "@kamipo??: ???????????????" - -#: doc/reference/en/file.README.html:117(li) -#: doc/reference/en/index.html:117(li) -msgid "ongaeshi: sent a patch to build gem on Windows." -msgstr "ongaeshi??: Windows??gem???????????????????" -#: doc/reference/en/file.README.html:118(li) -#: doc/reference/en/index.html:118(li) -msgid "mallowlabs: send a patch." +#: doc/reference/en/methods_list.html:204(small) +#: doc/reference/en/methods_list.html:844(small) +#: doc/reference/en/methods_list.html:1980(small) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:85(li) +#: doc/reference/en/method_list.html:350(small) +#: doc/reference/en/method_list.html:1718(small) +#: doc/reference/en/method_list.html:3374(small) +msgid "Groonga::Schema::UnknownTableType" msgstr "" -#: doc/reference/en/Groonga.html:6(title) -msgid "Module: Groonga — rroonga" +#: doc/reference/en/methods_list.html:210(a) +#: doc/reference/en/Groonga.html:160(strong) +#: doc/reference/en/Groonga.html:281(strong) +#: doc/reference/en/Groonga.html:311(span) +#: doc/reference/en/method_list.html:356(a) +msgid "bindings_version" msgstr "" -#: doc/reference/en/Groonga.html:36(a) -#: doc/reference/en/Groonga/GrntestLog.html:36(a) -msgid "Index (G)" +#: doc/reference/en/methods_list.html:218(a) +#: doc/reference/en/method_list.html:364(a) +msgid "#bit" msgstr "" -#: doc/reference/en/Groonga.html:39(span) -#: doc/reference/en/Groonga/Logger.html:37(a) -#: doc/reference/en/Groonga/TooManyLinks.html:37(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:37(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:37(a) -#: doc/reference/en/Groonga/Accessor.html:37(a) -#: doc/reference/en/Groonga/FileExists.html:37(a) -#: doc/reference/en/Groonga/EncodingSupport.html:37(a) -#: doc/reference/en/Groonga/Schema/Error.html:37(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:37(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:37(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:37(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:37(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:37(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:37(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:37(a) -#: doc/reference/en/Groonga/BrokenPipe.html:37(a) -#: doc/reference/en/Groonga/Context.html:37(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:37(a) -#: doc/reference/en/Groonga/Schema.html:37(a) -#: doc/reference/en/Groonga/Schema.html:110(span) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/Schema.html:889(span) -#: doc/reference/en/Groonga/Schema.html:987(span) -#: doc/reference/en/Groonga/Schema.html:1102(span) -#: doc/reference/en/Groonga/Schema.html:1632(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1877(span) -#: doc/reference/en/Groonga/Schema.html:1882(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Schema.html:1884(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1996(span) -#: doc/reference/en/Groonga/Schema.html:2213(span) -#: doc/reference/en/Groonga/Schema.html:2261(span) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:37(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:37(a) -#: doc/reference/en/Groonga/DomainError.html:37(a) -#: doc/reference/en/Groonga/UnknownError.html:37(a) -#: doc/reference/en/Groonga/Expression.html:37(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:37(a) -#: doc/reference/en/Groonga/Error.html:37(a) -#: doc/reference/en/Groonga/EndOfData.html:37(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:37(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:37(a) -#: doc/reference/en/Groonga/InvalidSeek.html:37(a) -#: doc/reference/en/Groonga/ViewCursor.html:37(a) -#: doc/reference/en/Groonga/Snippet.html:37(a) -#: doc/reference/en/Groonga/ImproperLink.html:37(a) -#: doc/reference/en/Groonga/TableDumper.html:37(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:37(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:37(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:37(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:37(a) -#: doc/reference/en/Groonga/Hash.html:37(a) -#: doc/reference/en/Groonga/Hash.html:266(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:276(span) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:288(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Array.html:37(a) -#: doc/reference/en/Groonga/Array.html:240(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:250(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Encoding.html:37(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:37(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:37(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:37(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:37(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:37(a) -#: doc/reference/en/Groonga/TableCursor.html:37(a) -#: doc/reference/en/Groonga/Procedure.html:37(a) -#: doc/reference/en/Groonga/CASError.html:37(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:37(a) -#: doc/reference/en/Groonga/Operator.html:37(a) -#: doc/reference/en/Groonga/Pagination.html:37(a) -#: doc/reference/en/Groonga/InputOutputError.html:37(a) -#: doc/reference/en/Groonga/ViewRecord.html:37(a) -#: doc/reference/en/Groonga/Type.html:37(a) -#: doc/reference/en/Groonga/OperationTimeout.html:37(a) -#: doc/reference/en/Groonga/Database.html:37(a) -#: doc/reference/en/Groonga/InvalidArgument.html:37(a) -#: doc/reference/en/Groonga/Command.html:37(a) -#: doc/reference/en/Groonga/SyntaxError.html:37(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:37(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:298(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:310(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:322(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/StackOverFlow.html:37(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:37(a) -#: doc/reference/en/Groonga/SchemaDumper.html:37(a) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/Object.html:37(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:37(a) -#: doc/reference/en/Groonga/HashCursor.html:37(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:37(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:37(a) -#: doc/reference/en/Groonga/RangeError.html:37(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:37(a) -#: doc/reference/en/Groonga/FileCorrupt.html:37(a) -#: doc/reference/en/Groonga/Record.html:37(a) -#: doc/reference/en/Groonga/BadAddress.html:37(a) -#: doc/reference/en/Groonga/ExecFormatError.html:37(a) -#: doc/reference/en/Groonga/View.html:37(a) -#: doc/reference/en/Groonga/View.html:308(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/FilenameTooLong.html:37(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:37(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:37(a) -#: doc/reference/en/Groonga/ZLibError.html:37(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:37(a) -#: doc/reference/en/Groonga/NotSocket.html:37(a) -#: doc/reference/en/Groonga/QueryLog.html:37(a) -#: doc/reference/en/Groonga/TokenizerError.html:37(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:37(a) -#: doc/reference/en/Groonga/Column.html:37(a) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:37(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:37(a) -#: doc/reference/en/Groonga/NotADirectory.html:37(a) -#: doc/reference/en/Groonga/Closed.html:37(a) -#: doc/reference/en/Groonga/ResourceBusy.html:37(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:37(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:37(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:435(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:447(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:459(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/ObjectCorrupt.html:37(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:37(a) -#: doc/reference/en/Groonga/PermissionDenied.html:37(a) -#: doc/reference/en/Groonga/IndexCursor.html:37(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:37(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:37(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:37(a) -#: doc/reference/en/Groonga/InvalidFormat.html:37(a) -#: doc/reference/en/Groonga/Command/Builder.html:37(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:37(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:37(a) -#: doc/reference/en/Groonga/Command/Select.html:37(a) -#: doc/reference/en/Groonga/Posting.html:37(a) -#: doc/reference/en/Groonga/RetryMax.html:37(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:37(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:37(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:37(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:37(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:37(a) -#: doc/reference/en/Groonga/NoBuffer.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:37(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:37(a) -#: doc/reference/en/Groonga/Table.html:37(a) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/SocketNotInitialized.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:37(a) -#: doc/reference/en/Groonga/TooSmallPage.html:37(a) -#: doc/reference/en/Groonga/Plugin.html:37(a) -#: doc/reference/en/Groonga/TooLargePage.html:37(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:37(a) -#: doc/reference/en/Groonga/Variable.html:37(a) -#: doc/reference/en/Groonga/GrntestLog.html:37(a) -#: doc/reference/en/Groonga/IsADirectory.html:37(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:37(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:37(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:37(a) -#: doc/reference/en/Groonga/FileTooLarge.html:37(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:37(a) -#: doc/reference/en/Groonga/LZOError.html:37(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:37(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:37(a) -#: doc/reference/en/Groonga/ArrayCursor.html:37(a) -#: doc/reference/en/Groonga/ViewAccessor.html:37(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:37(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:37(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:824(span) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/method_list.html:86(small) -#: doc/reference/en/method_list.html:358(small) -#: doc/reference/en/method_list.html:390(small) -#: doc/reference/en/method_list.html:3622(small) -#: doc/reference/en/Grn/Table.html:2957(span) -#: doc/reference/en/_index.html:425(a) -msgid "Groonga" +#: doc/reference/en/methods_list.html:220(small) +#: doc/reference/en/methods_list.html:372(small) +#: doc/reference/en/methods_list.html:380(small) +#: doc/reference/en/methods_list.html:444(small) +#: doc/reference/en/methods_list.html:484(small) +#: doc/reference/en/methods_list.html:692(small) +#: doc/reference/en/methods_list.html:700(small) +#: doc/reference/en/methods_list.html:748(small) +#: doc/reference/en/methods_list.html:1084(small) +#: doc/reference/en/methods_list.html:1116(small) +#: doc/reference/en/methods_list.html:1284(small) +#: doc/reference/en/methods_list.html:1388(small) +#: doc/reference/en/methods_list.html:1436(small) +#: doc/reference/en/methods_list.html:1708(small) +#: doc/reference/en/methods_list.html:1964(small) +#: doc/reference/en/methods_list.html:1988(small) +#: doc/reference/en/methods_list.html:1996(small) +#: doc/reference/en/methods_list.html:2068(small) +#: doc/reference/en/methods_list.html:2116(small) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:81(li) +#: doc/reference/en/method_list.html:366(small) +#: doc/reference/en/method_list.html:678(small) +#: doc/reference/en/method_list.html:686(small) +#: doc/reference/en/method_list.html:806(small) +#: doc/reference/en/method_list.html:998(small) +#: doc/reference/en/method_list.html:1342(small) +#: doc/reference/en/method_list.html:1350(small) +#: doc/reference/en/method_list.html:1462(small) +#: doc/reference/en/method_list.html:1950(small) +#: doc/reference/en/method_list.html:2022(small) +#: doc/reference/en/method_list.html:2286(small) +#: doc/reference/en/method_list.html:2414(small) +#: doc/reference/en/method_list.html:2494(small) +#: doc/reference/en/method_list.html:2870(small) +#: doc/reference/en/method_list.html:3342(small) +#: doc/reference/en/method_list.html:3382(small) +#: doc/reference/en/method_list.html:3390(small) +#: doc/reference/en/method_list.html:3502(small) +#: doc/reference/en/method_list.html:3614(small) +msgid "Groonga::GrntestLog::EnvironmentEvent" msgstr "" -#: doc/reference/en/Groonga.html:59(h1) -msgid "Module: Groonga" +#: doc/reference/en/methods_list.html:226(a) +#: doc/reference/en/method_list.html:372(a) +msgid "#boolean" msgstr "" -#: doc/reference/en/Groonga.html:74(dt) -#: doc/reference/en/Groonga/Logger.html:89(dt) -#: doc/reference/en/Groonga/TooManyLinks.html:93(dt) -#: doc/reference/en/Groonga/OperationNotPermitted.html:93(dt) -#: doc/reference/en/Groonga/BadFileDescriptor.html:93(dt) -#: doc/reference/en/Groonga/Accessor.html:91(dt) -#: doc/reference/en/Groonga/FileExists.html:93(dt) -#: doc/reference/en/Groonga/EncodingSupport.html:78(dt) -#: doc/reference/en/Groonga/Schema/Error.html:93(dt) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:89(dt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:93(dt) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:95(dt) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:95(dt) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:95(dt) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:95(dt) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:95(dt) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:95(dt) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:95(dt) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:95(dt) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:95(dt) -#: doc/reference/en/Groonga/BrokenPipe.html:93(dt) -#: doc/reference/en/Groonga/Context.html:89(dt) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:93(dt) -#: doc/reference/en/Groonga/Schema.html:89(dt) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:93(dt) -#: doc/reference/en/Groonga/ResultTooLarge.html:93(dt) -#: doc/reference/en/Groonga/DomainError.html:93(dt) -#: doc/reference/en/Groonga/UnknownError.html:93(dt) -#: doc/reference/en/Groonga/Expression.html:91(dt) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:93(dt) -#: doc/reference/en/Groonga/Error.html:91(dt) -#: doc/reference/en/Groonga/EndOfData.html:93(dt) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:93(dt) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:93(dt) -#: doc/reference/en/Groonga/InvalidSeek.html:93(dt) -#: doc/reference/en/Groonga/ViewCursor.html:91(dt) -#: doc/reference/en/Groonga/Snippet.html:91(dt) -#: doc/reference/en/Groonga/ImproperLink.html:93(dt) -#: doc/reference/en/Groonga/TableDumper.html:89(dt) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:93(dt) -#: doc/reference/en/Groonga/TooSmallLimit.html:93(dt) -#: doc/reference/en/Groonga/VariableSizeColumn.html:93(dt) -#: doc/reference/en/Groonga/NoSuchColumn.html:93(dt) -#: doc/reference/en/Groonga/Hash.html:97(dt) -#: doc/reference/en/Groonga/Array.html:93(dt) -#: doc/reference/en/Groonga/Encoding.html:74(dt) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:93(dt) -#: doc/reference/en/Groonga/ConnectionRefused.html:93(dt) -#: doc/reference/en/Groonga/OperationWouldBlock.html:93(dt) -#: doc/reference/en/Groonga/FixSizeColumn.html:93(dt) -#: doc/reference/en/Groonga/TooSmallPageSize.html:93(dt) -#: doc/reference/en/Groonga/TableCursor.html:93(dt) -#: doc/reference/en/Groonga/Procedure.html:91(dt) -#: doc/reference/en/Groonga/CASError.html:93(dt) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:93(dt) -#: doc/reference/en/Groonga/Operator.html:74(dt) -#: doc/reference/en/Groonga/Pagination.html:74(dt) -#: doc/reference/en/Groonga/InputOutputError.html:93(dt) -#: doc/reference/en/Groonga/ViewRecord.html:89(dt) -#: doc/reference/en/Groonga/Type.html:91(dt) -#: doc/reference/en/Groonga/OperationTimeout.html:93(dt) -#: doc/reference/en/Groonga/Database.html:95(dt) -#: doc/reference/en/Groonga/InvalidArgument.html:93(dt) -#: doc/reference/en/Groonga/Command.html:74(dt) -#: doc/reference/en/Groonga/SyntaxError.html:93(dt) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:97(dt) -#: doc/reference/en/Groonga/StackOverFlow.html:93(dt) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:93(dt) -#: doc/reference/en/Groonga/SchemaDumper.html:89(dt) -#: doc/reference/en/Groonga/Object.html:89(dt) -#: doc/reference/en/Groonga/NoSuchProcess.html:93(dt) -#: doc/reference/en/Groonga/HashCursor.html:95(dt) -#: doc/reference/en/Groonga/TooSmallOffset.html:93(dt) -#: doc/reference/en/Groonga/NoLocksAvailable.html:93(dt) -#: doc/reference/en/Groonga/RangeError.html:93(dt) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:93(dt) -#: doc/reference/en/Groonga/FileCorrupt.html:93(dt) -#: doc/reference/en/Groonga/Record.html:89(dt) -#: doc/reference/en/Groonga/BadAddress.html:93(dt) -#: doc/reference/en/Groonga/ExecFormatError.html:93(dt) -#: doc/reference/en/Groonga/View.html:93(dt) -#: doc/reference/en/Groonga/FilenameTooLong.html:93(dt) -#: doc/reference/en/Groonga/DatabaseDumper.html:89(dt) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:95(dt) -#: doc/reference/en/Groonga/ZLibError.html:93(dt) -#: doc/reference/en/Groonga/TooLargeOffset.html:93(dt) -#: doc/reference/en/Groonga/NotSocket.html:93(dt) -#: doc/reference/en/Groonga/QueryLog.html:74(dt) -#: doc/reference/en/Groonga/TokenizerError.html:93(dt) -#: doc/reference/en/Groonga/NoSuchDevice.html:93(dt) -#: doc/reference/en/Groonga/Column.html:91(dt) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:93(dt) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:93(dt) -#: doc/reference/en/Groonga/NotADirectory.html:93(dt) -#: doc/reference/en/Groonga/Closed.html:93(dt) -#: doc/reference/en/Groonga/ResourceBusy.html:93(dt) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:93(dt) -#: doc/reference/en/Groonga/PatriciaTrie.html:97(dt) -#: doc/reference/en/Groonga/ObjectCorrupt.html:93(dt) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:93(dt) -#: doc/reference/en/Groonga/PermissionDenied.html:93(dt) -#: doc/reference/en/Groonga/IndexCursor.html:95(dt) -#: doc/reference/en/Groonga/OperationNotSupported.html:93(dt) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:93(dt) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:74(dt) -#: doc/reference/en/Groonga/InvalidFormat.html:93(dt) -#: doc/reference/en/Groonga/Command/Builder.html:89(dt) -#: doc/reference/en/Groonga/Command/Select/Result.html:91(dt) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:91(dt) -#: doc/reference/en/Groonga/Command/Select.html:89(dt) -#: doc/reference/en/Groonga/Posting.html:89(dt) -#: doc/reference/en/Groonga/RetryMax.html:93(dt) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:93(dt) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:93(dt) -#: doc/reference/en/Groonga/NetworkIsDown.html:93(dt) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:93(dt) -#: doc/reference/en/Groonga/AddressIsInUse.html:93(dt) -#: doc/reference/en/Groonga/NoBuffer.html:93(dt) -#: doc/reference/en/Groonga/QueryLog/Parser.html:89(dt) -#: doc/reference/en/Groonga/QueryLog/Command.html:89(dt) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:89(dt) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:91(dt) -#: doc/reference/en/Groonga/Table.html:95(dt) -#: doc/reference/en/Groonga/SocketNotInitialized.html:93(dt) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:89(dt) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:89(dt) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:89(dt) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:89(dt) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:91(dt) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:89(dt) -#: doc/reference/en/Groonga/TooSmallPage.html:93(dt) -#: doc/reference/en/Groonga/Plugin.html:89(dt) -#: doc/reference/en/Groonga/TooLargePage.html:93(dt) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:93(dt) -#: doc/reference/en/Groonga/Variable.html:91(dt) -#: doc/reference/en/Groonga/GrntestLog.html:74(dt) -#: doc/reference/en/Groonga/IsADirectory.html:93(dt) -#: doc/reference/en/Groonga/IllegalByteSequence.html:93(dt) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:93(dt) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:95(dt) -#: doc/reference/en/Groonga/FileTooLarge.html:93(dt) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:93(dt) -#: doc/reference/en/Groonga/LZOError.html:93(dt) -#: doc/reference/en/Groonga/NotEnoughSpace.html:93(dt) -#: doc/reference/en/Groonga/NoChildProcesses.html:93(dt) -#: doc/reference/en/Groonga/ArrayCursor.html:91(dt) -#: doc/reference/en/Groonga/ViewAccessor.html:91(dt) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:93(dt) -#: doc/reference/en/Groonga/Table/KeySupport.html:82(dt) -#: doc/reference/en/Grn/Table.html:95(dt) -msgid "Defined in:" +#: doc/reference/en/methods_list.html:228(small) +#: doc/reference/en/methods_list.html:300(small) +#: doc/reference/en/methods_list.html:644(small) +#: doc/reference/en/methods_list.html:732(small) +#: doc/reference/en/methods_list.html:980(small) +#: doc/reference/en/methods_list.html:988(small) +#: doc/reference/en/methods_list.html:996(small) +#: doc/reference/en/methods_list.html:1004(small) +#: doc/reference/en/methods_list.html:1092(small) +#: doc/reference/en/methods_list.html:1212(small) +#: doc/reference/en/methods_list.html:1492(small) +#: doc/reference/en/methods_list.html:1540(small) +#: doc/reference/en/methods_list.html:1564(small) +#: doc/reference/en/methods_list.html:1604(small) +#: doc/reference/en/methods_list.html:1748(small) +#: doc/reference/en/methods_list.html:1908(small) +#: doc/reference/en/methods_list.html:1916(small) +#: doc/reference/en/methods_list.html:1924(small) +#: doc/reference/en/methods_list.html:1956(small) +#: doc/reference/en/methods_list.html:2020(small) +#: doc/reference/en/methods_list.html:2028(small) +#: doc/reference/en/methods_list.html:2036(small) +#: doc/reference/en/methods_list.html:2044(small) +#: doc/reference/en/methods_list.html:2148(small) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:81(li) +#: doc/reference/en/method_list.html:374(small) +#: doc/reference/en/method_list.html:534(small) +#: doc/reference/en/method_list.html:1270(small) +#: doc/reference/en/method_list.html:1406(small) +#: doc/reference/en/method_list.html:1758(small) +#: doc/reference/en/method_list.html:1766(small) +#: doc/reference/en/method_list.html:1774(small) +#: doc/reference/en/method_list.html:1782(small) +#: doc/reference/en/method_list.html:1974(small) +#: doc/reference/en/method_list.html:2094(small) +#: doc/reference/en/method_list.html:2574(small) +#: doc/reference/en/method_list.html:2662(small) +#: doc/reference/en/method_list.html:2686(small) +#: doc/reference/en/method_list.html:2758(small) +#: doc/reference/en/method_list.html:2998(small) +#: doc/reference/en/method_list.html:3286(small) +#: doc/reference/en/method_list.html:3294(small) +#: doc/reference/en/method_list.html:3302(small) +#: doc/reference/en/method_list.html:3334(small) +#: doc/reference/en/method_list.html:3454(small) +#: doc/reference/en/method_list.html:3462(small) +#: doc/reference/en/method_list.html:3470(small) +#: doc/reference/en/method_list.html:3478(small) +#: doc/reference/en/method_list.html:3646(small) +msgid "Groonga::Schema::TableDefinition" msgstr "" -#: doc/reference/en/Groonga.html:75(span) -msgid "" -",
lib/groonga/schema.rb,
lib/groonga/record.rb,
lib/groonga/" -"dumper.rb,
lib/groonga/context.rb,
lib/groonga/posting.rb,
" -"lib/groonga/command.rb,
lib/groonga/query-log.rb,
ext/groonga/rb-" -"groonga.c,
lib/groonga/pagination.rb,
lib/groonga/view-record.rb," -"
lib/groonga/grntest-log.rb,
lib/groonga/patricia-trie.rb,
" -"lib/groonga/expression-builder.rb,
lib/groonga/expression-builder-19.rb" +#: doc/reference/en/methods_list.html:234(a) +#: doc/reference/en/method_list.html:380(a) +msgid "#build" msgstr "" -#: doc/reference/en/Groonga.html:75(dd) -msgid "lib/groonga.rb" +#: doc/reference/en/methods_list.html:242(a) +#: doc/reference/en/Groonga.html:184(strong) +#: doc/reference/en/Groonga.html:322(strong) +#: doc/reference/en/Groonga.html:352(span) +#: doc/reference/en/method_list.html:388(a) +msgid "build_version" msgstr "" -#: doc/reference/en/Groonga.html:82(h2) -#: doc/reference/en/Groonga/Logger.html:95(h2) -#: doc/reference/en/Groonga/TooManyLinks.html:99(h2) -#: doc/reference/en/Groonga/OperationNotPermitted.html:99(h2) -#: doc/reference/en/Groonga/BadFileDescriptor.html:99(h2) -#: doc/reference/en/Groonga/Accessor.html:97(h2) -#: doc/reference/en/Groonga/FileExists.html:99(h2) -#: doc/reference/en/Groonga/EncodingSupport.html:84(h2) -#: doc/reference/en/Groonga/Schema/Error.html:99(h2) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:95(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:99(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:101(h2) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:101(h2) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:101(h2) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:101(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:101(h2) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:101(h2) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:101(h2) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:101(h2) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:101(h2) -#: doc/reference/en/Groonga/BrokenPipe.html:99(h2) -#: doc/reference/en/Groonga/Context.html:97(h2) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:99(h2) -#: doc/reference/en/Groonga/Schema.html:95(h2) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:99(h2) -#: doc/reference/en/Groonga/ResultTooLarge.html:99(h2) -#: doc/reference/en/Groonga/DomainError.html:99(h2) -#: doc/reference/en/Groonga/UnknownError.html:99(h2) -#: doc/reference/en/Groonga/Expression.html:97(h2) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:99(h2) -#: doc/reference/en/Groonga/Error.html:97(h2) -#: doc/reference/en/Groonga/EndOfData.html:99(h2) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:99(h2) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:99(h2) -#: doc/reference/en/Groonga/InvalidSeek.html:99(h2) -#: doc/reference/en/Groonga/ViewCursor.html:97(h2) -#: doc/reference/en/Groonga/Snippet.html:97(h2) -#: doc/reference/en/Groonga/ImproperLink.html:99(h2) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:99(h2) -#: doc/reference/en/Groonga/TooSmallLimit.html:99(h2) -#: doc/reference/en/Groonga/VariableSizeColumn.html:99(h2) -#: doc/reference/en/Groonga/NoSuchColumn.html:99(h2) -#: doc/reference/en/Groonga/Hash.html:103(h2) -#: doc/reference/en/Groonga/Array.html:99(h2) -#: doc/reference/en/Groonga/Encoding.html:80(h2) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:99(h2) -#: doc/reference/en/Groonga/ConnectionRefused.html:99(h2) -#: doc/reference/en/Groonga/OperationWouldBlock.html:99(h2) -#: doc/reference/en/Groonga/FixSizeColumn.html:99(h2) -#: doc/reference/en/Groonga/TableCursor.html:99(h2) -#: doc/reference/en/Groonga/CASError.html:99(h2) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:99(h2) -#: doc/reference/en/Groonga/Pagination.html:80(h2) -#: doc/reference/en/Groonga/InputOutputError.html:99(h2) -#: doc/reference/en/Groonga/Type.html:97(h2) -#: doc/reference/en/Groonga/OperationTimeout.html:99(h2) -#: doc/reference/en/Groonga/Database.html:101(h2) -#: doc/reference/en/Groonga/InvalidArgument.html:99(h2) -#: doc/reference/en/Groonga/SyntaxError.html:99(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:103(h2) -#: doc/reference/en/Groonga/StackOverFlow.html:99(h2) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:99(h2) -#: doc/reference/en/Groonga/SchemaDumper.html:95(h2) -#: doc/reference/en/Groonga/Object.html:95(h2) -#: doc/reference/en/Groonga/NoSuchProcess.html:99(h2) -#: doc/reference/en/Groonga/HashCursor.html:101(h2) -#: doc/reference/en/Groonga/TooSmallOffset.html:99(h2) -#: doc/reference/en/Groonga/NoLocksAvailable.html:99(h2) -#: doc/reference/en/Groonga/RangeError.html:99(h2) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:99(h2) -#: doc/reference/en/Groonga/FileCorrupt.html:99(h2) -#: doc/reference/en/Groonga/BadAddress.html:99(h2) -#: doc/reference/en/Groonga/ExecFormatError.html:99(h2) -#: doc/reference/en/Groonga/View.html:99(h2) -#: doc/reference/en/Groonga/FilenameTooLong.html:99(h2) -#: doc/reference/en/Groonga/DatabaseDumper.html:95(h2) -#: doc/reference/en/Groonga/ZLibError.html:99(h2) -#: doc/reference/en/Groonga/TooLargeOffset.html:99(h2) -#: doc/reference/en/Groonga/NotSocket.html:99(h2) -#: doc/reference/en/Groonga/TokenizerError.html:99(h2) -#: doc/reference/en/Groonga/NoSuchDevice.html:99(h2) -#: doc/reference/en/Groonga/Column.html:97(h2) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:99(h2) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:99(h2) -#: doc/reference/en/Groonga/NotADirectory.html:99(h2) -#: doc/reference/en/Groonga/Closed.html:99(h2) -#: doc/reference/en/Groonga/ResourceBusy.html:99(h2) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:99(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:105(h2) -#: doc/reference/en/Groonga/ObjectCorrupt.html:99(h2) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:99(h2) -#: doc/reference/en/Groonga/PermissionDenied.html:99(h2) -#: doc/reference/en/Groonga/OperationNotSupported.html:99(h2) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:99(h2) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:80(h2) -#: doc/reference/en/Groonga/InvalidFormat.html:99(h2) -#: doc/reference/en/Groonga/Posting.html:95(h2) -#: doc/reference/en/Groonga/RetryMax.html:99(h2) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:99(h2) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:99(h2) -#: doc/reference/en/Groonga/NetworkIsDown.html:99(h2) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:99(h2) -#: doc/reference/en/Groonga/AddressIsInUse.html:99(h2) -#: doc/reference/en/Groonga/NoBuffer.html:99(h2) -#: doc/reference/en/Groonga/Table.html:103(h2) -#: doc/reference/en/Groonga/SocketNotInitialized.html:99(h2) -#: doc/reference/en/Groonga/Plugin.html:95(h2) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:99(h2) -#: doc/reference/en/Groonga/Variable.html:97(h2) -#: doc/reference/en/Groonga/IsADirectory.html:99(h2) -#: doc/reference/en/Groonga/IllegalByteSequence.html:99(h2) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:99(h2) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:101(h2) -#: doc/reference/en/Groonga/FileTooLarge.html:99(h2) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:99(h2) -#: doc/reference/en/Groonga/LZOError.html:99(h2) -#: doc/reference/en/Groonga/NotEnoughSpace.html:99(h2) -#: doc/reference/en/Groonga/NoChildProcesses.html:99(h2) -#: doc/reference/en/Groonga/ArrayCursor.html:97(h2) -#: doc/reference/en/Groonga/ViewAccessor.html:97(h2) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:99(h2) -#: doc/reference/en/Groonga/Table/KeySupport.html:88(h2) -msgid "Overview" +#: doc/reference/en/methods_list.html:250(a) +#: doc/reference/en/method_list.html:412(a) +msgid "#change_table" msgstr "" -#: doc/reference/en/Groonga.html:84(p) -msgid "Copyright ? 2011 Kouhei Sutou <kou at clear-code.com>" +#: doc/reference/en/methods_list.html:252(small) +#: doc/reference/en/methods_list.html:260(small) +#: doc/reference/en/methods_list.html:268(small) +#: doc/reference/en/methods_list.html:276(small) +#: doc/reference/en/methods_list.html:404(small) +#: doc/reference/en/methods_list.html:412(small) +#: doc/reference/en/methods_list.html:420(small) +#: doc/reference/en/methods_list.html:428(small) +#: doc/reference/en/methods_list.html:460(small) +#: doc/reference/en/methods_list.html:468(small) +#: doc/reference/en/methods_list.html:508(small) +#: doc/reference/en/methods_list.html:532(small) +#: doc/reference/en/methods_list.html:804(small) +#: doc/reference/en/methods_list.html:1548(small) +#: doc/reference/en/methods_list.html:1556(small) +#: doc/reference/en/methods_list.html:1572(small) +#: doc/reference/en/methods_list.html:1580(small) +#: doc/reference/en/methods_list.html:1588(small) +#: doc/reference/en/methods_list.html:1596(small) +#: doc/reference/en/methods_list.html:1612(small) +#: doc/reference/en/methods_list.html:1620(small) +#: doc/reference/en/methods_list.html:1628(small) +#: doc/reference/en/methods_list.html:1636(small) +#: doc/reference/en/methods_list.html:1644(small) +#: doc/reference/en/methods_list.html:1652(small) +#: doc/reference/en/Groonga/Schema.html:81(li) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/method_list.html:406(small) +#: doc/reference/en/method_list.html:414(small) +#: doc/reference/en/method_list.html:422(small) +#: doc/reference/en/method_list.html:430(small) +#: doc/reference/en/method_list.html:758(small) +#: doc/reference/en/method_list.html:766(small) +#: doc/reference/en/method_list.html:774(small) +#: doc/reference/en/method_list.html:782(small) +#: doc/reference/en/method_list.html:894(small) +#: doc/reference/en/method_list.html:902(small) +#: doc/reference/en/method_list.html:1030(small) +#: doc/reference/en/method_list.html:1062(small) +#: doc/reference/en/method_list.html:1614(small) +#: doc/reference/en/method_list.html:2670(small) +#: doc/reference/en/method_list.html:2678(small) +#: doc/reference/en/method_list.html:2694(small) +#: doc/reference/en/method_list.html:2702(small) +#: doc/reference/en/method_list.html:2710(small) +#: doc/reference/en/method_list.html:2718(small) +#: doc/reference/en/method_list.html:2742(small) +#: doc/reference/en/method_list.html:2750(small) +#: doc/reference/en/method_list.html:2766(small) +#: doc/reference/en/method_list.html:2774(small) +#: doc/reference/en/method_list.html:2790(small) +#: doc/reference/en/method_list.html:2798(small) +msgid "Groonga::Schema" msgstr "" -#: doc/reference/en/Groonga.html:86(span) -#: doc/reference/en/Groonga.html:90(span) -#: doc/reference/en/Groonga.html:92(span) -msgid "GNU" +#: doc/reference/en/methods_list.html:258(a) +#: doc/reference/en/Groonga/Schema.html:246(strong) +#: doc/reference/en/Groonga/Schema.html:527(strong) +#: doc/reference/en/Groonga/Schema.html:917(strong) +#: doc/reference/en/Groonga/Schema.html:928(span) +#: doc/reference/en/Groonga/Schema.html:1004(span) +#: doc/reference/en/Groonga/Schema.html:1006(span) +#: doc/reference/en/Groonga/Schema.html:2048(span) +#: doc/reference/en/Groonga/Schema.html:2074(span) +#: doc/reference/en/Groonga/Schema.html:2408(strong) +#: doc/reference/en/Groonga/Schema.html:2499(span) +#: doc/reference/en/Groonga/Schema.html:3396(span) +#: doc/reference/en/Groonga/Schema.html:3422(span) +#: doc/reference/en/Groonga/Schema.html:3620(span) +#: doc/reference/en/Groonga/Schema.html:3646(span) +#: doc/reference/en/method_list.html:404(a) +msgid "change_table" msgstr "" -#: doc/reference/en/Groonga.html:85(p) -msgid "" -"This library is free software; you can redistribute it and/or modify it " -"under the terms of the Lesser General Public License " -"version 2.1 as published by the Free Software Foundation." +#: doc/reference/en/methods_list.html:266(a) +#: doc/reference/en/method_list.html:420(a) +msgid "#change_view" msgstr "" -#: doc/reference/en/Groonga.html:89(span) -msgid "WITHOUT" +#: doc/reference/en/methods_list.html:274(a) +#: doc/reference/en/Groonga/Schema.html:268(strong) +#: doc/reference/en/Groonga/Schema.html:549(strong) +#: doc/reference/en/Groonga/Schema.html:1017(strong) +#: doc/reference/en/Groonga/Schema.html:1028(span) +#: doc/reference/en/Groonga/Schema.html:1104(span) +#: doc/reference/en/Groonga/Schema.html:1106(span) +#: doc/reference/en/Groonga/Schema.html:2513(strong) +#: doc/reference/en/Groonga/Schema.html:2604(span) +#: doc/reference/en/method_list.html:428(a) +msgid "change_view" msgstr "" -#: doc/reference/en/Groonga.html:89(span) -msgid "ANY" +#: doc/reference/en/methods_list.html:282(a) +#: doc/reference/en/method_list.html:436(a) +#: doc/reference/en/method_list.html:444(a) +#: doc/reference/en/method_list.html:452(a) +#: doc/reference/en/method_list.html:460(a) +msgid "#clear_lock" msgstr "" -#: doc/reference/en/Groonga.html:89(span) -msgid "WARRANTY" +#: doc/reference/en/methods_list.html:290(a) +#: doc/reference/en/methods_list.html:298(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:785(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:977(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1201(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1246(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1372(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1416(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1716(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1758(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1800(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2053(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2098(a) +#: doc/reference/en/method_list.html:524(a) +#: doc/reference/en/method_list.html:532(a) +#: doc/reference/en/method_list.html:540(a) +msgid "#column" msgstr "" -#: doc/reference/en/Groonga.html:90(span) -msgid "MERCHANTABILITY" +#: doc/reference/en/methods_list.html:292(small) +#: doc/reference/en/methods_list.html:932(small) +#: doc/reference/en/methods_list.html:1252(small) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:85(li) +#: doc/reference/en/method_list.html:526(small) +#: doc/reference/en/method_list.html:1662(small) +#: doc/reference/en/method_list.html:2254(small) +msgid "Groonga::Schema::ColumnCreationWithDifferentOptions" msgstr "" -#: doc/reference/en/Groonga.html:90(span) -msgid "FITNESS" +#: doc/reference/en/methods_list.html:306(a) +#: doc/reference/en/methods_list.html:314(a) +#: doc/reference/en/method_list.html:572(a) +#: doc/reference/en/method_list.html:580(a) +#: doc/reference/en/method_list.html:588(a) +#: doc/reference/en/method_list.html:596(a) +msgid "#columns" msgstr "" -#: doc/reference/en/Groonga.html:90(span) -msgid "FOR" +#: doc/reference/en/methods_list.html:316(small) +#: doc/reference/en/methods_list.html:1124(small) +#: doc/reference/en/methods_list.html:1476(small) +#: doc/reference/en/methods_list.html:2100(small) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:83(li) +#: doc/reference/en/method_list.html:590(small) +#: doc/reference/en/method_list.html:2030(small) +#: doc/reference/en/method_list.html:2558(small) +#: doc/reference/en/method_list.html:3582(small) +msgid "Groonga::Command::Select::Result::DrillDownResult" msgstr "" -#: doc/reference/en/Groonga.html:90(span) -msgid "PARTICULAR" +#: doc/reference/en/methods_list.html:322(a) +#: doc/reference/en/methods_list.html:330(a) +#: doc/reference/en/methods_list.html:338(a) +#: doc/reference/en/method_list.html:604(a) +#: doc/reference/en/method_list.html:612(a) +#: doc/reference/en/method_list.html:620(a) +msgid "#command" msgstr "" -#: doc/reference/en/Groonga.html:90(span) -msgid "PURPOSE" +#: doc/reference/en/methods_list.html:340(small) +#: doc/reference/en/methods_list.html:572(small) +#: doc/reference/en/methods_list.html:708(small) +#: doc/reference/en/methods_list.html:1524(small) +#: doc/reference/en/methods_list.html:1532(small) +#: doc/reference/en/methods_list.html:1660(small) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:83(li) +#: doc/reference/en/method_list.html:606(small) +#: doc/reference/en/method_list.html:1142(small) +#: doc/reference/en/method_list.html:1382(small) +#: doc/reference/en/method_list.html:2638(small) +#: doc/reference/en/method_list.html:2646(small) +#: doc/reference/en/method_list.html:2806(small) +msgid "Groonga::GrntestLog::TaskEvent" msgstr "" -#: doc/reference/en/Groonga.html:88(p) -msgid "" -"This library is distributed in the hope that it will be useful, but " -" ; without even the implied " -"warranty of or A " -" . See the Lesser General " -"Public License for more details." +#: doc/reference/en/methods_list.html:346(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:628(a) +msgid "#command_format?" msgstr "" -#: doc/reference/en/Groonga.html:94(span) -msgid "USA" +#: doc/reference/en/methods_list.html:354(a) +#: doc/reference/en/method_list.html:652(a) +msgid "#conditions" msgstr "" -#: doc/reference/en/Groonga.html:92(p) -msgid "" -"You should have received a copy of the Lesser General " -"Public License along with this library; if not, write to the Free Software " -"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 " -"" +#: doc/reference/en/methods_list.html:356(small) +#: doc/reference/en/methods_list.html:492(small) +#: doc/reference/en/methods_list.html:612(small) +#: doc/reference/en/methods_list.html:1292(small) +#: doc/reference/en/methods_list.html:1428(small) +#: doc/reference/en/methods_list.html:1700(small) +#: doc/reference/en/methods_list.html:1780(small) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:83(li) +#: doc/reference/en/method_list.html:654(small) +#: doc/reference/en/method_list.html:1022(small) +#: doc/reference/en/method_list.html:1238(small) +#: doc/reference/en/method_list.html:2294(small) +#: doc/reference/en/method_list.html:2470(small) +#: doc/reference/en/method_list.html:2862(small) +#: doc/reference/en/method_list.html:3062(small) +msgid "Groonga::QueryLog::SelectCommand" msgstr "" -#: doc/reference/en/Groonga.html:101(h2) -#: doc/reference/en/Groonga/Schema.html:130(h2) -#: doc/reference/en/Groonga/TableCursor.html:113(h2) -#: doc/reference/en/Groonga/Command.html:80(h2) -#: doc/reference/en/Groonga/QueryLog.html:80(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:97(h2) -#: doc/reference/en/Groonga/Command/Select.html:95(h2) -#: doc/reference/en/Groonga/Table.html:118(h2) -#: doc/reference/en/Groonga/GrntestLog.html:80(h2) -#: doc/reference/en/top-level-namespace.html:77(h2) -msgid "Defined Under Namespace" +#: doc/reference/en/methods_list.html:362(a) +#: doc/reference/en/method_list.html:668(a) +msgid "#context_id" msgstr "" -#: doc/reference/en/Groonga.html:105(strong) -#: doc/reference/en/Groonga/TableCursor.html:117(strong) -#: doc/reference/en/Groonga/Table.html:122(strong) -#: doc/reference/en/top-level-namespace.html:81(strong) -msgid "Modules:" +#: doc/reference/en/methods_list.html:370(a) +#: doc/reference/en/method_list.html:676(a) +msgid "#core" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/Command.html:39(span) -#: doc/reference/en/Groonga/QueryLog.html:86(a) -#: doc/reference/en/Groonga/Command/Builder.html:37(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:37(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:37(a) -#: doc/reference/en/Groonga/Command/Select.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:39(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:391(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:916(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:69(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:74(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:105(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:275(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:211(a) -#: doc/reference/en/_index.html:218(a) -msgid "Command" +#: doc/reference/en/methods_list.html:378(a) +#: doc/reference/en/method_list.html:684(a) +msgid "#cpu" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/Encoding.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:304(a) -msgid "Encoding" +#: doc/reference/en/methods_list.html:386(a) +#: doc/reference/en/method_list.html:740(a) +msgid "#create_database" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/EncodingSupport.html:39(span) -#: doc/reference/en/Groonga/Hash.html:204(a) -#: doc/reference/en/Groonga/Database.html:89(a) -#: doc/reference/en/Groonga/Database.html:389(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:236(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:373(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:72(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:445(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:311(a) -msgid "EncodingSupport" +#: doc/reference/en/methods_list.html:388(small) +#: doc/reference/en/methods_list.html:1236(small) +#: doc/reference/en/methods_list.html:1516(small) +#: doc/reference/en/methods_list.html:1732(small) +#: doc/reference/en/Groonga/Context.html:81(li) +#: doc/reference/en/Groonga/Schema.html:1224(a) +#: doc/reference/en/Groonga/Schema.html:1362(a) +#: doc/reference/en/Groonga/Schema.html:1545(a) +#: doc/reference/en/Groonga/Schema.html:1855(a) +#: doc/reference/en/Groonga/Schema.html:2709(a) +#: doc/reference/en/Groonga/Schema.html:2843(a) +#: doc/reference/en/Groonga/Schema.html:2999(a) +#: doc/reference/en/Groonga/Schema.html:3216(a) +#: doc/reference/en/Groonga/Schema.html:3569(a) +#: doc/reference/en/method_list.html:126(small) +#: doc/reference/en/method_list.html:470(small) +#: doc/reference/en/method_list.html:510(small) +#: doc/reference/en/method_list.html:662(small) +#: doc/reference/en/method_list.html:742(small) +#: doc/reference/en/method_list.html:798(small) +#: doc/reference/en/method_list.html:838(small) +#: doc/reference/en/method_list.html:854(small) +#: doc/reference/en/method_list.html:862(small) +#: doc/reference/en/method_list.html:870(small) +#: doc/reference/en/method_list.html:1158(small) +#: doc/reference/en/method_list.html:1174(small) +#: doc/reference/en/method_list.html:1486(small) +#: doc/reference/en/method_list.html:1750(small) +#: doc/reference/en/method_list.html:1982(small) +#: doc/reference/en/method_list.html:1990(small) +#: doc/reference/en/method_list.html:2206(small) +#: doc/reference/en/method_list.html:2518(small) +#: doc/reference/en/method_list.html:2630(small) +#: doc/reference/en/method_list.html:2934(small) +#: doc/reference/en/method_list.html:2958(small) +#: doc/reference/en/method_list.html:3158(small) +#: doc/reference/en/method_list.html:3190(small) +msgid "Groonga::Context" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:37(a) -#: doc/reference/en/Groonga/GrntestLog.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:418(a) -msgid "GrntestLog" +#: doc/reference/en/methods_list.html:394(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:132(strong) +#: doc/reference/en/Groonga/Command/Select/Result.html:217(strong) +#: doc/reference/en/Groonga/Command/Select/Result.html:244(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:339(span) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:433(span) +#: doc/reference/en/method_list.html:748(a) +msgid "create_records" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/Operator.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:776(a) -msgid "Operator" +#: doc/reference/en/methods_list.html:396(small) +#: doc/reference/en/methods_list.html:1372(small) +#: doc/reference/en/methods_list.html:1484(small) +#: doc/reference/en/Groonga/Command/Select/Result.html:83(li) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/method_list.html:582(small) +#: doc/reference/en/method_list.html:750(small) +#: doc/reference/en/method_list.html:1014(small) +#: doc/reference/en/method_list.html:2038(small) +#: doc/reference/en/method_list.html:2358(small) +#: doc/reference/en/method_list.html:2566(small) +#: doc/reference/en/method_list.html:3590(small) +msgid "Groonga::Command::Select::Result" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/Pagination.html:39(span) -#: doc/reference/en/Groonga/Table.html:2924(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:791(a) -msgid "Pagination" +#: doc/reference/en/methods_list.html:402(a) +#: doc/reference/en/Groonga/Schema.html:120(span) +#: doc/reference/en/Groonga/Schema.html:124(span) +#: doc/reference/en/Groonga/Schema.html:128(span) +#: doc/reference/en/Groonga/Schema.html:290(strong) +#: doc/reference/en/Groonga/Schema.html:571(strong) +#: doc/reference/en/Groonga/Schema.html:1118(strong) +#: doc/reference/en/Groonga/Schema.html:1120(strong) +#: doc/reference/en/Groonga/Schema.html:1122(strong) +#: doc/reference/en/Groonga/Schema.html:1147(span) +#: doc/reference/en/Groonga/Schema.html:1159(strong) +#: doc/reference/en/Groonga/Schema.html:1297(strong) +#: doc/reference/en/Groonga/Schema.html:1480(strong) +#: doc/reference/en/Groonga/Schema.html:1655(span) +#: doc/reference/en/Groonga/Schema.html:1657(span) +#: doc/reference/en/Groonga/Schema.html:2619(strong) +#: doc/reference/en/Groonga/Schema.html:2621(strong) +#: doc/reference/en/Groonga/Schema.html:2623(strong) +#: doc/reference/en/Groonga/Schema.html:2645(strong) +#: doc/reference/en/Groonga/Schema.html:2779(strong) +#: doc/reference/en/Groonga/Schema.html:2950(strong) +#: doc/reference/en/Groonga/Schema.html:3145(span) +#: doc/reference/en/method_list.html:764(a) +msgid "create_table" msgstr "" -#: doc/reference/en/Groonga.html:105(a) -#: doc/reference/en/Groonga/QueryLog.html:39(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:37(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:37(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:37(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:865(a) -msgid "QueryLog" +#: doc/reference/en/methods_list.html:410(a) +#: doc/reference/en/method_list.html:756(a) +msgid "#create_table" msgstr "" -#: doc/reference/en/Groonga.html:109(strong) -#: doc/reference/en/Groonga/Schema.html:136(strong) -#: doc/reference/en/Groonga/Command.html:86(strong) -#: doc/reference/en/Groonga/QueryLog.html:86(strong) -#: doc/reference/en/Groonga/Command/Select/Result.html:103(strong) -#: doc/reference/en/Groonga/Command/Select.html:101(strong) -#: doc/reference/en/Groonga/GrntestLog.html:86(strong) -msgid "Classes:" +#: doc/reference/en/methods_list.html:418(a) +#: doc/reference/en/Groonga/Schema.html:314(strong) +#: doc/reference/en/Groonga/Schema.html:593(strong) +#: doc/reference/en/Groonga/Schema.html:1668(strong) +#: doc/reference/en/Groonga/Schema.html:1679(span) +#: doc/reference/en/Groonga/Schema.html:1792(span) +#: doc/reference/en/Groonga/Schema.html:1794(span) +#: doc/reference/en/Groonga/Schema.html:3158(strong) +#: doc/reference/en/Groonga/Schema.html:3286(span) +#: doc/reference/en/method_list.html:772(a) +msgid "create_view" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Accessor.html:39(span) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:90(a) -msgid "Accessor" +#: doc/reference/en/methods_list.html:426(a) +#: doc/reference/en/method_list.html:780(a) +msgid "#create_view" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:97(a) -msgid "AddressIsInUse" +#: doc/reference/en/methods_list.html:434(a) +#: doc/reference/en/method_list.html:788(a) +msgid "#current_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:104(a) -msgid "AddressIsNotAvailable" +#: doc/reference/en/methods_list.html:436(small) +#: doc/reference/en/methods_list.html:580(small) +#: doc/reference/en/methods_list.html:628(small) +#: doc/reference/en/methods_list.html:636(small) +#: doc/reference/en/methods_list.html:668(small) +#: doc/reference/en/methods_list.html:676(small) +#: doc/reference/en/methods_list.html:684(small) +#: doc/reference/en/methods_list.html:1036(small) +#: doc/reference/en/methods_list.html:1044(small) +#: doc/reference/en/methods_list.html:1132(small) +#: doc/reference/en/methods_list.html:1148(small) +#: doc/reference/en/methods_list.html:1156(small) +#: doc/reference/en/methods_list.html:1228(small) +#: doc/reference/en/methods_list.html:1324(small) +#: doc/reference/en/methods_list.html:1332(small) +#: doc/reference/en/methods_list.html:1412(small) +#: doc/reference/en/methods_list.html:1796(small) +#: doc/reference/en/method_list.html:790(small) +#: doc/reference/en/method_list.html:1182(small) +#: doc/reference/en/method_list.html:1254(small) +#: doc/reference/en/method_list.html:1262(small) +#: doc/reference/en/method_list.html:1318(small) +#: doc/reference/en/method_list.html:1326(small) +#: doc/reference/en/method_list.html:1334(small) +#: doc/reference/en/method_list.html:1838(small) +#: doc/reference/en/method_list.html:1846(small) +#: doc/reference/en/method_list.html:2046(small) +#: doc/reference/en/method_list.html:2062(small) +#: doc/reference/en/method_list.html:2070(small) +#: doc/reference/en/method_list.html:2166(small) +#: doc/reference/en/method_list.html:2326(small) +#: doc/reference/en/method_list.html:2334(small) +#: doc/reference/en/method_list.html:2454(small) +#: doc/reference/en/method_list.html:3102(small) +msgid "Groonga::Pagination" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:111(a) -msgid "ArgumentListTooLong" +#: doc/reference/en/methods_list.html:442(a) +#: doc/reference/en/method_list.html:804(a) +msgid "#date" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Context.html:1749(a) -#: doc/reference/en/Groonga/Context.html:1775(a) -#: doc/reference/en/Groonga/Context.html:1920(a) -#: doc/reference/en/Groonga/Context.html:1930(a) -#: doc/reference/en/Groonga/Array.html:39(span) -#: doc/reference/en/Groonga/Array.html:240(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:250(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Column.html:608(a) -#: doc/reference/en/Groonga/Column.html:634(a) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1181(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1235(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1250(a) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Table.html:116(a) -#: doc/reference/en/Groonga/Table.html:2014(a) -#: doc/reference/en/Groonga/Table.html:2036(a) -#: doc/reference/en/Groonga/Table.html:2051(a) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/Grn/Table.html:1956(tt) -#: doc/reference/en/Grn/Table.html:1978(tt) -#: doc/reference/en/Grn/Table.html:1993(tt) -#: doc/reference/en/Grn/Table.html:2957(span) -#: doc/reference/en/_index.html:118(a) -msgid "Array" +#: doc/reference/en/methods_list.html:450(a) +#: doc/reference/en/method_list.html:812(a) +#: doc/reference/en/method_list.html:820(a) +msgid "#decrement!" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TableCursor.html:111(a) -#: doc/reference/en/Groonga/ArrayCursor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:125(a) -msgid "ArrayCursor" +#: doc/reference/en/methods_list.html:458(a) +#: doc/reference/en/Groonga/Schema.html:119(span) +#: doc/reference/en/Groonga/Schema.html:336(strong) +#: doc/reference/en/Groonga/Schema.html:615(strong) +#: doc/reference/en/Groonga/Schema.html:927(span) +#: doc/reference/en/Groonga/Schema.html:1005(span) +#: doc/reference/en/Groonga/Schema.html:1027(span) +#: doc/reference/en/Groonga/Schema.html:1105(span) +#: doc/reference/en/Groonga/Schema.html:1146(span) +#: doc/reference/en/Groonga/Schema.html:1656(span) +#: doc/reference/en/Groonga/Schema.html:1678(span) +#: doc/reference/en/Groonga/Schema.html:1793(span) +#: doc/reference/en/Groonga/Schema.html:1805(strong) +#: doc/reference/en/Groonga/Schema.html:1819(span) +#: doc/reference/en/Groonga/Schema.html:1898(span) +#: doc/reference/en/Groonga/Schema.html:1901(span) +#: doc/reference/en/Groonga/Schema.html:2161(span) +#: doc/reference/en/Groonga/Schema.html:2249(span) +#: doc/reference/en/Groonga/Schema.html:2271(span) +#: doc/reference/en/Groonga/Schema.html:2298(span) +#: doc/reference/en/Groonga/Schema.html:2321(span) +#: doc/reference/en/Groonga/Schema.html:2347(span) +#: doc/reference/en/Groonga/Schema.html:2390(span) +#: doc/reference/en/Groonga/Schema.html:3299(strong) +#: doc/reference/en/Groonga/Schema.html:3329(span) +#: doc/reference/en/Groonga/Schema.html:3331(span) +#: doc/reference/en/method_list.html:900(a) +msgid "define" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/BadAddress.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:140(a) -msgid "BadAddress" +#: doc/reference/en/methods_list.html:466(a) +#: doc/reference/en/Groonga/Schema.html:3668(a) +#: doc/reference/en/method_list.html:892(a) +msgid "#define" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:147(a) -msgid "BadFileDescriptor" +#: doc/reference/en/methods_list.html:474(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:118(a) +#: doc/reference/en/method_list.html:956(a) +#: doc/reference/en/method_list.html:964(a) +#: doc/reference/en/method_list.html:972(a) +#: doc/reference/en/method_list.html:980(a) +msgid "#delete" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/BrokenPipe.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:154(a) -msgid "BrokenPipe" +#: doc/reference/en/methods_list.html:482(a) +#: doc/reference/en/method_list.html:996(a) +msgid "#disk_size" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/CASError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:176(a) -msgid "CASError" +#: doc/reference/en/methods_list.html:490(a) +#: doc/reference/en/method_list.html:1020(a) +msgid "#drilldowns" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/Closed.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:183(a) -msgid "Closed" +#: doc/reference/en/methods_list.html:498(a) +#: doc/reference/en/methods_list.html:506(a) +#: doc/reference/en/methods_list.html:514(a) +#: doc/reference/en/methods_list.html:522(a) +#: doc/reference/en/method_list.html:1028(a) +#: doc/reference/en/method_list.html:1036(a) +#: doc/reference/en/method_list.html:1044(a) +#: doc/reference/en/method_list.html:1052(a) +msgid "#dump" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:69(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:76(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:176(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:69(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:76(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:220(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/Column.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:190(a) -msgid "Column" +#: doc/reference/en/methods_list.html:500(small) +#: doc/reference/en/methods_list.html:876(small) +#: doc/reference/en/Groonga/DatabaseDumper.html:81(li) +#: doc/reference/en/method_list.html:1054(small) +#: doc/reference/en/method_list.html:1518(small) +msgid "Groonga::DatabaseDumper" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:225(a) -msgid "ConnectionRefused" +#: doc/reference/en/methods_list.html:516(small) +#: doc/reference/en/methods_list.html:780(small) +#: doc/reference/en/Groonga/SchemaDumper.html:81(li) +#: doc/reference/en/method_list.html:1038(small) +#: doc/reference/en/method_list.html:1526(small) +msgid "Groonga::SchemaDumper" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga/Context.html:39(span) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:232(a) -msgid "Context" +#: doc/reference/en/methods_list.html:524(small) +#: doc/reference/en/methods_list.html:764(small) +#: doc/reference/en/Groonga/TableDumper.html:81(li) +#: doc/reference/en/method_list.html:1046(small) +#: doc/reference/en/method_list.html:1598(small) +msgid "Groonga::TableDumper" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/EncodingSupport.html:74(a) -#: doc/reference/en/Groonga/Context.html:1340(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Database.html:39(span) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:247(a) -msgid "Database" +#: doc/reference/en/methods_list.html:530(a) +#: doc/reference/en/Groonga/Schema.html:360(strong) +#: doc/reference/en/Groonga/Schema.html:637(strong) +#: doc/reference/en/Groonga/Schema.html:1911(strong) +#: doc/reference/en/Groonga/Schema.html:1927(span) +#: doc/reference/en/Groonga/Schema.html:1932(span) +#: doc/reference/en/Groonga/Schema.html:1941(span) +#: doc/reference/en/Groonga/Schema.html:2025(span) +#: doc/reference/en/Groonga/Schema.html:2028(span) +#: doc/reference/en/Groonga/Schema.html:3342(strong) +#: doc/reference/en/Groonga/Schema.html:3373(span) +#: doc/reference/en/Groonga/Schema.html:3376(span) +#: doc/reference/en/Groonga/TableDumper.html:120(strong) +#: doc/reference/en/Groonga/TableDumper.html:226(strong) +#: doc/reference/en/Groonga/TableDumper.html:250(span) +#: doc/reference/en/Groonga/SchemaDumper.html:130(strong) +#: doc/reference/en/Groonga/SchemaDumper.html:228(strong) +#: doc/reference/en/Groonga/SchemaDumper.html:262(span) +#: doc/reference/en/Groonga/SchemaDumper.html:273(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:129(strong) +#: doc/reference/en/Groonga/DatabaseDumper.html:227(strong) +#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) +#: doc/reference/en/method_list.html:1060(a) +msgid "dump" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:39(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:172(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:254(a) -msgid "DatabaseDumper" +#: doc/reference/en/methods_list.html:538(a) +#: doc/reference/en/method_list.html:1108(a) +msgid "#each_operation" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:261(a) -msgid "DirectoryNotEmpty" +#: doc/reference/en/methods_list.html:546(a) +#: doc/reference/en/methods_list.html:554(a) +#: doc/reference/en/method_list.html:1116(a) +#: doc/reference/en/method_list.html:1124(a) +msgid "#elapsed" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/DomainError.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:268(a) -msgid "DomainError" +#: doc/reference/en/methods_list.html:548(small) +#: doc/reference/en/methods_list.html:892(small) +#: doc/reference/en/methods_list.html:1012(small) +#: doc/reference/en/methods_list.html:1060(small) +#: doc/reference/en/methods_list.html:1100(small) +#: doc/reference/en/methods_list.html:1108(small) +#: doc/reference/en/methods_list.html:1140(small) +#: doc/reference/en/methods_list.html:1420(small) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:81(li) +#: doc/reference/en/method_list.html:1118(small) +#: doc/reference/en/method_list.html:1542(small) +#: doc/reference/en/method_list.html:1798(small) +#: doc/reference/en/method_list.html:1862(small) +#: doc/reference/en/method_list.html:1998(small) +#: doc/reference/en/method_list.html:2014(small) +#: doc/reference/en/method_list.html:2054(small) +#: doc/reference/en/method_list.html:2462(small) +msgid "Groonga::GrntestLog::JobSummaryEvent" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:39(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:298(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:310(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:322(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/Table.html:116(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:78(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:275(a) -msgid "DoubleArrayTrie" +#: doc/reference/en/methods_list.html:562(a) +#: doc/reference/en/method_list.html:1132(a) +msgid "#elapsed_in_seconds" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TableCursor.html:111(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:282(a) -msgid "DoubleArrayTrieCursor" +#: doc/reference/en/methods_list.html:570(a) +#: doc/reference/en/method_list.html:1140(a) +msgid "#elapsed_time" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/EndOfData.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:318(a) -msgid "EndOfData" +#: doc/reference/en/methods_list.html:578(a) +#: doc/reference/en/method_list.html:1180(a) +msgid "#end_offset" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TooManyLinks.html:69(a) -#: doc/reference/en/Groonga/TooManyLinks.html:76(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:69(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:76(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:69(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:76(a) -#: doc/reference/en/Groonga/FileExists.html:69(a) -#: doc/reference/en/Groonga/FileExists.html:76(a) -#: doc/reference/en/Groonga/Schema/Error.html:39(span) -#: doc/reference/en/Groonga/Schema/Error.html:69(a) -#: doc/reference/en/Groonga/Schema/Error.html:76(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:69(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:76(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:78(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:69(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:76(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:78(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:69(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:76(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:78(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:69(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:76(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:78(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:69(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:76(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:78(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:69(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:76(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:78(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:69(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:76(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:78(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:69(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:76(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:78(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:69(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:76(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:78(a) -#: doc/reference/en/Groonga/BrokenPipe.html:69(a) -#: doc/reference/en/Groonga/BrokenPipe.html:76(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:69(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:76(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:69(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:76(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:69(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:76(a) -#: doc/reference/en/Groonga/DomainError.html:69(a) -#: doc/reference/en/Groonga/DomainError.html:76(a) -#: doc/reference/en/Groonga/UnknownError.html:69(a) -#: doc/reference/en/Groonga/UnknownError.html:76(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:69(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:76(a) -#: doc/reference/en/Groonga/Error.html:39(span) -#: doc/reference/en/Groonga/EndOfData.html:69(a) -#: doc/reference/en/Groonga/EndOfData.html:76(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:69(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:76(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:69(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:76(a) -#: doc/reference/en/Groonga/InvalidSeek.html:69(a) -#: doc/reference/en/Groonga/InvalidSeek.html:76(a) -#: doc/reference/en/Groonga/ImproperLink.html:69(a) -#: doc/reference/en/Groonga/ImproperLink.html:76(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:69(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:76(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:69(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:76(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:69(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:76(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:69(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:76(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:69(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:76(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:69(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:76(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:69(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:76(a) -#: doc/reference/en/Groonga/CASError.html:69(a) -#: doc/reference/en/Groonga/CASError.html:76(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:69(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:76(a) -#: doc/reference/en/Groonga/InputOutputError.html:69(a) -#: doc/reference/en/Groonga/InputOutputError.html:76(a) -#: doc/reference/en/Groonga/OperationTimeout.html:69(a) -#: doc/reference/en/Groonga/OperationTimeout.html:76(a) -#: doc/reference/en/Groonga/InvalidArgument.html:69(a) -#: doc/reference/en/Groonga/InvalidArgument.html:76(a) -#: doc/reference/en/Groonga/SyntaxError.html:69(a) -#: doc/reference/en/Groonga/SyntaxError.html:76(a) -#: doc/reference/en/Groonga/StackOverFlow.html:69(a) -#: doc/reference/en/Groonga/StackOverFlow.html:76(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:69(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:76(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:69(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:76(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:69(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:76(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:69(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:76(a) -#: doc/reference/en/Groonga/RangeError.html:69(a) -#: doc/reference/en/Groonga/RangeError.html:76(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:69(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:76(a) -#: doc/reference/en/Groonga/FileCorrupt.html:69(a) -#: doc/reference/en/Groonga/FileCorrupt.html:76(a) -#: doc/reference/en/Groonga/BadAddress.html:69(a) -#: doc/reference/en/Groonga/BadAddress.html:76(a) -#: doc/reference/en/Groonga/ExecFormatError.html:69(a) -#: doc/reference/en/Groonga/ExecFormatError.html:76(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:69(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:76(a) -#: doc/reference/en/Groonga/ZLibError.html:69(a) -#: doc/reference/en/Groonga/ZLibError.html:76(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:69(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:76(a) -#: doc/reference/en/Groonga/NotSocket.html:69(a) -#: doc/reference/en/Groonga/NotSocket.html:76(a) -#: doc/reference/en/Groonga/TokenizerError.html:69(a) -#: doc/reference/en/Groonga/TokenizerError.html:76(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:69(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:76(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:69(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:76(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:69(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:76(a) -#: doc/reference/en/Groonga/NotADirectory.html:69(a) -#: doc/reference/en/Groonga/NotADirectory.html:76(a) -#: doc/reference/en/Groonga/Closed.html:69(a) -#: doc/reference/en/Groonga/Closed.html:76(a) -#: doc/reference/en/Groonga/ResourceBusy.html:69(a) -#: doc/reference/en/Groonga/ResourceBusy.html:76(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:69(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:76(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:69(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:76(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:69(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:76(a) -#: doc/reference/en/Groonga/PermissionDenied.html:69(a) -#: doc/reference/en/Groonga/PermissionDenied.html:76(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:69(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:76(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:69(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:76(a) -#: doc/reference/en/Groonga/InvalidFormat.html:69(a) -#: doc/reference/en/Groonga/InvalidFormat.html:76(a) -#: doc/reference/en/Groonga/RetryMax.html:69(a) -#: doc/reference/en/Groonga/RetryMax.html:76(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:69(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:76(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:69(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:76(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:69(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:76(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:69(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:76(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:69(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:76(a) -#: doc/reference/en/Groonga/NoBuffer.html:69(a) -#: doc/reference/en/Groonga/NoBuffer.html:76(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:69(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:76(a) -#: doc/reference/en/Groonga/TooSmallPage.html:69(a) -#: doc/reference/en/Groonga/TooSmallPage.html:76(a) -#: doc/reference/en/Groonga/TooLargePage.html:69(a) -#: doc/reference/en/Groonga/TooLargePage.html:76(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:69(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:76(a) -#: doc/reference/en/Groonga/IsADirectory.html:69(a) -#: doc/reference/en/Groonga/IsADirectory.html:76(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:69(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:76(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:69(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:76(a) -#: doc/reference/en/Groonga/FileTooLarge.html:69(a) -#: doc/reference/en/Groonga/FileTooLarge.html:76(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:69(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:76(a) -#: doc/reference/en/Groonga/LZOError.html:69(a) -#: doc/reference/en/Groonga/LZOError.html:76(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:69(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:76(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:69(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:76(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:69(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:76(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:332(a) -#: doc/reference/en/_index.html:339(a) -msgid "Error" +#: doc/reference/en/methods_list.html:586(a) +#: doc/reference/en/method_list.html:1188(a) +msgid "#eql?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ExecFormatError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:346(a) -msgid "ExecFormatError" +#: doc/reference/en/methods_list.html:594(a) +#: doc/reference/en/Groonga/Command/Builder.html:179(strong) +#: doc/reference/en/Groonga/Command/Builder.html:443(strong) +#: doc/reference/en/Groonga/Command/Builder.html:463(span) +#: doc/reference/en/Groonga/Command/Builder.html:570(span) +#: doc/reference/en/method_list.html:1196(a) +msgid "escape_value" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Expression.html:39(span) -#: doc/reference/en/Groonga/Expression.html:466(a) -#: doc/reference/en/Groonga/Expression.html:486(a) -#: doc/reference/en/Groonga/Expression.html:501(a) -#: doc/reference/en/Groonga/Expression.html:569(a) -#: doc/reference/en/Groonga/Expression.html:589(a) -#: doc/reference/en/Groonga/Expression.html:604(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:353(a) -msgid "Expression" +#: doc/reference/en/methods_list.html:602(a) +#: doc/reference/en/method_list.html:1204(a) +msgid "#exec" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/FileCorrupt.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:368(a) -msgid "FileCorrupt" -msgstr "" +#: doc/reference/en/methods_list.html:604(small) +#: doc/reference/en/methods_list.html:852(small) +#: doc/reference/en/Groonga/Command/Select.html:81(li) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/method_list.html:1206(small) +#: doc/reference/en/method_list.html:1566(small) +#, fuzzy +msgid "Groonga::Command::Select" +msgstr "Groonga::Context#close????" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/FileExists.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:375(a) -msgid "FileExists" +#: doc/reference/en/methods_list.html:610(a) +#: doc/reference/en/method_list.html:1236(a) +msgid "#filter" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/FileTooLarge.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:382(a) -msgid "FileTooLarge" +#: doc/reference/en/methods_list.html:618(a) +#: doc/reference/en/method_list.html:1244(a) +msgid "#finish" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:389(a) -msgid "FilenameTooLong" +#: doc/reference/en/methods_list.html:626(a) +#: doc/reference/en/method_list.html:1252(a) +msgid "#first_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:39(span) -#: doc/reference/en/Groonga/Column.html:124(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:396(a) -msgid "FixSizeColumn" +#: doc/reference/en/methods_list.html:634(a) +#: doc/reference/en/method_list.html:1260(a) +msgid "#first_page?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:403(a) -msgid "FunctionNotImplemented" +#: doc/reference/en/methods_list.html:642(a) +#: doc/reference/en/method_list.html:1268(a) +msgid "#float" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1096(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1264(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1838(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1920(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2088(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2171(a) -#: doc/reference/en/Groonga/Context.html:877(a) -#: doc/reference/en/Groonga/Context.html:904(a) -#: doc/reference/en/Groonga/Hash.html:39(span) -#: doc/reference/en/Groonga/Hash.html:266(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:276(span) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:288(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Record.html:1799(a) -#: doc/reference/en/Groonga/Table.html:116(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:78(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:441(a) -msgid "Hash" +#: doc/reference/en/methods_list.html:650(a) +#: doc/reference/en/method_list.html:1292(a) +msgid "#hash" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TableCursor.html:111(a) -#: doc/reference/en/Groonga/HashCursor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:448(a) -msgid "HashCursor" +#: doc/reference/en/methods_list.html:658(a) +#: doc/reference/en/method_list.html:1300(a) +#: doc/reference/en/method_list.html:1308(a) +msgid "#have_column?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:463(a) -msgid "IllegalByteSequence" +#: doc/reference/en/methods_list.html:666(a) +#: doc/reference/en/method_list.html:1316(a) +msgid "#have_next_page?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ImproperLink.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:470(a) -msgid "ImproperLink" +#: doc/reference/en/methods_list.html:674(a) +#: doc/reference/en/method_list.html:1324(a) +msgid "#have_pages?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:477(a) -msgid "InappropriateIOControlOperation" +#: doc/reference/en/methods_list.html:682(a) +#: doc/reference/en/method_list.html:1332(a) +msgid "#have_previous_page?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:484(a) -msgid "IncompatibleFileFormat" +#: doc/reference/en/methods_list.html:690(a) +#: doc/reference/en/method_list.html:1340(a) +msgid "#hdd" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Column.html:124(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:491(a) -msgid "IndexColumn" +#: doc/reference/en/methods_list.html:698(a) +#: doc/reference/en/method_list.html:1348(a) +msgid "#host" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/IndexCursor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:498(a) -msgid "IndexCursor" +#: doc/reference/en/methods_list.html:706(a) +#: doc/reference/en/methods_list.html:714(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/method_list.html:1356(a) +#: doc/reference/en/method_list.html:1364(a) +#: doc/reference/en/method_list.html:1372(a) +#: doc/reference/en/method_list.html:1380(a) +msgid "#id" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/InputOutputError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:505(a) -msgid "InputOutputError" +#: doc/reference/en/methods_list.html:722(a) +#: doc/reference/en/method_list.html:1388(a) +#: doc/reference/en/method_list.html:1396(a) +msgid "#increment!" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:512(a) -msgid "InterruptedFunctionCall" +#: doc/reference/en/methods_list.html:730(a) +#: doc/reference/en/method_list.html:1404(a) +msgid "#index" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/InvalidArgument.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:519(a) -msgid "InvalidArgument" +#: doc/reference/en/methods_list.html:738(a) +#: doc/reference/en/method_list.html:1420(a) +msgid "#index_column?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/InvalidFormat.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:526(a) -msgid "InvalidFormat" +#: doc/reference/en/methods_list.html:746(a) +#: doc/reference/en/methods_list.html:754(a) +#: doc/reference/en/methods_list.html:762(a) +#: doc/reference/en/methods_list.html:770(a) +#: doc/reference/en/methods_list.html:778(a) +#: doc/reference/en/methods_list.html:786(a) +#: doc/reference/en/methods_list.html:794(a) +#: doc/reference/en/methods_list.html:802(a) +#: doc/reference/en/methods_list.html:810(a) +#: doc/reference/en/methods_list.html:818(a) +#: doc/reference/en/methods_list.html:826(a) +#: doc/reference/en/methods_list.html:834(a) +#: doc/reference/en/methods_list.html:842(a) +#: doc/reference/en/methods_list.html:850(a) +#: doc/reference/en/methods_list.html:858(a) +#: doc/reference/en/methods_list.html:866(a) +#: doc/reference/en/methods_list.html:874(a) +#: doc/reference/en/methods_list.html:882(a) +#: doc/reference/en/methods_list.html:890(a) +#: doc/reference/en/methods_list.html:898(a) +#: doc/reference/en/methods_list.html:906(a) +#: doc/reference/en/methods_list.html:914(a) +#: doc/reference/en/methods_list.html:922(a) +#: doc/reference/en/methods_list.html:930(a) +#: doc/reference/en/methods_list.html:938(a) +#: doc/reference/en/methods_list.html:946(a) +#: doc/reference/en/methods_list.html:954(a) +#: doc/reference/en/methods_list.html:962(a) +#: doc/reference/en/methods_list.html:970(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:1436(a) +#: doc/reference/en/method_list.html:1444(a) +#: doc/reference/en/method_list.html:1452(a) +#: doc/reference/en/method_list.html:1460(a) +#: doc/reference/en/method_list.html:1468(a) +#: doc/reference/en/method_list.html:1476(a) +#: doc/reference/en/method_list.html:1484(a) +#: doc/reference/en/method_list.html:1492(a) +#: doc/reference/en/method_list.html:1500(a) +#: doc/reference/en/method_list.html:1508(a) +#: doc/reference/en/method_list.html:1516(a) +#: doc/reference/en/method_list.html:1524(a) +#: doc/reference/en/method_list.html:1532(a) +#: doc/reference/en/method_list.html:1540(a) +#: doc/reference/en/method_list.html:1548(a) +#: doc/reference/en/method_list.html:1556(a) +#: doc/reference/en/method_list.html:1564(a) +#: doc/reference/en/method_list.html:1572(a) +#: doc/reference/en/method_list.html:1580(a) +#: doc/reference/en/method_list.html:1588(a) +#: doc/reference/en/method_list.html:1596(a) +#: doc/reference/en/method_list.html:1604(a) +#: doc/reference/en/method_list.html:1612(a) +#: doc/reference/en/method_list.html:1620(a) +#: doc/reference/en/method_list.html:1628(a) +#: doc/reference/en/method_list.html:1636(a) +#: doc/reference/en/method_list.html:1644(a) +#: doc/reference/en/method_list.html:1652(a) +#: doc/reference/en/method_list.html:1660(a) +#: doc/reference/en/method_list.html:1668(a) +#: doc/reference/en/method_list.html:1676(a) +#: doc/reference/en/method_list.html:1684(a) +#: doc/reference/en/method_list.html:1692(a) +#: doc/reference/en/method_list.html:1700(a) +#: doc/reference/en/method_list.html:1708(a) +#: doc/reference/en/method_list.html:1716(a) +msgid "#initialize" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/InvalidSeek.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:533(a) -msgid "InvalidSeek" +#: doc/reference/en/methods_list.html:772(small) +#: doc/reference/en/methods_list.html:1364(small) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:81(li) +#: doc/reference/en/method_list.html:1710(small) +#: doc/reference/en/method_list.html:2382(small) +msgid "Groonga::GrntestLog::Parser" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/IsADirectory.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:540(a) -msgid "IsADirectory" +#: doc/reference/en/methods_list.html:828(small) +#: doc/reference/en/methods_list.html:1204(small) +#: doc/reference/en/methods_list.html:1972(small) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:85(li) +#: doc/reference/en/method_list.html:1630(small) +#: doc/reference/en/method_list.html:2126(small) +#: doc/reference/en/method_list.html:3358(small) +msgid "Groonga::Schema::UnguessableReferenceTable" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/LZOError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:606(a) -msgid "LZOError" +#: doc/reference/en/methods_list.html:836(small) +#: doc/reference/en/methods_list.html:1812(small) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:81(li) +#: doc/reference/en/method_list.html:1574(small) +#: doc/reference/en/method_list.html:3126(small) +msgid "Groonga::GrntestLog::JobsEndEvent" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Logger.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:613(a) -msgid "Logger" +#: doc/reference/en/methods_list.html:908(small) +#: doc/reference/en/methods_list.html:1020(small) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:81(li) +#: doc/reference/en/method_list.html:1582(small) +#: doc/reference/en/method_list.html:1806(small) +msgid "Groonga::GrntestLog::JobsStartEvent" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:628(a) -msgid "NetworkIsDown" +#: doc/reference/en/methods_list.html:916(small) +#: doc/reference/en/methods_list.html:1380(small) +#: doc/reference/en/Groonga/QueryLog/Parser.html:81(li) +#: doc/reference/en/method_list.html:1590(small) +#: doc/reference/en/method_list.html:2374(small) +msgid "Groonga::QueryLog::Parser" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoBuffer.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:635(a) -msgid "NoBuffer" +#: doc/reference/en/methods_list.html:924(small) +#: doc/reference/en/methods_list.html:1860(small) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:85(li) +#: doc/reference/en/method_list.html:1678(small) +#: doc/reference/en/method_list.html:3230(small) +msgid "Groonga::Schema::UnknownIndexTargetTable" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:642(a) -msgid "NoChildProcesses" +#: doc/reference/en/methods_list.html:940(small) +#: doc/reference/en/methods_list.html:1268(small) +#: doc/reference/en/methods_list.html:1868(small) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:85(li) +#: doc/reference/en/method_list.html:1558(small) +#: doc/reference/en/method_list.html:2270(small) +#: doc/reference/en/method_list.html:3214(small) +msgid "Groonga::Schema::TableCreationWithDifferentOptions" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:649(a) -msgid "NoLocksAvailable" +#: doc/reference/en/methods_list.html:948(small) +#: doc/reference/en/methods_list.html:1196(small) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:85(li) +#: doc/reference/en/method_list.html:1470(small) +#: doc/reference/en/method_list.html:2142(small) +msgid "Groonga::Schema::TableNotExists" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:656(a) -msgid "NoMemoryAvailable" +#: doc/reference/en/methods_list.html:956(small) +#: doc/reference/en/methods_list.html:1188(small) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:85(li) +#: doc/reference/en/method_list.html:1550(small) +#: doc/reference/en/method_list.html:2110(small) +msgid "Groonga::Schema::ColumnNotExists" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:663(a) -msgid "NoSpaceLeftOnDevice" +#: doc/reference/en/methods_list.html:964(small) +#: doc/reference/en/methods_list.html:1164(small) +#: doc/reference/en/methods_list.html:1396(small) +#: doc/reference/en/methods_list.html:1452(small) +#: doc/reference/en/methods_list.html:1724(small) +#: doc/reference/en/methods_list.html:1892(small) +#: doc/reference/en/methods_list.html:1900(small) +#: doc/reference/en/methods_list.html:1940(small) +#: doc/reference/en/methods_list.html:2052(small) +#: doc/reference/en/methods_list.html:2140(small) +#: doc/reference/en/Groonga/Posting.html:81(li) +#: doc/reference/en/method_list.html:1606(small) +#: doc/reference/en/method_list.html:2078(small) +#: doc/reference/en/method_list.html:2422(small) +#: doc/reference/en/method_list.html:2526(small) +#: doc/reference/en/method_list.html:2918(small) +#: doc/reference/en/method_list.html:3270(small) +#: doc/reference/en/method_list.html:3278(small) +#: doc/reference/en/method_list.html:3318(small) +#: doc/reference/en/method_list.html:3486(small) +#: doc/reference/en/method_list.html:3638(small) +msgid "Groonga::Posting" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:670(a) -msgid "NoSuchColumn" +#: doc/reference/en/methods_list.html:972(small) +#: doc/reference/en/methods_list.html:1844(small) +#: doc/reference/en/methods_list.html:1884(small) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:85(li) +#: doc/reference/en/method_list.html:1686(small) +#: doc/reference/en/method_list.html:3222(small) +#: doc/reference/en/method_list.html:3254(small) +msgid "Groonga::Schema::UnknownIndexTarget" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:677(a) -msgid "NoSuchDevice" +#: doc/reference/en/methods_list.html:978(a) +#: doc/reference/en/method_list.html:1756(a) +msgid "#integer16" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:684(a) -msgid "NoSuchDeviceOrAddress" +#: doc/reference/en/methods_list.html:986(a) +#: doc/reference/en/method_list.html:1764(a) +msgid "#integer32" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:691(a) -msgid "NoSuchFileOrDirectory" +#: doc/reference/en/methods_list.html:994(a) +#: doc/reference/en/method_list.html:1772(a) +msgid "#integer64" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:698(a) -msgid "NoSuchProcess" +#: doc/reference/en/methods_list.html:1002(a) +#: doc/reference/en/method_list.html:1780(a) +msgid "#integer8" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NotADirectory.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:705(a) -msgid "NotADirectory" +#: doc/reference/en/methods_list.html:1010(a) +#: doc/reference/en/method_list.html:1796(a) +msgid "#job" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:712(a) -msgid "NotEnoughSpace" +#: doc/reference/en/methods_list.html:1018(a) +#: doc/reference/en/method_list.html:1804(a) +msgid "#jobs" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/NotSocket.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:719(a) -msgid "NotSocket" +#: doc/reference/en/methods_list.html:1026(a) +#: doc/reference/en/method_list.html:1812(a) +#: doc/reference/en/method_list.html:1820(a) +#: doc/reference/en/method_list.html:1828(a) +msgid "#key" msgstr "" -#: doc/reference/en/Groonga.html:109(a) doc/reference/en/Groonga.html:309(a) -#: doc/reference/en/Groonga.html:349(a) doc/reference/en/Groonga.html:388(a) -#: doc/reference/en/Groonga/Logger.html:69(span) -#: doc/reference/en/Groonga/Logger.html:72(li) -#: doc/reference/en/Groonga/Logger.html:292(a) -#: doc/reference/en/Groonga/Logger.html:309(a) -#: doc/reference/en/Groonga/Logger.html:354(a) -#: doc/reference/en/Groonga/Logger.html:401(a) -#: doc/reference/en/Groonga/Logger.html:446(a) -#: doc/reference/en/Groonga/Logger.html:494(a) -#: doc/reference/en/Groonga/Logger.html:571(a) -#: doc/reference/en/Groonga/TooManyLinks.html:72(li) -#: doc/reference/en/Groonga/OperationNotPermitted.html:72(li) -#: doc/reference/en/Groonga/BadFileDescriptor.html:72(li) -#: doc/reference/en/Groonga/Accessor.html:69(a) -#: doc/reference/en/Groonga/Accessor.html:72(li) -#: doc/reference/en/Groonga/Accessor.html:74(a) -#: doc/reference/en/Groonga/Accessor.html:154(a) -#: doc/reference/en/Groonga/Accessor.html:165(a) -#: doc/reference/en/Groonga/FileExists.html:72(li) -#: doc/reference/en/Groonga/EncodingSupport.html:142(a) -#: doc/reference/en/Groonga/Schema/Error.html:72(li) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:69(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:72(li) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:187(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:231(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:69(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:72(li) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:691(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:735(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:778(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:823(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:834(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:844(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:855(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:872(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:926(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:966(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1059(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1141(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1184(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1227(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1309(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1349(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1393(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1443(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1541(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1639(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1683(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1723(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1763(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1804(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1883(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1965(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2008(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2051(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2133(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:72(li) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:270(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:310(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:72(li) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:273(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:313(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:72(li) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:302(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:342(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:382(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:72(li) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:274(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:314(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:72(li) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:244(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:72(li) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:244(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:72(li) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:244(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:72(li) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:272(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:312(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:72(li) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:273(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:313(a) -#: doc/reference/en/Groonga/BrokenPipe.html:72(li) -#: doc/reference/en/Groonga/Context.html:69(span) -#: doc/reference/en/Groonga/Context.html:72(li) -#: doc/reference/en/Groonga/Context.html:659(a) -#: doc/reference/en/Groonga/Context.html:834(a) -#: doc/reference/en/Groonga/Context.html:939(a) -#: doc/reference/en/Groonga/Context.html:1121(a) -#: doc/reference/en/Groonga/Context.html:1170(a) -#: doc/reference/en/Groonga/Context.html:1213(a) -#: doc/reference/en/Groonga/Context.html:1290(a) -#: doc/reference/en/Groonga/Context.html:1475(a) -#: doc/reference/en/Groonga/Context.html:1659(a) -#: doc/reference/en/Groonga/Context.html:1706(a) -#: doc/reference/en/Groonga/Context.html:1823(a) -#: doc/reference/en/Groonga/Context.html:1874(a) -#: doc/reference/en/Groonga/Context.html:1968(a) -#: doc/reference/en/Groonga/Context.html:2019(a) -#: doc/reference/en/Groonga/Context.html:2069(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:72(li) -#: doc/reference/en/Groonga/Schema.html:69(span) -#: doc/reference/en/Groonga/Schema.html:72(li) -#: doc/reference/en/Groonga/Schema.html:831(a) -#: doc/reference/en/Groonga/Schema.html:881(a) -#: doc/reference/en/Groonga/Schema.html:934(a) -#: doc/reference/en/Groonga/Schema.html:979(a) -#: doc/reference/en/Groonga/Schema.html:1032(a) -#: doc/reference/en/Groonga/Schema.html:1078(a) -#: doc/reference/en/Groonga/Schema.html:1080(a) -#: doc/reference/en/Groonga/Schema.html:1082(a) -#: doc/reference/en/Groonga/Schema.html:1115(a) -#: doc/reference/en/Groonga/Schema.html:1153(a) -#: doc/reference/en/Groonga/Schema.html:1164(a) -#: doc/reference/en/Groonga/Schema.html:1193(a) -#: doc/reference/en/Groonga/Schema.html:1204(a) -#: doc/reference/en/Groonga/Schema.html:1218(a) -#: doc/reference/en/Groonga/Schema.html:1232(a) -#: doc/reference/en/Groonga/Schema.html:1253(a) -#: doc/reference/en/Groonga/Schema.html:1291(a) -#: doc/reference/en/Groonga/Schema.html:1302(a) -#: doc/reference/en/Groonga/Schema.html:1331(a) -#: doc/reference/en/Groonga/Schema.html:1342(a) -#: doc/reference/en/Groonga/Schema.html:1356(a) -#: doc/reference/en/Groonga/Schema.html:1370(a) -#: doc/reference/en/Groonga/Schema.html:1382(a) -#: doc/reference/en/Groonga/Schema.html:1403(a) -#: doc/reference/en/Groonga/Schema.html:1417(a) -#: doc/reference/en/Groonga/Schema.html:1436(a) -#: doc/reference/en/Groonga/Schema.html:1474(a) -#: doc/reference/en/Groonga/Schema.html:1485(a) -#: doc/reference/en/Groonga/Schema.html:1514(a) -#: doc/reference/en/Groonga/Schema.html:1525(a) -#: doc/reference/en/Groonga/Schema.html:1539(a) -#: doc/reference/en/Groonga/Schema.html:1553(a) -#: doc/reference/en/Groonga/Schema.html:1565(a) -#: doc/reference/en/Groonga/Schema.html:1575(a) -#: doc/reference/en/Groonga/Schema.html:1624(a) -#: doc/reference/en/Groonga/Schema.html:1677(a) -#: doc/reference/en/Groonga/Schema.html:1688(a) -#: doc/reference/en/Groonga/Schema.html:1701(a) -#: doc/reference/en/Groonga/Schema.html:1712(a) -#: doc/reference/en/Groonga/Schema.html:1759(a) -#: doc/reference/en/Groonga/Schema.html:1863(a) -#: doc/reference/en/Groonga/Schema.html:1931(a) -#: doc/reference/en/Groonga/Schema.html:1944(a) -#: doc/reference/en/Groonga/Schema.html:1988(a) -#: doc/reference/en/Groonga/Schema.html:2034(a) -#: doc/reference/en/Groonga/Schema.html:2077(a) -#: doc/reference/en/Groonga/Schema.html:2119(a) -#: doc/reference/en/Groonga/Schema.html:2162(a) -#: doc/reference/en/Groonga/Schema.html:2205(a) -#: doc/reference/en/Groonga/Schema.html:2252(a) -#: doc/reference/en/Groonga/Schema.html:2299(a) -#: doc/reference/en/Groonga/Schema.html:2346(a) -#: doc/reference/en/Groonga/Schema.html:2391(a) -#: doc/reference/en/Groonga/Schema.html:2449(a) -#: doc/reference/en/Groonga/Schema.html:2494(a) -#: doc/reference/en/Groonga/Schema.html:2553(a) -#: doc/reference/en/Groonga/Schema.html:2555(a) -#: doc/reference/en/Groonga/Schema.html:2557(a) -#: doc/reference/en/Groonga/Schema.html:2577(a) -#: doc/reference/en/Groonga/Schema.html:2615(a) -#: doc/reference/en/Groonga/Schema.html:2626(a) -#: doc/reference/en/Groonga/Schema.html:2654(a) -#: doc/reference/en/Groonga/Schema.html:2665(a) -#: doc/reference/en/Groonga/Schema.html:2680(a) -#: doc/reference/en/Groonga/Schema.html:2692(a) -#: doc/reference/en/Groonga/Schema.html:2711(a) -#: doc/reference/en/Groonga/Schema.html:2749(a) -#: doc/reference/en/Groonga/Schema.html:2760(a) -#: doc/reference/en/Groonga/Schema.html:2788(a) -#: doc/reference/en/Groonga/Schema.html:2799(a) -#: doc/reference/en/Groonga/Schema.html:2814(a) -#: doc/reference/en/Groonga/Schema.html:2826(a) -#: doc/reference/en/Groonga/Schema.html:2838(a) -#: doc/reference/en/Groonga/Schema.html:2862(a) -#: doc/reference/en/Groonga/Schema.html:2882(a) -#: doc/reference/en/Groonga/Schema.html:2920(a) -#: doc/reference/en/Groonga/Schema.html:2944(a) -#: doc/reference/en/Groonga/Schema.html:2955(a) -#: doc/reference/en/Groonga/Schema.html:2970(a) -#: doc/reference/en/Groonga/Schema.html:2982(a) -#: doc/reference/en/Groonga/Schema.html:2994(a) -#: doc/reference/en/Groonga/Schema.html:3004(a) -#: doc/reference/en/Groonga/Schema.html:3028(a) -#: doc/reference/en/Groonga/Schema.html:3090(a) -#: doc/reference/en/Groonga/Schema.html:3135(a) -#: doc/reference/en/Groonga/Schema.html:3161(a) -#: doc/reference/en/Groonga/Schema.html:3172(a) -#: doc/reference/en/Groonga/Schema.html:3229(a) -#: doc/reference/en/Groonga/Schema.html:3270(a) -#: doc/reference/en/Groonga/Schema.html:3312(a) -#: doc/reference/en/Groonga/Schema.html:3358(a) -#: doc/reference/en/Groonga/Schema.html:3403(a) -#: doc/reference/en/Groonga/Schema.html:3444(a) -#: doc/reference/en/Groonga/Schema.html:3530(a) -#: doc/reference/en/Groonga/Schema.html:3576(a) -#: doc/reference/en/Groonga/Schema.html:3623(a) -#: doc/reference/en/Groonga/Schema.html:3665(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:72(li) -#: doc/reference/en/Groonga/ResultTooLarge.html:72(li) -#: doc/reference/en/Groonga/DomainError.html:72(li) -#: doc/reference/en/Groonga/UnknownError.html:72(li) -#: doc/reference/en/Groonga/Expression.html:69(a) -#: doc/reference/en/Groonga/Expression.html:72(li) -#: doc/reference/en/Groonga/Expression.html:74(a) -#: doc/reference/en/Groonga/Expression.html:369(a) -#: doc/reference/en/Groonga/Expression.html:377(a) -#: doc/reference/en/Groonga/Expression.html:395(a) -#: doc/reference/en/Groonga/Expression.html:397(a) -#: doc/reference/en/Groonga/Expression.html:462(a) -#: doc/reference/en/Groonga/Expression.html:464(a) -#: doc/reference/en/Groonga/Expression.html:565(a) -#: doc/reference/en/Groonga/Expression.html:567(a) -#: doc/reference/en/Groonga/Expression.html:664(a) -#: doc/reference/en/Groonga/Expression.html:717(a) -#: doc/reference/en/Groonga/Expression.html:870(a) -#: doc/reference/en/Groonga/Expression.html:1003(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:72(li) -#: doc/reference/en/Groonga/Error.html:72(li) -#: doc/reference/en/Groonga/EndOfData.html:72(li) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:72(li) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:72(li) -#: doc/reference/en/Groonga/InvalidSeek.html:72(li) -#: doc/reference/en/Groonga/ViewCursor.html:72(li) -#: doc/reference/en/Groonga/Snippet.html:69(a) -#: doc/reference/en/Groonga/Snippet.html:72(li) -#: doc/reference/en/Groonga/Snippet.html:74(a) -#: doc/reference/en/Groonga/Snippet.html:199(a) -#: doc/reference/en/Groonga/Snippet.html:207(a) -#: doc/reference/en/Groonga/Snippet.html:318(a) -#: doc/reference/en/Groonga/Snippet.html:401(a) -#: doc/reference/en/Groonga/ImproperLink.html:72(li) -#: doc/reference/en/Groonga/TableDumper.html:69(span) -#: doc/reference/en/Groonga/TableDumper.html:72(li) -#: doc/reference/en/Groonga/TableDumper.html:215(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:72(li) -#: doc/reference/en/Groonga/TooSmallLimit.html:72(li) -#: doc/reference/en/Groonga/VariableSizeColumn.html:72(li) -#: doc/reference/en/Groonga/VariableSizeColumn.html:74(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:186(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:72(li) -#: doc/reference/en/Groonga/Hash.html:72(li) -#: doc/reference/en/Groonga/Hash.html:74(a) -#: doc/reference/en/Groonga/Hash.html:225(a) -#: doc/reference/en/Groonga/Hash.html:245(a) -#: doc/reference/en/Groonga/Hash.html:339(a) -#: doc/reference/en/Groonga/Array.html:72(li) -#: doc/reference/en/Groonga/Array.html:74(a) -#: doc/reference/en/Groonga/Array.html:200(a) -#: doc/reference/en/Groonga/Array.html:220(a) -#: doc/reference/en/Groonga/Array.html:287(a) -#: doc/reference/en/Groonga/Encoding.html:295(a) -#: doc/reference/en/Groonga/Encoding.html:334(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:72(li) -#: doc/reference/en/Groonga/ConnectionRefused.html:72(li) -#: doc/reference/en/Groonga/OperationWouldBlock.html:72(li) -#: doc/reference/en/Groonga/FixSizeColumn.html:72(li) -#: doc/reference/en/Groonga/FixSizeColumn.html:74(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:230(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:241(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:295(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:353(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:393(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:72(li) -#: doc/reference/en/Groonga/TooSmallPageSize.html:256(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:296(a) -#: doc/reference/en/Groonga/TableCursor.html:69(span) -#: doc/reference/en/Groonga/TableCursor.html:72(li) -#: doc/reference/en/Groonga/TableCursor.html:300(a) -#: doc/reference/en/Groonga/TableCursor.html:322(a) -#: doc/reference/en/Groonga/TableCursor.html:344(a) -#: doc/reference/en/Groonga/TableCursor.html:392(a) -#: doc/reference/en/Groonga/TableCursor.html:536(a) -#: doc/reference/en/Groonga/TableCursor.html:586(a) -#: doc/reference/en/Groonga/Procedure.html:69(a) -#: doc/reference/en/Groonga/Procedure.html:72(li) -#: doc/reference/en/Groonga/Procedure.html:74(a) -#: doc/reference/en/Groonga/Procedure.html:144(a) -#: doc/reference/en/Groonga/CASError.html:72(li) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:72(li) -#: doc/reference/en/Groonga/Pagination.html:501(a) -#: doc/reference/en/Groonga/Pagination.html:541(a) -#: doc/reference/en/Groonga/Pagination.html:581(a) -#: doc/reference/en/Groonga/Pagination.html:621(a) -#: doc/reference/en/Groonga/Pagination.html:665(a) -#: doc/reference/en/Groonga/Pagination.html:708(a) -#: doc/reference/en/Groonga/Pagination.html:945(a) -#: doc/reference/en/Groonga/Pagination.html:1032(a) -#: doc/reference/en/Groonga/Pagination.html:1069(a) -#: doc/reference/en/Groonga/Pagination.html:1107(a) -#: doc/reference/en/Groonga/Pagination.html:1146(a) -#: doc/reference/en/Groonga/Pagination.html:1184(a) -#: doc/reference/en/Groonga/InputOutputError.html:72(li) -#: doc/reference/en/Groonga/ViewRecord.html:69(span) -#: doc/reference/en/Groonga/ViewRecord.html:72(li) -#: doc/reference/en/Groonga/ViewRecord.html:285(a) -#: doc/reference/en/Groonga/ViewRecord.html:325(a) -#: doc/reference/en/Groonga/ViewRecord.html:365(a) -#: doc/reference/en/Groonga/ViewRecord.html:409(a) -#: doc/reference/en/Groonga/ViewRecord.html:449(a) -#: doc/reference/en/Groonga/Type.html:69(a) -#: doc/reference/en/Groonga/Type.html:72(li) -#: doc/reference/en/Groonga/Type.html:74(a) -#: doc/reference/en/Groonga/Type.html:416(a) -#: doc/reference/en/Groonga/Type.html:424(a) -#: doc/reference/en/Groonga/OperationTimeout.html:72(li) -#: doc/reference/en/Groonga/Database.html:69(a) -#: doc/reference/en/Groonga/Database.html:72(li) -#: doc/reference/en/Groonga/Database.html:74(a) -#: doc/reference/en/Groonga/Database.html:399(a) -#: doc/reference/en/Groonga/Database.html:410(a) -#: doc/reference/en/Groonga/Database.html:460(a) -#: doc/reference/en/Groonga/Database.html:704(a) -#: doc/reference/en/Groonga/Database.html:754(a) -#: doc/reference/en/Groonga/Database.html:841(a) -#: doc/reference/en/Groonga/Database.html:896(a) -#: doc/reference/en/Groonga/Database.html:1049(a) -#: doc/reference/en/Groonga/Database.html:1051(a) -#: doc/reference/en/Groonga/Database.html:1089(a) -#: doc/reference/en/Groonga/Database.html:1117(a) -#: doc/reference/en/Groonga/Database.html:1220(a) -#: doc/reference/en/Groonga/Database.html:1222(a) -#: doc/reference/en/Groonga/Database.html:1244(a) -#: doc/reference/en/Groonga/Database.html:1365(a) -#: doc/reference/en/Groonga/Database.html:1418(a) -#: doc/reference/en/Groonga/Database.html:1472(a) -#: doc/reference/en/Groonga/InvalidArgument.html:72(li) -#: doc/reference/en/Groonga/SyntaxError.html:72(li) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:72(li) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:74(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:257(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:277(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:374(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:491(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:540(a) -#: doc/reference/en/Groonga/StackOverFlow.html:72(li) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:72(li) -#: doc/reference/en/Groonga/SchemaDumper.html:69(span) -#: doc/reference/en/Groonga/SchemaDumper.html:72(li) -#: doc/reference/en/Groonga/SchemaDumper.html:217(a) -#: doc/reference/en/Groonga/Object.html:39(span) -#: doc/reference/en/Groonga/Object.html:69(span) -#: doc/reference/en/Groonga/Object.html:72(li) -#: doc/reference/en/Groonga/Object.html:530(a) -#: doc/reference/en/Groonga/Object.html:591(a) -#: doc/reference/en/Groonga/Object.html:682(a) -#: doc/reference/en/Groonga/Object.html:731(a) -#: doc/reference/en/Groonga/Object.html:810(a) -#: doc/reference/en/Groonga/Object.html:868(a) -#: doc/reference/en/Groonga/Object.html:1007(a) -#: doc/reference/en/Groonga/Object.html:1067(a) -#: doc/reference/en/Groonga/Object.html:1121(a) -#: doc/reference/en/Groonga/Object.html:1188(a) -#: doc/reference/en/Groonga/Object.html:1249(a) -#: doc/reference/en/Groonga/Object.html:1304(a) -#: doc/reference/en/Groonga/Object.html:1441(a) -#: doc/reference/en/Groonga/Object.html:1504(a) -#: doc/reference/en/Groonga/Object.html:1559(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:72(li) -#: doc/reference/en/Groonga/HashCursor.html:72(li) -#: doc/reference/en/Groonga/TooSmallOffset.html:72(li) -#: doc/reference/en/Groonga/NoLocksAvailable.html:72(li) -#: doc/reference/en/Groonga/RangeError.html:72(li) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:72(li) -#: doc/reference/en/Groonga/FileCorrupt.html:72(li) -#: doc/reference/en/Groonga/Record.html:69(span) -#: doc/reference/en/Groonga/Record.html:72(li) -#: doc/reference/en/Groonga/Record.html:994(a) -#: doc/reference/en/Groonga/Record.html:1062(a) -#: doc/reference/en/Groonga/Record.html:1106(a) -#: doc/reference/en/Groonga/Record.html:1147(a) -#: doc/reference/en/Groonga/Record.html:1184(a) -#: doc/reference/en/Groonga/Record.html:1272(a) -#: doc/reference/en/Groonga/Record.html:1310(a) -#: doc/reference/en/Groonga/Record.html:1352(a) -#: doc/reference/en/Groonga/Record.html:1390(a) -#: doc/reference/en/Groonga/Record.html:1427(a) -#: doc/reference/en/Groonga/Record.html:1465(a) -#: doc/reference/en/Groonga/Record.html:1552(a) -#: doc/reference/en/Groonga/Record.html:1641(a) -#: doc/reference/en/Groonga/Record.html:1730(a) -#: doc/reference/en/Groonga/Record.html:1777(a) -#: doc/reference/en/Groonga/Record.html:1911(a) -#: doc/reference/en/Groonga/Record.html:1951(a) -#: doc/reference/en/Groonga/Record.html:1989(a) -#: doc/reference/en/Groonga/Record.html:2036(a) -#: doc/reference/en/Groonga/Record.html:2178(a) -#: doc/reference/en/Groonga/Record.html:2216(a) -#: doc/reference/en/Groonga/Record.html:2271(a) -#: doc/reference/en/Groonga/Record.html:2463(a) -#: doc/reference/en/Groonga/Record.html:2551(a) -#: doc/reference/en/Groonga/Record.html:2588(a) -#: doc/reference/en/Groonga/BadAddress.html:72(li) -#: doc/reference/en/Groonga/ExecFormatError.html:72(li) -#: doc/reference/en/Groonga/View.html:72(li) -#: doc/reference/en/Groonga/View.html:74(a) -#: doc/reference/en/Groonga/View.html:264(a) -#: doc/reference/en/Groonga/View.html:284(a) -#: doc/reference/en/Groonga/View.html:362(a) -#: doc/reference/en/Groonga/View.html:467(a) -#: doc/reference/en/Groonga/View.html:521(a) -#: doc/reference/en/Groonga/View.html:594(a) -#: doc/reference/en/Groonga/View.html:681(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:72(li) -#: doc/reference/en/Groonga/DatabaseDumper.html:69(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:72(li) -#: doc/reference/en/Groonga/DatabaseDumper.html:216(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:72(li) -#: doc/reference/en/Groonga/ZLibError.html:72(li) -#: doc/reference/en/Groonga/TooLargeOffset.html:72(li) -#: doc/reference/en/Groonga/NotSocket.html:72(li) -#: doc/reference/en/Groonga/TokenizerError.html:72(li) -#: doc/reference/en/Groonga/NoSuchDevice.html:72(li) -#: doc/reference/en/Groonga/Column.html:69(a) -#: doc/reference/en/Groonga/Column.html:72(li) -#: doc/reference/en/Groonga/Column.html:74(a) -#: doc/reference/en/Groonga/Column.html:439(a) -#: doc/reference/en/Groonga/Column.html:450(a) -#: doc/reference/en/Groonga/Column.html:531(a) -#: doc/reference/en/Groonga/Column.html:707(a) -#: doc/reference/en/Groonga/Column.html:778(a) -#: doc/reference/en/Groonga/Column.html:780(a) -#: doc/reference/en/Groonga/Column.html:809(a) -#: doc/reference/en/Groonga/Column.html:916(a) -#: doc/reference/en/Groonga/Column.html:995(a) -#: doc/reference/en/Groonga/Column.html:1084(a) -#: doc/reference/en/Groonga/Column.html:1183(a) -#: doc/reference/en/Groonga/Column.html:1573(a) -#: doc/reference/en/Groonga/Column.html:1653(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:72(li) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:72(li) -#: doc/reference/en/Groonga/NotADirectory.html:72(li) -#: doc/reference/en/Groonga/Closed.html:72(li) -#: doc/reference/en/Groonga/ResourceBusy.html:72(li) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:72(li) -#: doc/reference/en/Groonga/PatriciaTrie.html:72(li) -#: doc/reference/en/Groonga/PatriciaTrie.html:74(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:394(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:414(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:511(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:628(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:677(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:768(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:817(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:908(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:960(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1134(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1183(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1263(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:1491(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:72(li) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:72(li) -#: doc/reference/en/Groonga/PermissionDenied.html:72(li) -#: doc/reference/en/Groonga/IndexCursor.html:69(a) -#: doc/reference/en/Groonga/IndexCursor.html:72(li) -#: doc/reference/en/Groonga/IndexCursor.html:74(a) -#: doc/reference/en/Groonga/IndexCursor.html:170(a) -#: doc/reference/en/Groonga/IndexCursor.html:181(a) -#: doc/reference/en/Groonga/IndexCursor.html:191(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:72(li) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:72(li) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:139(a) -#: doc/reference/en/Groonga/InvalidFormat.html:72(li) -#: doc/reference/en/Groonga/Command/Builder.html:69(span) -#: doc/reference/en/Groonga/Command/Builder.html:72(li) -#: doc/reference/en/Groonga/Command/Builder.html:335(a) -#: doc/reference/en/Groonga/Command/Builder.html:375(a) -#: doc/reference/en/Groonga/Command/Builder.html:419(a) -#: doc/reference/en/Groonga/Command/Builder.html:455(a) -#: doc/reference/en/Groonga/Command/Builder.html:483(a) -#: doc/reference/en/Groonga/Command/Builder.html:511(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:72(li) -#: doc/reference/en/Groonga/Command/Select/Result.html:309(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:327(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:365(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:383(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:421(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:439(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:477(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:495(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:537(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:581(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:635(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:72(li) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:224(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:242(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:280(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:298(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:336(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:354(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:396(a) -#: doc/reference/en/Groonga/Command/Select.html:69(span) -#: doc/reference/en/Groonga/Command/Select.html:72(li) -#: doc/reference/en/Groonga/Command/Select.html:221(a) -#: doc/reference/en/Groonga/Posting.html:69(span) -#: doc/reference/en/Groonga/Posting.html:72(li) -#: doc/reference/en/Groonga/Posting.html:380(a) -#: doc/reference/en/Groonga/Posting.html:439(a) -#: doc/reference/en/Groonga/Posting.html:493(a) -#: doc/reference/en/Groonga/Posting.html:547(a) -#: doc/reference/en/Groonga/Posting.html:601(a) -#: doc/reference/en/Groonga/Posting.html:655(a) -#: doc/reference/en/Groonga/Posting.html:709(a) -#: doc/reference/en/Groonga/Posting.html:763(a) -#: doc/reference/en/Groonga/Posting.html:821(a) -#: doc/reference/en/Groonga/Posting.html:888(a) -#: doc/reference/en/Groonga/RetryMax.html:72(li) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:72(li) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:72(li) -#: doc/reference/en/Groonga/NetworkIsDown.html:72(li) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:72(li) -#: doc/reference/en/Groonga/AddressIsInUse.html:72(li) -#: doc/reference/en/Groonga/NoBuffer.html:72(li) -#: doc/reference/en/Groonga/QueryLog/Parser.html:69(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:72(li) -#: doc/reference/en/Groonga/QueryLog/Parser.html:205(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:69(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:72(li) -#: doc/reference/en/Groonga/QueryLog/Command.html:440(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:480(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:520(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:564(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:600(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:634(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:716(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:778(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:69(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:72(li) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:586(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:626(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:666(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:706(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:746(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:786(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:826(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:870(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:898(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:926(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1000(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1028(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1058(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1086(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1222(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:72(li) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:292(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:330(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:358(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:386(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:414(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:442(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:470(a) -#: doc/reference/en/Groonga/Table.html:69(a) -#: doc/reference/en/Groonga/Table.html:72(li) -#: doc/reference/en/Groonga/Table.html:74(a) -#: doc/reference/en/Groonga/Table.html:940(a) -#: doc/reference/en/Groonga/Table.html:948(a) -#: doc/reference/en/Groonga/Table.html:1038(a) -#: doc/reference/en/Groonga/Table.html:1228(a) -#: doc/reference/en/Groonga/Table.html:1230(a) -#: doc/reference/en/Groonga/Table.html:1379(a) -#: doc/reference/en/Groonga/Table.html:1381(a) -#: doc/reference/en/Groonga/Table.html:1708(a) -#: doc/reference/en/Groonga/Table.html:1916(a) -#: doc/reference/en/Groonga/Table.html:1964(a) -#: doc/reference/en/Groonga/Table.html:2136(a) -#: doc/reference/en/Groonga/Table.html:2322(a) -#: doc/reference/en/Groonga/Table.html:2324(a) -#: doc/reference/en/Groonga/Table.html:2346(a) -#: doc/reference/en/Groonga/Table.html:2479(a) -#: doc/reference/en/Groonga/Table.html:2642(a) -#: doc/reference/en/Groonga/Table.html:2691(a) -#: doc/reference/en/Groonga/Table.html:2778(a) -#: doc/reference/en/Groonga/Table.html:3006(a) -#: doc/reference/en/Groonga/Table.html:3355(a) -#: doc/reference/en/Groonga/Table.html:3357(a) -#: doc/reference/en/Groonga/Table.html:3427(a) -#: doc/reference/en/Groonga/Table.html:3429(a) -#: doc/reference/en/Groonga/Table.html:3497(a) -#: doc/reference/en/Groonga/Table.html:3688(a) -#: doc/reference/en/Groonga/Table.html:3728(a) -#: doc/reference/en/Groonga/Table.html:3775(a) -#: doc/reference/en/Groonga/Table.html:3887(a) -#: doc/reference/en/Groonga/Table.html:3969(a) -#: doc/reference/en/Groonga/Table.html:3971(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:69(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:564(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:592(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:620(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:648(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:676(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:704(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:732(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:760(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:788(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:816(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:844(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:872(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:900(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:928(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:956(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:984(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1012(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1040(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:69(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:205(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:69(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:216(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:69(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:372(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:412(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:452(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:492(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:532(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:572(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:612(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:272(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:290(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:328(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:346(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:384(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:402(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:440(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:458(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:496(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:514(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:556(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:69(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:72(li) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:216(a) -#: doc/reference/en/Groonga/TooSmallPage.html:72(li) -#: doc/reference/en/Groonga/TooSmallPage.html:256(a) -#: doc/reference/en/Groonga/TooSmallPage.html:296(a) -#: doc/reference/en/Groonga/Plugin.html:69(span) -#: doc/reference/en/Groonga/Plugin.html:72(li) -#: doc/reference/en/Groonga/Plugin.html:197(a) -#: doc/reference/en/Groonga/Plugin.html:199(a) -#: doc/reference/en/Groonga/Plugin.html:267(a) -#: doc/reference/en/Groonga/Plugin.html:308(a) -#: doc/reference/en/Groonga/TooLargePage.html:72(li) -#: doc/reference/en/Groonga/TooLargePage.html:256(a) -#: doc/reference/en/Groonga/TooLargePage.html:296(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:72(li) -#: doc/reference/en/Groonga/Variable.html:69(a) -#: doc/reference/en/Groonga/Variable.html:72(li) -#: doc/reference/en/Groonga/Variable.html:74(a) -#: doc/reference/en/Groonga/Variable.html:174(a) -#: doc/reference/en/Groonga/Variable.html:253(a) -#: doc/reference/en/Groonga/IsADirectory.html:72(li) -#: doc/reference/en/Groonga/IllegalByteSequence.html:72(li) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:72(li) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:72(li) -#: doc/reference/en/Groonga/FileTooLarge.html:72(li) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:72(li) -#: doc/reference/en/Groonga/LZOError.html:72(li) -#: doc/reference/en/Groonga/NotEnoughSpace.html:72(li) -#: doc/reference/en/Groonga/NoChildProcesses.html:72(li) -#: doc/reference/en/Groonga/ArrayCursor.html:72(li) -#: doc/reference/en/Groonga/ViewAccessor.html:69(a) -#: doc/reference/en/Groonga/ViewAccessor.html:72(li) -#: doc/reference/en/Groonga/ViewAccessor.html:74(a) -#: doc/reference/en/Groonga/ViewAccessor.html:122(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:72(li) -#: doc/reference/en/Groonga/Table/KeySupport.html:532(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:677(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:679(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:803(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:878(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:880(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:919(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:972(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:974(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1018(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1077(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1124(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1126(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1178(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1180(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1225(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1272(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:1274(a) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/Grn/Table.html:72(li) -#: doc/reference/en/Grn/Table.html:890(tt) -#: doc/reference/en/Grn/Table.html:980(tt) -#: doc/reference/en/Grn/Table.html:1170(tt) -#: doc/reference/en/Grn/Table.html:1172(tt) -#: doc/reference/en/Grn/Table.html:1321(tt) -#: doc/reference/en/Grn/Table.html:1323(tt) -#: doc/reference/en/Grn/Table.html:1650(tt) -#: doc/reference/en/Grn/Table.html:1858(tt) -#: doc/reference/en/Grn/Table.html:1906(tt) -#: doc/reference/en/Grn/Table.html:2078(tt) -#: doc/reference/en/Grn/Table.html:2264(tt) -#: doc/reference/en/Grn/Table.html:2266(tt) -#: doc/reference/en/Grn/Table.html:2288(tt) -#: doc/reference/en/Grn/Table.html:2421(tt) -#: doc/reference/en/Grn/Table.html:2584(tt) -#: doc/reference/en/Grn/Table.html:2633(tt) -#: doc/reference/en/Grn/Table.html:2790(tt) -#: doc/reference/en/Grn/Table.html:3140(tt) -#: doc/reference/en/Grn/Table.html:3142(tt) -#: doc/reference/en/Grn/Table.html:3212(tt) -#: doc/reference/en/Grn/Table.html:3214(tt) -#: doc/reference/en/Grn/Table.html:3282(tt) -#: doc/reference/en/Grn/Table.html:3476(tt) -#: doc/reference/en/Grn/Table.html:3516(tt) -#: doc/reference/en/Grn/Table.html:3563(tt) -#: doc/reference/en/Grn/Table.html:3675(tt) -#: doc/reference/en/Grn/Table.html:3757(tt) -#: doc/reference/en/Grn/Table.html:3759(tt) -#: doc/reference/en/_index.html:734(a) -msgid "Object" +#: doc/reference/en/methods_list.html:1034(a) +#: doc/reference/en/method_list.html:1836(a) +msgid "#last_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:741(a) -msgid "ObjectCorrupt" +#: doc/reference/en/methods_list.html:1042(a) +#: doc/reference/en/method_list.html:1844(a) +msgid "#last_page?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:748(a) -msgid "OperationNotPermitted" +#: doc/reference/en/methods_list.html:1050(a) +#: doc/reference/en/method_list.html:1852(a) +msgid "#last_time" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:755(a) -msgid "OperationNotSupported" +#: doc/reference/en/methods_list.html:1058(a) +#: doc/reference/en/method_list.html:1860(a) +msgid "#latency" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/OperationTimeout.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:762(a) -msgid "OperationTimeout" +#: doc/reference/en/methods_list.html:1066(a) +#: doc/reference/en/method_list.html:1884(a) +#: doc/reference/en/method_list.html:1892(a) +#: doc/reference/en/method_list.html:1900(a) +#: doc/reference/en/method_list.html:1908(a) +msgid "#lock" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:769(a) -msgid "OperationWouldBlock" +#: doc/reference/en/methods_list.html:1074(a) +#: doc/reference/en/method_list.html:1916(a) +#: doc/reference/en/method_list.html:1924(a) +#: doc/reference/en/method_list.html:1932(a) +#: doc/reference/en/method_list.html:1940(a) +msgid "#locked?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:39(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:435(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:447(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:459(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/Table.html:116(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:78(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:812(a) -msgid "PatriciaTrie" +#: doc/reference/en/methods_list.html:1082(a) +#: doc/reference/en/method_list.html:1948(a) +msgid "#locked_memory" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TableCursor.html:111(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:819(a) -msgid "PatriciaTrieCursor" +#: doc/reference/en/methods_list.html:1090(a) +#: doc/reference/en/method_list.html:1972(a) +msgid "#long_text" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/PermissionDenied.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:826(a) -msgid "PermissionDenied" +#: doc/reference/en/methods_list.html:1098(a) +#: doc/reference/en/method_list.html:1996(a) +msgid "#max" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1863(span) -#: doc/reference/en/Groonga/Plugin.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:833(a) -msgid "Plugin" +#: doc/reference/en/methods_list.html:1106(a) +#: doc/reference/en/method_list.html:2012(a) +msgid "#min" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Posting.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:840(a) -msgid "Posting" +#: doc/reference/en/methods_list.html:1114(a) +#: doc/reference/en/method_list.html:2020(a) +msgid "#mlocked" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Procedure.html:39(span) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:847(a) -msgid "Procedure" +#: doc/reference/en/methods_list.html:1122(a) +#: doc/reference/en/method_list.html:2028(a) +#: doc/reference/en/method_list.html:2036(a) +msgid "#n_hits" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/RangeError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:880(a) -msgid "RangeError" +#: doc/reference/en/methods_list.html:1130(a) +#: doc/reference/en/method_list.html:2044(a) +msgid "#n_pages" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:887(a) -msgid "ReadOnlyFileSystem" +#: doc/reference/en/methods_list.html:1138(a) +#: doc/reference/en/method_list.html:2052(a) +msgid "#n_queries" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Record.html:39(span) -#: doc/reference/en/Groonga/Record.html:929(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:894(a) -msgid "Record" +#: doc/reference/en/methods_list.html:1146(a) +#: doc/reference/en/method_list.html:2060(a) +msgid "#n_records" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ResourceBusy.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:901(a) -msgid "ResourceBusy" +#: doc/reference/en/methods_list.html:1154(a) +#: doc/reference/en/method_list.html:2068(a) +msgid "#n_records_in_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:908(a) -msgid "ResourceDeadlockAvoided" +#: doc/reference/en/methods_list.html:1162(a) +#: doc/reference/en/method_list.html:2076(a) +msgid "#n_rest_postings" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:915(a) -msgid "ResourceTemporarilyUnavailable" +#: doc/reference/en/methods_list.html:1170(a) +#: doc/reference/en/method_list.html:2084(a) +msgid "#n_sub_records" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:929(a) -msgid "ResultTooLarge" +#: doc/reference/en/methods_list.html:1178(a) +#: doc/reference/en/methods_list.html:1186(a) +#: doc/reference/en/methods_list.html:1194(a) +#: doc/reference/en/methods_list.html:1202(a) +#: doc/reference/en/methods_list.html:1210(a) +#: doc/reference/en/methods_list.html:1218(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:113(a) +#: doc/reference/en/method_list.html:2092(a) +#: doc/reference/en/method_list.html:2100(a) +#: doc/reference/en/method_list.html:2108(a) +#: doc/reference/en/method_list.html:2116(a) +#: doc/reference/en/method_list.html:2124(a) +#: doc/reference/en/method_list.html:2132(a) +#: doc/reference/en/method_list.html:2140(a) +msgid "#name" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/RetryMax.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:936(a) -msgid "RetryMax" +#: doc/reference/en/methods_list.html:1226(a) +#: doc/reference/en/method_list.html:2164(a) +msgid "#next_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Schema/Error.html:37(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:37(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:37(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:37(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:37(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:37(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:37(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:37(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:37(a) -#: doc/reference/en/Groonga/Schema.html:39(span) -#: doc/reference/en/Groonga/Schema.html:110(span) -#: doc/reference/en/Groonga/Schema.html:790(a) -#: doc/reference/en/Groonga/Schema.html:889(span) -#: doc/reference/en/Groonga/Schema.html:987(span) -#: doc/reference/en/Groonga/Schema.html:1102(span) -#: doc/reference/en/Groonga/Schema.html:1632(span) -#: doc/reference/en/Groonga/Schema.html:1877(span) -#: doc/reference/en/Groonga/Schema.html:1882(span) -#: doc/reference/en/Groonga/Schema.html:1884(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1996(span) -#: doc/reference/en/Groonga/Schema.html:2213(span) -#: doc/reference/en/Groonga/Schema.html:2261(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:951(a) -msgid "Schema" +#: doc/reference/en/methods_list.html:1234(a) +#: doc/reference/en/method_list.html:2204(a) +msgid "#open_database" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/SchemaDumper.html:39(span) -#: doc/reference/en/Groonga/SchemaDumper.html:173(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:958(a) -msgid "SchemaDumper" +#: doc/reference/en/methods_list.html:1242(a) +#: doc/reference/en/method_list.html:2244(a) +msgid "#operations" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Snippet.html:39(span) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:979(a) -msgid "Snippet" +#: doc/reference/en/methods_list.html:1250(a) +#: doc/reference/en/methods_list.html:1258(a) +#: doc/reference/en/methods_list.html:1266(a) +#: doc/reference/en/method_list.html:2252(a) +#: doc/reference/en/method_list.html:2260(a) +#: doc/reference/en/method_list.html:2268(a) +msgid "#options" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:986(a) -msgid "SocketIsAlreadyConnected" +#: doc/reference/en/methods_list.html:1274(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:113(a) +#: doc/reference/en/method_list.html:2276(a) +msgid "#original_format" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:993(a) -msgid "SocketIsAlreadyShutdowned" +#: doc/reference/en/methods_list.html:1282(a) +#: doc/reference/en/method_list.html:2284(a) +msgid "#os" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1000(a) -msgid "SocketIsNotConnected" +#: doc/reference/en/methods_list.html:1290(a) +#: doc/reference/en/method_list.html:2292(a) +msgid "#output_columns" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1007(a) -msgid "SocketNotInitialized" +#: doc/reference/en/methods_list.html:1298(a) +#: doc/reference/en/methods_list.html:1306(a) +#: doc/reference/en/method_list.html:2300(a) +#: doc/reference/en/method_list.html:2308(a) +msgid "#page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/StackOverFlow.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1014(a) -msgid "StackOverFlow" +#: doc/reference/en/methods_list.html:1314(a) +#: doc/reference/en/methods_list.html:1322(a) +#: doc/reference/en/method_list.html:2316(a) +#: doc/reference/en/method_list.html:2324(a) +msgid "#page_size" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/SyntaxError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1028(a) -msgid "SyntaxError" +#: doc/reference/en/methods_list.html:1330(a) +#: doc/reference/en/method_list.html:2332(a) +msgid "#pages" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Hash.html:69(a) -#: doc/reference/en/Groonga/Hash.html:76(a) -#: doc/reference/en/Groonga/Hash.html:214(a) -#: doc/reference/en/Groonga/Array.html:69(a) -#: doc/reference/en/Groonga/Array.html:76(a) -#: doc/reference/en/Groonga/Array.html:189(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:69(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:76(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:246(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/View.html:69(a) -#: doc/reference/en/Groonga/View.html:76(a) -#: doc/reference/en/Groonga/View.html:253(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:69(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:76(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:383(a) -#: doc/reference/en/Groonga/Table.html:39(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:37(a) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/Grn/Table.html:39(span) -#: doc/reference/en/_index.html:1043(a) -msgid "Table" +#: doc/reference/en/methods_list.html:1338(a) +#: doc/reference/en/Groonga/Hash.html:133(a) +#: doc/reference/en/Groonga/Array.html:133(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:144(a) +#: doc/reference/en/Groonga/View.html:133(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:172(a) +#: doc/reference/en/method_list.html:2340(a) +msgid "#paginate" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/ViewCursor.html:69(a) -#: doc/reference/en/Groonga/ViewCursor.html:74(a) -#: doc/reference/en/Groonga/ViewCursor.html:122(a) -#: doc/reference/en/Groonga/TableCursor.html:39(span) -#: doc/reference/en/Groonga/HashCursor.html:69(a) -#: doc/reference/en/Groonga/HashCursor.html:74(a) -#: doc/reference/en/Groonga/HashCursor.html:128(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:69(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:74(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:117(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:37(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:69(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:74(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:129(a) -#: doc/reference/en/Groonga/ArrayCursor.html:69(a) -#: doc/reference/en/Groonga/ArrayCursor.html:74(a) -#: doc/reference/en/Groonga/ArrayCursor.html:123(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1057(a) -msgid "TableCursor" +#: doc/reference/en/methods_list.html:1340(small) +#: doc/reference/en/Groonga/Table.html:83(li) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/method_list.html:134(small) +#: doc/reference/en/method_list.html:454(small) +#: doc/reference/en/method_list.html:542(small) +#: doc/reference/en/method_list.html:566(small) +#: doc/reference/en/method_list.html:574(small) +#: doc/reference/en/method_list.html:910(small) +#: doc/reference/en/method_list.html:918(small) +#: doc/reference/en/method_list.html:942(small) +#: doc/reference/en/method_list.html:982(small) +#: doc/reference/en/method_list.html:990(small) +#: doc/reference/en/method_list.html:1094(small) +#: doc/reference/en/method_list.html:1150(small) +#: doc/reference/en/method_list.html:1230(small) +#: doc/reference/en/method_list.html:1278(small) +#: doc/reference/en/method_list.html:1302(small) +#: doc/reference/en/method_list.html:1702(small) +#: doc/reference/en/method_list.html:1734(small) +#: doc/reference/en/method_list.html:1790(small) +#: doc/reference/en/method_list.html:1910(small) +#: doc/reference/en/method_list.html:1926(small) +#: doc/reference/en/method_list.html:2006(small) +#: doc/reference/en/method_list.html:2190(small) +#: doc/reference/en/method_list.html:2342(small) +#: doc/reference/en/method_list.html:2550(small) +#: doc/reference/en/method_list.html:2726(small) +#: doc/reference/en/method_list.html:2942(small) +#: doc/reference/en/method_list.html:2974(small) +#: doc/reference/en/method_list.html:2990(small) +#: doc/reference/en/method_list.html:3006(small) +#: doc/reference/en/method_list.html:3054(small) +#: doc/reference/en/method_list.html:3134(small) +#: doc/reference/en/method_list.html:3182(small) +#: doc/reference/en/method_list.html:3366(small) +#: doc/reference/en/method_list.html:3398(small) +#: doc/reference/en/method_list.html:3438(small) +#: doc/reference/en/method_list.html:3526(small) +#: doc/reference/en/Grn/Table.html:1703(tt) +#: doc/reference/en/Grn/Table.html:1730(tt) +#: doc/reference/en/Grn/Table.html:2201(tt) +#: doc/reference/en/Grn/Table.html:2228(tt) +#: doc/reference/en/Grn/Table.html:2519(tt) +#: doc/reference/en/Grn/Table.html:2546(tt) +#: doc/reference/en/Grn/Table.html:3613(tt) +#: doc/reference/en/Grn/Table.html:3640(tt) +msgid "Groonga::Table" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TableDumper.html:39(span) -#: doc/reference/en/Groonga/TableDumper.html:163(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1071(a) -msgid "TableDumper" +#: doc/reference/en/methods_list.html:1346(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:113(a) +#: doc/reference/en/method_list.html:2348(a) +msgid "#parameters" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TokenizerError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1092(a) -msgid "TokenizerError" +#: doc/reference/en/methods_list.html:1354(a) +#: doc/reference/en/methods_list.html:1370(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:154(strong) +#: doc/reference/en/Groonga/Command/Select/Result.html:263(strong) +#: doc/reference/en/Groonga/Command/Select/Result.html:292(span) +#: doc/reference/en/Groonga/Command/Select/Result.html:293(span) +#: doc/reference/en/Groonga/Command/Select.html:271(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:144(strong) +#: doc/reference/en/Groonga/QueryLog/Parser.html:216(strong) +#: doc/reference/en/Groonga/QueryLog/Parser.html:249(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:220(strong) +#: doc/reference/en/Groonga/QueryLog/Command.html:594(strong) +#: doc/reference/en/Groonga/QueryLog/Command.html:617(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:971(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:702(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:144(strong) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:216(strong) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:267(span) +#: doc/reference/en/method_list.html:2356(a) +#: doc/reference/en/method_list.html:2388(a) +msgid "parse" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1099(a) -msgid "TooLargeOffset" +#: doc/reference/en/methods_list.html:1362(a) +#: doc/reference/en/methods_list.html:1378(a) +#: doc/reference/en/method_list.html:2364(a) +#: doc/reference/en/method_list.html:2372(a) +#: doc/reference/en/method_list.html:2380(a) +msgid "#parse" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/Table.html:2918(span) -#: doc/reference/en/Groonga/TooLargePage.html:39(span) -#: doc/reference/en/Groonga/TooLargePage.html:205(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1106(a) -msgid "TooLargePage" +#: doc/reference/en/methods_list.html:1386(a) +#: doc/reference/en/method_list.html:2412(a) +msgid "#port" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/TooManyLinks.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1113(a) -msgid "TooManyLinks" +#: doc/reference/en/methods_list.html:1394(a) +#: doc/reference/en/method_list.html:2420(a) +msgid "#position" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1120(a) -msgid "TooManyOpenFiles" +#: doc/reference/en/methods_list.html:1402(a) +#: doc/reference/en/Groonga/Procedure.html:145(a) +#: doc/reference/en/Groonga/IndexCursor.html:171(a) +#: doc/reference/en/method_list.html:2436(a) +#: doc/reference/en/method_list.html:2444(a) +msgid "#prepend" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1127(a) -msgid "TooManyOpenFilesInSystem" +#: doc/reference/en/methods_list.html:1410(a) +#: doc/reference/en/method_list.html:2452(a) +msgid "#previous_page" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1134(a) -msgid "TooManySymbolicLinks" +#: doc/reference/en/methods_list.html:1418(a) +#: doc/reference/en/method_list.html:2460(a) +msgid "#qps" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1141(a) -msgid "TooSmallLimit" +#: doc/reference/en/methods_list.html:1426(a) +#: doc/reference/en/method_list.html:2468(a) +msgid "#query" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1148(a) -msgid "TooSmallOffset" +#: doc/reference/en/methods_list.html:1434(a) +#: doc/reference/en/method_list.html:2492(a) +msgid "#ram" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/Table.html:2916(span) -#: doc/reference/en/Groonga/TooSmallPage.html:39(span) -#: doc/reference/en/Groonga/TooSmallPage.html:205(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1155(a) -msgid "TooSmallPage" +#: doc/reference/en/methods_list.html:1442(a) +#: doc/reference/en/method_list.html:2508(a) +msgid "#raw_command" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:39(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:205(a) -#: doc/reference/en/Groonga/Table.html:2910(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1162(a) -msgid "TooSmallPageSize" +#: doc/reference/en/methods_list.html:1450(a) +#: doc/reference/en/methods_list.html:1458(a) +#: doc/reference/en/method_list.html:2524(a) +#: doc/reference/en/method_list.html:2532(a) +msgid "#record_id" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Type.html:39(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:824(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1169(a) -msgid "Type" +#: doc/reference/en/methods_list.html:1466(a) +#: doc/reference/en/method_list.html:2540(a) +msgid "#record_raw_id" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/UnknownError.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1191(a) -msgid "UnknownError" +#: doc/reference/en/methods_list.html:1474(a) +#: doc/reference/en/methods_list.html:1482(a) +#: doc/reference/en/method_list.html:2548(a) +#: doc/reference/en/method_list.html:2556(a) +#: doc/reference/en/method_list.html:2564(a) +msgid "#records" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1226(a) -msgid "UnsupportedCommandVersion" +#: doc/reference/en/methods_list.html:1490(a) +#: doc/reference/en/method_list.html:2572(a) +msgid "#reference" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:39(span) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1233(a) -msgid "UpdateNotAllowed" +#: doc/reference/en/methods_list.html:1498(a) +#: doc/reference/en/method_list.html:2588(a) +msgid "#reference_column?" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/Variable.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1248(a) -msgid "Variable" +#: doc/reference/en/methods_list.html:1506(a) +#: doc/reference/en/Groonga/Context.html:390(span) +#: doc/reference/en/Groonga/Context.html:392(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:242(strong) +#: doc/reference/en/Groonga/QueryLog/Command.html:632(strong) +#: doc/reference/en/Groonga/QueryLog/Command.html:651(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:2596(a) +#: doc/reference/en/method_list.html:2604(a) +#: doc/reference/en/method_list.html:2612(a) +msgid "register" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:39(span) -#: doc/reference/en/Groonga/Column.html:124(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1255(a) -msgid "VariableSizeColumn" +#: doc/reference/en/methods_list.html:1514(a) +#: doc/reference/en/method_list.html:2628(a) +msgid "#register_plugin" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/View.html:39(span) -#: doc/reference/en/Groonga/View.html:308(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/Table.html:116(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1262(a) -msgid "View" -msgstr "" +#: doc/reference/en/methods_list.html:1522(a) +#: doc/reference/en/method_list.html:2636(a) +#, fuzzy +msgid "#relative_end_time" +msgstr "??????" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Object.html:108(a) -#: doc/reference/en/Groonga/ViewAccessor.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1269(a) -msgid "ViewAccessor" -msgstr "" +#: doc/reference/en/methods_list.html:1530(a) +#: doc/reference/en/method_list.html:2644(a) +#, fuzzy +msgid "#relative_start_time" +msgstr "??????" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/ViewCursor.html:39(span) -#: doc/reference/en/Groonga/TableCursor.html:111(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1276(a) -msgid "ViewCursor" +#: doc/reference/en/methods_list.html:1538(a) +#: doc/reference/en/methods_list.html:1554(a) +#: doc/reference/en/method_list.html:2660(a) +#: doc/reference/en/method_list.html:2668(a) +msgid "#remove_column" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/ViewRecord.html:39(span) -#: doc/reference/en/Groonga/ViewRecord.html:238(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1290(a) -msgid "ViewRecord" +#: doc/reference/en/methods_list.html:1546(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:405(strong) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1449(strong) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1484(span) +#: doc/reference/en/Groonga/Schema.html:386(strong) +#: doc/reference/en/Groonga/Schema.html:684(strong) +#: doc/reference/en/Groonga/Schema.html:2038(strong) +#: doc/reference/en/Groonga/Schema.html:2049(span) +#: doc/reference/en/Groonga/Schema.html:2073(span) +#: doc/reference/en/Groonga/Schema.html:2075(span) +#: doc/reference/en/Groonga/Schema.html:3386(strong) +#: doc/reference/en/Groonga/Schema.html:3397(span) +#: doc/reference/en/Groonga/Schema.html:3421(span) +#: doc/reference/en/Groonga/Schema.html:3423(span) +#: doc/reference/en/method_list.html:2676(a) +msgid "remove_column" msgstr "" -#: doc/reference/en/Groonga.html:109(a) -#: doc/reference/en/Groonga/Error.html:108(a) -#: doc/reference/en/Groonga/ZLibError.html:39(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1305(a) -msgid "ZLibError" +#: doc/reference/en/methods_list.html:1562(a) +#: doc/reference/en/method_list.html:2684(a) +msgid "#remove_index" msgstr "" -#: doc/reference/en/Groonga.html:102(p) -msgid "" -" , , , , , , \n" -" \n" -" \n" -" \n" -" , " -", , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , " -msgstr "" - -#: doc/reference/en/Groonga.html:114(h2) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:107(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:111(h2) -#: doc/reference/en/Groonga/Schema.html:141(h2) -#: doc/reference/en/Groonga/Encoding.html:121(h2) -#: doc/reference/en/Groonga/Procedure.html:98(h2) -#: doc/reference/en/Groonga/Operator.html:81(h2) -#: doc/reference/en/Groonga/Type.html:109(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:100(h2) -msgid "Constant Summary" +#: doc/reference/en/methods_list.html:1570(a) +#: doc/reference/en/method_list.html:2692(a) +msgid "#remove_table" msgstr "" -#: doc/reference/en/Groonga.html:121(tt) -msgid "[???????? ?, ?????????, ?????????, ??]" +#: doc/reference/en/methods_list.html:1578(a) +#: doc/reference/en/Groonga/Schema.html:408(strong) +#: doc/reference/en/Groonga/Schema.html:706(strong) +#: doc/reference/en/Groonga/Schema.html:2086(strong) +#: doc/reference/en/Groonga/Schema.html:2160(span) +#: doc/reference/en/Groonga/Schema.html:2162(span) +#: doc/reference/en/Groonga/Schema.html:3434(strong) +#: doc/reference/en/Groonga/Schema.html:3510(span) +#: doc/reference/en/method_list.html:2700(a) +msgid "remove_table" msgstr "" -#: doc/reference/en/Groonga.html:121(p) -msgid "??????groonga???????? ???" +#: doc/reference/en/methods_list.html:1586(a) +#: doc/reference/en/Groonga/Schema.html:430(strong) +#: doc/reference/en/Groonga/Schema.html:728(strong) +#: doc/reference/en/Groonga/Schema.html:2173(strong) +#: doc/reference/en/Groonga/Schema.html:2248(span) +#: doc/reference/en/Groonga/Schema.html:2250(span) +#: doc/reference/en/Groonga/Schema.html:3522(strong) +#: doc/reference/en/Groonga/Schema.html:3598(span) +#: doc/reference/en/method_list.html:2708(a) +msgid "remove_view" msgstr "" -#: doc/reference/en/Groonga.html:118(dt) -msgid "" -"VERSION =
\n" -"" +#: doc/reference/en/methods_list.html:1594(a) +#: doc/reference/en/method_list.html:2716(a) +msgid "#remove_view" msgstr "" -#: doc/reference/en/Groonga.html:132(span) -msgid "runtime_version" +#: doc/reference/en/methods_list.html:1602(a) +#: doc/reference/en/methods_list.html:1618(a) +#: doc/reference/en/method_list.html:2740(a) +#: doc/reference/en/method_list.html:2756(a) +msgid "#rename_column" msgstr "" -#: doc/reference/en/Groonga.html:137(tt) -msgid "[?????????, ?????????, ?????????]" +#: doc/reference/en/methods_list.html:1610(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:450(strong) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1601(strong) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1683(span) +#: doc/reference/en/Groonga/Schema.html:452(strong) +#: doc/reference/en/Groonga/Schema.html:750(strong) +#: doc/reference/en/Groonga/Schema.html:2261(strong) +#: doc/reference/en/Groonga/Schema.html:2272(span) +#: doc/reference/en/Groonga/Schema.html:2297(span) +#: doc/reference/en/Groonga/Schema.html:2299(span) +#: doc/reference/en/Groonga/Schema.html:3610(strong) +#: doc/reference/en/Groonga/Schema.html:3621(span) +#: doc/reference/en/Groonga/Schema.html:3645(span) +#: doc/reference/en/Groonga/Schema.html:3647(span) +#: doc/reference/en/method_list.html:2748(a) +msgid "rename_column" msgstr "" -#: doc/reference/en/Groonga.html:137(p) -msgid "?????groonga???????????" +#: doc/reference/en/methods_list.html:1626(a) +#: doc/reference/en/method_list.html:2764(a) +msgid "#rename_table" msgstr "" -#: doc/reference/en/Groonga.html:134(dt) -msgid "" -"BUILD_VERSION =
\n" -"" +#: doc/reference/en/methods_list.html:1634(a) +#: doc/reference/en/Groonga/Schema.html:474(strong) +#: doc/reference/en/Groonga/Schema.html:772(strong) +#: doc/reference/en/Groonga/Schema.html:2310(strong) +#: doc/reference/en/Groonga/Schema.html:2322(span) +#: doc/reference/en/Groonga/Schema.html:2346(span) +#: doc/reference/en/Groonga/Schema.html:2348(span) +#: doc/reference/en/Groonga/Schema.html:3658(strong) +#: doc/reference/en/Groonga/Schema.html:3736(span) +#: doc/reference/en/method_list.html:2772(a) +msgid "rename_table" msgstr "" -#: doc/reference/en/Groonga.html:147(span) -#: doc/reference/en/Groonga.html:256(strong) -#: doc/reference/en/Groonga.html:388(strong) -#: doc/reference/en/Groonga.html:416(span) -#: doc/reference/en/method_list.html:388(a) -msgid "build_version" +#: doc/reference/en/methods_list.html:1642(a) +#: doc/reference/en/Groonga/Schema.html:496(strong) +#: doc/reference/en/Groonga/Schema.html:794(strong) +#: doc/reference/en/Groonga/Schema.html:1934(span) +#: doc/reference/en/Groonga/Schema.html:2359(strong) +#: doc/reference/en/Groonga/Schema.html:2389(span) +#: doc/reference/en/Groonga/Schema.html:2391(span) +#: doc/reference/en/Groonga/Schema.html:3749(strong) +#: doc/reference/en/Groonga/Schema.html:3783(span) +#: doc/reference/en/method_list.html:2796(a) +msgid "restore" msgstr "" -#: doc/reference/en/Groonga.html:152(tt) -msgid "[?????????, ? ????????, ?????????]" +#: doc/reference/en/methods_list.html:1650(a) +#: doc/reference/en/method_list.html:2788(a) +msgid "#restore" msgstr "" -#: doc/reference/en/Groonga.html:152(p) -msgid "rroonga???????????" +#: doc/reference/en/methods_list.html:1658(a) +#: doc/reference/en/method_list.html:2804(a) +msgid "#result" msgstr "" -#: doc/reference/en/Groonga.html:149(dt) -msgid "" -"BINDINGS_VERSION =
\n" -"" +#: doc/reference/en/methods_list.html:1666(a) +#: doc/reference/en/method_list.html:2812(a) +msgid "#return_code" msgstr "" -#: doc/reference/en/Groonga.html:162(span) -#: doc/reference/en/Groonga.html:233(strong) -#: doc/reference/en/Groonga.html:349(strong) -#: doc/reference/en/Groonga.html:377(span) -#: doc/reference/en/method_list.html:356(a) -msgid "bindings_version" +#: doc/reference/en/methods_list.html:1674(a) +#: doc/reference/en/method_list.html:2828(a) +msgid "#scalar_column?" msgstr "" -#: doc/reference/en/Groonga.html:167(p) -msgid "backward compatibility." +#: doc/reference/en/methods_list.html:1682(a) +#: doc/reference/en/method_list.html:2844(a) +msgid "#score" msgstr "" -#: doc/reference/en/Groonga.html:164(dt) -msgid "" -"Operation =
\n" -"" +#: doc/reference/en/methods_list.html:1690(a) +#: doc/reference/en/method_list.html:2852(a) +msgid "#score=" msgstr "" -#: doc/reference/en/Groonga.html:176(span) -msgid "deprecated" +#: doc/reference/en/methods_list.html:1698(a) +#: doc/reference/en/method_list.html:2860(a) +msgid "#scorer" msgstr "" -#: doc/reference/en/Groonga.html:178(dt) -msgid "" -"ObjectClosed =
\n" -"" +#: doc/reference/en/methods_list.html:1706(a) +#: doc/reference/en/method_list.html:2868(a) +msgid "#script" msgstr "" -#: doc/reference/en/Groonga.html:190(pre) -msgid "Document-class" -msgstr "" - -#: doc/reference/en/Groonga.html:204(a) -#: doc/reference/en/Groonga/Logger.html:114(a) -#: doc/reference/en/Groonga/Logger.html:255(a) -#: doc/reference/en/Groonga/Accessor.html:117(a) -#: doc/reference/en/Groonga/EncodingSupport.html:104(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:113(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:148(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:117(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:152(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:114(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:173(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:115(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:174(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:114(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:197(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:114(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:173(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:114(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:149(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:114(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:149(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:114(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:149(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:114(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:173(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:115(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:174(a) -#: doc/reference/en/Groonga/Context.html:126(a) -#: doc/reference/en/Groonga/Context.html:226(a) -#: doc/reference/en/Groonga/Schema.html:229(a) -#: doc/reference/en/Groonga/Schema.html:498(a) -#: doc/reference/en/Groonga/Expression.html:116(a) -#: doc/reference/en/Groonga/Snippet.html:116(a) -#: doc/reference/en/Groonga/TableDumper.html:105(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:118(a) -#: doc/reference/en/Groonga/Hash.html:123(a) -#: doc/reference/en/Groonga/Hash.html:155(a) -#: doc/reference/en/Groonga/Array.html:119(a) -#: doc/reference/en/Groonga/Array.html:151(a) -#: doc/reference/en/Groonga/Encoding.html:235(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:118(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:103(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:162(a) -#: doc/reference/en/Groonga/TableCursor.html:133(a) -#: doc/reference/en/Groonga/Pagination.html:95(a) -#: doc/reference/en/Groonga/Pagination.html:202(a) -#: doc/reference/en/Groonga/ViewRecord.html:99(a) -#: doc/reference/en/Groonga/ViewRecord.html:158(a) -#: doc/reference/en/Groonga/Type.html:376(a) -#: doc/reference/en/Groonga/Database.html:124(a) -#: doc/reference/en/Groonga/Database.html:177(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:134(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:164(a) -#: doc/reference/en/Groonga/SchemaDumper.html:115(a) -#: doc/reference/en/Groonga/Object.html:120(a) -#: doc/reference/en/Groonga/Record.html:99(a) -#: doc/reference/en/Groonga/Record.html:134(a) -#: doc/reference/en/Groonga/View.html:119(a) -#: doc/reference/en/Groonga/View.html:152(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:114(a) -#: doc/reference/en/Groonga/Column.html:136(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:127(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:159(a) -#: doc/reference/en/Groonga/IndexCursor.html:111(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:101(a) -#: doc/reference/en/Groonga/Command/Builder.html:99(a) -#: doc/reference/en/Groonga/Command/Builder.html:158(a) -#: doc/reference/en/Groonga/Command/Builder.html:188(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:111(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:218(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:269(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:101(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:184(a) -#: doc/reference/en/Groonga/Command/Select.html:115(a) -#: doc/reference/en/Groonga/Posting.html:122(a) -#: doc/reference/en/Groonga/Posting.html:301(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:105(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:115(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:198(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:249(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:99(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:278(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:112(a) -#: doc/reference/en/Groonga/Table.html:138(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:105(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:105(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:99(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:134(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:99(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:278(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:101(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:232(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:99(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:134(a) -#: doc/reference/en/Groonga/TooSmallPage.html:103(a) -#: doc/reference/en/Groonga/TooSmallPage.html:162(a) -#: doc/reference/en/Groonga/Plugin.html:116(a) -#: doc/reference/en/Groonga/TooLargePage.html:103(a) -#: doc/reference/en/Groonga/TooLargePage.html:162(a) -#: doc/reference/en/Groonga/Variable.html:116(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:108(a) -#: doc/reference/en/Grn/Table.html:111(a) -msgid "collapse" +#: doc/reference/en/methods_list.html:1714(a) +#: doc/reference/en/method_list.html:2876(a) +#: doc/reference/en/method_list.html:2884(a) +#: doc/reference/en/method_list.html:2892(a) +#: doc/reference/en/method_list.html:2900(a) +#: doc/reference/en/method_list.html:2908(a) +msgid "#search" msgstr "" -#: doc/reference/en/Groonga.html:204(small) -#: doc/reference/en/Groonga.html:445(span) -#: doc/reference/en/Groonga/Logger.html:114(small) -#: doc/reference/en/Groonga/Logger.html:255(small) -#: doc/reference/en/Groonga/Logger.html:522(span) -#: doc/reference/en/Groonga/Accessor.html:117(small) -#: doc/reference/en/Groonga/EncodingSupport.html:104(small) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:113(small) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:148(small) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:117(small) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:152(small) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:797(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:992(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1082(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1250(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1468(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1560(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1587(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1824(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1906(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2074(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2157(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:114(small) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:173(small) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:115(small) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:174(small) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:114(small) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:197(small) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:114(small) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:173(small) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:114(small) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:149(small) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:114(small) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:149(small) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:114(small) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:149(small) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:114(small) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:173(small) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:115(small) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:174(small) -#: doc/reference/en/Groonga/Context.html:126(small) -#: doc/reference/en/Groonga/Context.html:226(small) -#: doc/reference/en/Groonga/Context.html:681(span) -#: doc/reference/en/Groonga/Context.html:1235(span) -#: doc/reference/en/Groonga/Context.html:1548(span) -#: doc/reference/en/Groonga/Context.html:1624(span) -#: doc/reference/en/Groonga/Context.html:1896(span) -#: doc/reference/en/Groonga/Schema.html:229(small) -#: doc/reference/en/Groonga/Schema.html:498(small) -#: doc/reference/en/Groonga/Schema.html:809(span) -#: doc/reference/en/Groonga/Schema.html:910(span) -#: doc/reference/en/Groonga/Schema.html:1008(span) -#: doc/reference/en/Groonga/Schema.html:1131(span) -#: doc/reference/en/Groonga/Schema.html:1269(span) -#: doc/reference/en/Groonga/Schema.html:1452(span) -#: doc/reference/en/Groonga/Schema.html:1653(span) -#: doc/reference/en/Groonga/Schema.html:1785(span) -#: doc/reference/en/Groonga/Schema.html:1827(span) -#: doc/reference/en/Groonga/Schema.html:1909(span) -#: doc/reference/en/Groonga/Schema.html:2053(span) -#: doc/reference/en/Groonga/Schema.html:2138(span) -#: doc/reference/en/Groonga/Schema.html:2367(span) -#: doc/reference/en/Groonga/Schema.html:2411(span) -#: doc/reference/en/Groonga/Schema.html:2470(span) -#: doc/reference/en/Groonga/Schema.html:2514(span) -#: doc/reference/en/Groonga/Schema.html:2593(span) -#: doc/reference/en/Groonga/Schema.html:2727(span) -#: doc/reference/en/Groonga/Schema.html:2898(span) -#: doc/reference/en/Groonga/Schema.html:3054(span) -#: doc/reference/en/Groonga/Schema.html:3111(span) -#: doc/reference/en/Groonga/Schema.html:3193(span) -#: doc/reference/en/Groonga/Schema.html:3379(span) -#: doc/reference/en/Groonga/Schema.html:3465(span) -#: doc/reference/en/Groonga/Schema.html:3597(span) -#: doc/reference/en/Groonga/Expression.html:116(small) -#: doc/reference/en/Groonga/Expression.html:812(span) -#: doc/reference/en/Groonga/Expression.html:946(span) -#: doc/reference/en/Groonga/Expression.html:1025(span) -#: doc/reference/en/Groonga/Expression.html:1159(span) -#: doc/reference/en/Groonga/Snippet.html:116(small) -#: doc/reference/en/Groonga/Snippet.html:229(span) -#: doc/reference/en/Groonga/Snippet.html:340(span) -#: doc/reference/en/Groonga/TableDumper.html:105(small) -#: doc/reference/en/Groonga/VariableSizeColumn.html:118(small) -#: doc/reference/en/Groonga/VariableSizeColumn.html:235(span) -#: doc/reference/en/Groonga/VariableSizeColumn.html:263(span) -#: doc/reference/en/Groonga/VariableSizeColumn.html:302(span) -#: doc/reference/en/Groonga/VariableSizeColumn.html:403(span) -#: doc/reference/en/Groonga/Hash.html:123(small) -#: doc/reference/en/Groonga/Hash.html:155(small) -#: doc/reference/en/Groonga/Hash.html:377(span) -#: doc/reference/en/Groonga/Hash.html:516(span) -#: doc/reference/en/Groonga/Array.html:119(small) -#: doc/reference/en/Groonga/Array.html:151(small) -#: doc/reference/en/Groonga/Array.html:325(span) -#: doc/reference/en/Groonga/Array.html:447(span) -#: doc/reference/en/Groonga/Encoding.html:235(small) -#: doc/reference/en/Groonga/FixSizeColumn.html:118(small) -#: doc/reference/en/Groonga/TooSmallPageSize.html:103(small) -#: doc/reference/en/Groonga/TooSmallPageSize.html:162(small) -#: doc/reference/en/Groonga/TableCursor.html:133(small) -#: doc/reference/en/Groonga/TableCursor.html:418(span) -#: doc/reference/en/Groonga/Pagination.html:95(small) -#: doc/reference/en/Groonga/Pagination.html:202(small) -#: doc/reference/en/Groonga/Pagination.html:763(span) -#: doc/reference/en/Groonga/Pagination.html:813(span) -#: doc/reference/en/Groonga/Pagination.html:863(span) -#: doc/reference/en/Groonga/Pagination.html:913(span) -#: doc/reference/en/Groonga/Pagination.html:1000(span) -#: doc/reference/en/Groonga/ViewRecord.html:99(small) -#: doc/reference/en/Groonga/ViewRecord.html:158(small) -#: doc/reference/en/Groonga/Type.html:376(small) -#: doc/reference/en/Groonga/Type.html:446(span) -#: doc/reference/en/Groonga/Database.html:124(small) -#: doc/reference/en/Groonga/Database.html:177(small) -#: doc/reference/en/Groonga/Database.html:475(span) -#: doc/reference/en/Groonga/Database.html:495(span) -#: doc/reference/en/Groonga/Database.html:623(span) -#: doc/reference/en/Groonga/Database.html:769(span) -#: doc/reference/en/Groonga/Database.html:789(span) -#: doc/reference/en/Groonga/Database.html:973(span) -#: doc/reference/en/Groonga/Database.html:1104(span) -#: doc/reference/en/Groonga/Database.html:1132(span) -#: doc/reference/en/Groonga/Database.html:1152(span) -#: doc/reference/en/Groonga/Database.html:1282(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:134(small) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:164(small) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:412(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:578(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:689(span) -#: doc/reference/en/Groonga/SchemaDumper.html:115(small) -#: doc/reference/en/Groonga/Object.html:120(small) -#: doc/reference/en/Groonga/Object.html:796(span) -#: doc/reference/en/Groonga/Object.html:949(span) -#: doc/reference/en/Groonga/Object.html:1381(span) -#: doc/reference/en/Groonga/Record.html:99(small) -#: doc/reference/en/Groonga/Record.html:134(small) -#: doc/reference/en/Groonga/Record.html:1240(span) -#: doc/reference/en/Groonga/Record.html:1520(span) -#: doc/reference/en/Groonga/Record.html:1609(span) -#: doc/reference/en/Groonga/Record.html:1698(span) -#: doc/reference/en/Groonga/Record.html:1821(span) -#: doc/reference/en/Groonga/Record.html:1879(span) -#: doc/reference/en/Groonga/Record.html:2095(span) -#: doc/reference/en/Groonga/Record.html:2146(span) -#: doc/reference/en/Groonga/Record.html:2235(span) -#: doc/reference/en/Groonga/Record.html:2329(span) -#: doc/reference/en/Groonga/Record.html:2380(span) -#: doc/reference/en/Groonga/Record.html:2431(span) -#: doc/reference/en/Groonga/Record.html:2519(span) -#: doc/reference/en/Groonga/Record.html:2644(span) -#: doc/reference/en/Groonga/View.html:119(small) -#: doc/reference/en/Groonga/View.html:152(small) -#: doc/reference/en/Groonga/View.html:400(span) -#: doc/reference/en/Groonga/View.html:621(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:114(small) -#: doc/reference/en/Groonga/Column.html:136(small) -#: doc/reference/en/Groonga/Column.html:1105(span) -#: doc/reference/en/Groonga/Column.html:1354(span) -#: doc/reference/en/Groonga/Column.html:1443(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:127(small) -#: doc/reference/en/Groonga/PatriciaTrie.html:159(small) -#: doc/reference/en/Groonga/PatriciaTrie.html:549(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:715(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:855(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:998(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1422(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1539(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1563(span) -#: doc/reference/en/Groonga/IndexCursor.html:111(small) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:101(small) -#: doc/reference/en/Groonga/Command/Builder.html:99(small) -#: doc/reference/en/Groonga/Command/Builder.html:158(small) -#: doc/reference/en/Groonga/Command/Builder.html:188(small) -#: doc/reference/en/Groonga/Command/Select/Result.html:111(small) -#: doc/reference/en/Groonga/Command/Select/Result.html:218(small) -#: doc/reference/en/Groonga/Command/Select/Result.html:269(small) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:101(small) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:184(small) -#: doc/reference/en/Groonga/Command/Select.html:115(small) -#: doc/reference/en/Groonga/Posting.html:122(small) -#: doc/reference/en/Groonga/Posting.html:301(small) -#: doc/reference/en/Groonga/Posting.html:907(span) -#: doc/reference/en/Groonga/Posting.html:927(span) -#: doc/reference/en/Groonga/Posting.html:936(span) -#: doc/reference/en/Groonga/Posting.html:945(span) -#: doc/reference/en/Groonga/Posting.html:954(span) -#: doc/reference/en/Groonga/Posting.html:963(span) -#: doc/reference/en/Groonga/Posting.html:972(span) -#: doc/reference/en/Groonga/Posting.html:981(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:105(small) -#: doc/reference/en/Groonga/QueryLog/Command.html:115(small) -#: doc/reference/en/Groonga/QueryLog/Command.html:198(small) -#: doc/reference/en/Groonga/QueryLog/Command.html:249(small) -#: doc/reference/en/Groonga/QueryLog/Command.html:684(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:852(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:99(small) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:278(small) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1140(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1190(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:112(small) -#: doc/reference/en/Groonga/Table.html:138(small) -#: doc/reference/en/Groonga/Table.html:1060(span) -#: doc/reference/en/Groonga/Table.html:1324(span) -#: doc/reference/en/Groonga/Table.html:1403(span) -#: doc/reference/en/Groonga/Table.html:1536(span) -#: doc/reference/en/Groonga/Table.html:1633(span) -#: doc/reference/en/Groonga/Table.html:1849(span) -#: doc/reference/en/Groonga/Table.html:1862(span) -#: doc/reference/en/Groonga/Table.html:2216(span) -#: doc/reference/en/Groonga/Table.html:2384(span) -#: doc/reference/en/Groonga/Table.html:2501(span) -#: doc/reference/en/Groonga/Table.html:2729(span) -#: doc/reference/en/Groonga/Table.html:2820(span) -#: doc/reference/en/Groonga/Table.html:2844(span) -#: doc/reference/en/Groonga/Table.html:2857(span) -#: doc/reference/en/Groonga/Table.html:2963(span) -#: doc/reference/en/Groonga/Table.html:3027(span) -#: doc/reference/en/Groonga/Table.html:3209(span) -#: doc/reference/en/Groonga/Table.html:3298(span) -#: doc/reference/en/Groonga/Table.html:3601(span) -#: doc/reference/en/Groonga/Table.html:3618(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:105(small) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:105(small) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:99(small) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:134(small) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:99(small) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:278(small) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:101(small) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:232(small) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:99(small) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:134(small) -#: doc/reference/en/Groonga/TooSmallPage.html:103(small) -#: doc/reference/en/Groonga/TooSmallPage.html:162(small) -#: doc/reference/en/Groonga/Plugin.html:116(small) -#: doc/reference/en/Groonga/Plugin.html:223(span) -#: doc/reference/en/Groonga/TooLargePage.html:103(small) -#: doc/reference/en/Groonga/TooLargePage.html:162(small) -#: doc/reference/en/Groonga/Variable.html:116(small) -#: doc/reference/en/Groonga/Table/KeySupport.html:108(small) -#: doc/reference/en/Groonga/Table/KeySupport.html:634(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:755(span) -#: doc/reference/en/Grn/Table.html:111(small) -#: doc/reference/en/Grn/Table.html:934(span) -#: doc/reference/en/Grn/Table.html:1002(span) -#: doc/reference/en/Grn/Table.html:1266(span) -#: doc/reference/en/Grn/Table.html:1345(span) -#: doc/reference/en/Grn/Table.html:1461(span) -#: doc/reference/en/Grn/Table.html:1478(span) -#: doc/reference/en/Grn/Table.html:1575(span) -#: doc/reference/en/Grn/Table.html:1730(span) -#: doc/reference/en/Grn/Table.html:1791(span) -#: doc/reference/en/Grn/Table.html:1804(span) -#: doc/reference/en/Grn/Table.html:1993(span) -#: doc/reference/en/Grn/Table.html:2021(span) -#: doc/reference/en/Grn/Table.html:2158(span) -#: doc/reference/en/Grn/Table.html:2228(span) -#: doc/reference/en/Grn/Table.html:2326(span) -#: doc/reference/en/Grn/Table.html:2443(span) -#: doc/reference/en/Grn/Table.html:2546(span) -#: doc/reference/en/Grn/Table.html:2620(span) -#: doc/reference/en/Grn/Table.html:2671(span) -#: doc/reference/en/Grn/Table.html:2747(span) -#: doc/reference/en/Grn/Table.html:2811(span) -#: doc/reference/en/Grn/Table.html:2994(span) -#: doc/reference/en/Grn/Table.html:3007(span) -#: doc/reference/en/Grn/Table.html:3035(span) -#: doc/reference/en/Grn/Table.html:3063(span) -#: doc/reference/en/Grn/Table.html:3083(span) -#: doc/reference/en/Grn/Table.html:3389(span) -#: doc/reference/en/Grn/Table.html:3406(span) -#: doc/reference/en/Grn/Table.html:3640(span) -msgid "()" +#: doc/reference/en/methods_list.html:1722(a) +#: doc/reference/en/method_list.html:2916(a) +msgid "#section_id" msgstr "" -#: doc/reference/en/Groonga.html:202(h2) -#: doc/reference/en/Groonga/Logger.html:112(h2) -#: doc/reference/en/Groonga/Context.html:124(h2) -#: doc/reference/en/Groonga/Schema.html:227(h2) -#: doc/reference/en/Groonga/Hash.html:121(h2) -#: doc/reference/en/Groonga/Array.html:117(h2) -#: doc/reference/en/Groonga/Encoding.html:233(h2) -#: doc/reference/en/Groonga/Database.html:122(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:132(h2) -#: doc/reference/en/Groonga/View.html:117(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:125(h2) -#: doc/reference/en/Groonga/Command/Builder.html:156(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:216(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:196(h2) -#: doc/reference/en/Groonga/Plugin.html:114(h2) -msgid "Class Method Summary " +#: doc/reference/en/methods_list.html:1730(a) +#: doc/reference/en/method_list.html:2924(a) +#: doc/reference/en/method_list.html:2932(a) +#: doc/reference/en/method_list.html:2940(a) +msgid "#select" msgstr "" -#: doc/reference/en/Groonga.html:212(strong) -#: doc/reference/en/Groonga.html:309(strong) -#: doc/reference/en/Groonga.html:338(span) -#: doc/reference/en/Groonga/Context.html:234(strong) -#: doc/reference/en/Groonga/Context.html:988(strong) -#: doc/reference/en/Groonga/Context.html:990(strong) -#: doc/reference/en/Groonga/Context.html:1012(strong) -#: doc/reference/en/Groonga/Context.html:1040(strong) -#: doc/reference/en/Groonga/Expression.html:124(strong) -#: doc/reference/en/Groonga/Expression.html:395(strong) -#: doc/reference/en/Groonga/Expression.html:397(strong) -#: doc/reference/en/Groonga/Hash.html:359(p) -#: doc/reference/en/Groonga/Array.html:307(p) -#: doc/reference/en/Groonga/FixSizeColumn.html:126(strong) -#: doc/reference/en/Groonga/FixSizeColumn.html:241(strong) -#: doc/reference/en/Groonga/ViewRecord.html:188(strong) -#: doc/reference/en/Groonga/ViewRecord.html:449(strong) -#: doc/reference/en/Groonga/ViewRecord.html:475(span) -#: doc/reference/en/Groonga/Database.html:1264(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:394(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:560(p) -#: doc/reference/en/Groonga/Object.html:150(strong) -#: doc/reference/en/Groonga/Object.html:591(strong) -#: doc/reference/en/Groonga/Record.html:165(strong) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1147(strong) -#: doc/reference/en/Groonga/Record.html:1173(span) -#: doc/reference/en/Groonga/View.html:382(p) -#: doc/reference/en/Groonga/Column.html:829(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:531(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:697(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:837(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:980(p) -#: doc/reference/en/Groonga/Command/Builder.html:196(strong) -#: doc/reference/en/Groonga/Command/Builder.html:455(strong) -#: doc/reference/en/Groonga/Command/Builder.html:472(span) -#: doc/reference/en/Groonga/Table.html:146(strong) -#: doc/reference/en/Groonga/Table.html:965(strong) -#: doc/reference/en/Groonga/Table.html:2366(p) -#: doc/reference/en/Groonga/Table.html:2711(p) -#: doc/reference/en/Groonga/Table/KeySupport.html:116(strong) -#: doc/reference/en/Groonga/Table/KeySupport.html:456(strong) -#: doc/reference/en/method_list.html:84(a) -#: doc/reference/en/Grn/Table.html:119(strong) -#: doc/reference/en/Grn/Table.html:907(strong) -#: doc/reference/en/Grn/Table.html:2308(p) -#: doc/reference/en/Grn/Table.html:2653(p) -msgid "[]" +#: doc/reference/en/methods_list.html:1738(a) +#: doc/reference/en/method_list.html:2948(a) +msgid "#select_command?" msgstr "" -#: doc/reference/en/Groonga.html:212(a) -msgid "+ (Object) (name)" +#: doc/reference/en/methods_list.html:1746(a) +#: doc/reference/en/method_list.html:2996(a) +msgid "#short_text" msgstr "" -#: doc/reference/en/Groonga.html:225(p) -msgid "call-seq:." +#: doc/reference/en/methods_list.html:1754(a) +#: doc/reference/en/method_list.html:3012(a) +msgid "#slow?" msgstr "" -#: doc/reference/en/Groonga.html:233(a) doc/reference/en/Groonga.html:256(a) -#: doc/reference/en/Groonga/Logger.html:232(a) -#: doc/reference/en/Groonga/Hash.html:131(a) -#: doc/reference/en/Groonga/Array.html:127(a) -#: doc/reference/en/Groonga/Encoding.html:243(a) -#: doc/reference/en/Groonga/Database.html:153(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:142(a) -#: doc/reference/en/Groonga/View.html:127(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:135(a) -#: doc/reference/en/Groonga/Plugin.html:124(a) -#: doc/reference/en/Groonga/Plugin.html:145(a) -#: doc/reference/en/Groonga/Plugin.html:166(a) -msgid "+ (Object) " +#: doc/reference/en/methods_list.html:1762(a) +#: doc/reference/en/method_list.html:3020(a) +msgid "#slow_operation_threshold" msgstr "" -#: doc/reference/en/Groonga.html:246(tt) doc/reference/en/Groonga.html:269(tt) -#: doc/reference/en/Groonga.html:355(tt) doc/reference/en/Groonga.html:394(tt) -msgid "??????????.? ????????.?????????\"" +#: doc/reference/en/methods_list.html:1770(a) +#: doc/reference/en/method_list.html:3028(a) +msgid "#slow_response_threshold" msgstr "" -#: doc/reference/en/Groonga.html:246(p) -msgid "" -"BINDINGS_VERSION?\".????????????? ??????" -"??." +#: doc/reference/en/methods_list.html:1778(a) +#: doc/reference/en/method_list.html:3060(a) +msgid "#sortby" msgstr "" -#: doc/reference/en/Groonga.html:269(p) -msgid "" -"BUILD_VERSION?\".???????????? ?????????." +#: doc/reference/en/methods_list.html:1786(a) +#: doc/reference/en/method_list.html:3092(a) +msgid "#start" msgstr "" -#: doc/reference/en/Groonga.html:279(strong) -#: doc/reference/en/Groonga.html:427(strong) -#: doc/reference/en/Groonga.html:473(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:493(strong) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1040(strong) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1057(span) -#: doc/reference/en/method_list.html:3620(a) -msgid "version" +#: doc/reference/en/methods_list.html:1794(a) +#: doc/reference/en/method_list.html:3100(a) +msgid "#start_offset" msgstr "" -#: doc/reference/en/Groonga.html:279(a) -msgid "+ (String) " +#: doc/reference/en/methods_list.html:1802(a) +#: doc/reference/en/method_list.html:3108(a) +msgid "#start_time" msgstr "" -#: doc/reference/en/Groonga.html:292(p) doc/reference/en/Groonga.html:433(p) -msgid "Format version." +#: doc/reference/en/methods_list.html:1810(a) +#: doc/reference/en/method_list.html:3124(a) +msgid "#summaries" msgstr "" -#: doc/reference/en/Groonga.html:303(h2) -#: doc/reference/en/Groonga/Logger.html:303(h2) -#: doc/reference/en/Groonga/Context.html:758(h2) -#: doc/reference/en/Groonga/Schema.html:875(h2) -#: doc/reference/en/Groonga/Hash.html:236(h2) -#: doc/reference/en/Groonga/Array.html:211(h2) -#: doc/reference/en/Groonga/Encoding.html:289(h2) -#: doc/reference/en/Groonga/Database.html:560(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:268(h2) -#: doc/reference/en/Groonga/View.html:275(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:405(h2) -#: doc/reference/en/Groonga/Command/Builder.html:413(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:531(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:558(h2) -#: doc/reference/en/Groonga/Plugin.html:190(h2) -msgid "Class Method Details" +#: doc/reference/en/methods_list.html:1818(a) +#: doc/reference/en/method_list.html:3132(a) +#: doc/reference/en/method_list.html:3140(a) +#: doc/reference/en/method_list.html:3148(a) +msgid "#support_key?" msgstr "" -#: doc/reference/en/Groonga.html:307(p) -msgid "" -"+ () " -"(name)" +#: doc/reference/en/methods_list.html:1826(a) +#: doc/reference/en/method_list.html:3164(a) +msgid "#support_score?" msgstr "" -#: doc/reference/en/Groonga.html:315(p) -msgid "" -"call-seq: Groonga[name] ? Groonga::Object or nil Groonga[id] ? Groonga::" -"Object or nil" +#: doc/reference/en/methods_list.html:1834(a) +#: doc/reference/en/method_list.html:3172(a) +#: doc/reference/en/method_list.html:3180(a) +msgid "#support_sub_records?" msgstr "" -#: doc/reference/en/Groonga.html:318(p) -msgid "???????Groonga::Context.default[name]????" +#: doc/reference/en/methods_list.html:1842(a) +#: doc/reference/en/methods_list.html:1850(a) +#: doc/reference/en/methods_list.html:1858(a) +#: doc/reference/en/methods_list.html:1866(a) +#: doc/reference/en/method_list.html:3204(a) +#: doc/reference/en/method_list.html:3212(a) +#: doc/reference/en/method_list.html:3220(a) +#: doc/reference/en/method_list.html:3228(a) +#: doc/reference/en/method_list.html:3236(a) +msgid "#table" msgstr "" -#: doc/reference/en/Groonga.html:328(pre) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:823(pre) -msgid "86 87 88" +#: doc/reference/en/methods_list.html:1874(a) +#: doc/reference/en/method_list.html:3244(a) +msgid "#tag_keys" msgstr "" -#: doc/reference/en/Groonga.html:336(span) -msgid "# File 'lib/groonga.rb', line 86" +#: doc/reference/en/methods_list.html:1876(small) +#: doc/reference/en/Groonga/PatriciaTrie.html:85(li) +#: doc/reference/en/method_list.html:726(small) +#: doc/reference/en/method_list.html:2214(small) +#: doc/reference/en/method_list.html:2222(small) +#: doc/reference/en/method_list.html:2238(small) +#: doc/reference/en/method_list.html:2430(small) +#: doc/reference/en/method_list.html:2622(small) +#: doc/reference/en/method_list.html:2838(small) +#: doc/reference/en/method_list.html:2902(small) +#: doc/reference/en/method_list.html:3246(small) +#: doc/reference/en/file.tutorial.html:99(dt) +msgid "Groonga::PatriciaTrie" msgstr "" -#: doc/reference/en/Groonga.html:338(span) -#: doc/reference/en/Groonga.html:377(span) -#: doc/reference/en/Groonga.html:416(span) -#: doc/reference/en/Groonga.html:473(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:213(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:259(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:717(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1036(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1515(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:249(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:296(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:336(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:299(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:339(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:328(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:368(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:408(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:300(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:340(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:224(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:270(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:270(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:270(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:250(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:298(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:338(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:299(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:339(span) -#: doc/reference/en/Groonga/Context.html:1334(span) -#: doc/reference/en/Groonga/Context.html:1736(span) -#: doc/reference/en/Groonga/Context.html:1857(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:2021(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2239(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3257(span) -#: doc/reference/en/Groonga/Schema.html:3299(span) -#: doc/reference/en/Groonga/Schema.html:3345(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3563(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3697(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/TableDumper.html:237(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:234(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:282(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:322(span) -#: doc/reference/en/Groonga/Pagination.html:527(span) -#: doc/reference/en/Groonga/Pagination.html:567(span) -#: doc/reference/en/Groonga/Pagination.html:607(span) -#: doc/reference/en/Groonga/Pagination.html:647(span) -#: doc/reference/en/Groonga/Pagination.html:696(span) -#: doc/reference/en/Groonga/Pagination.html:734(span) -#: doc/reference/en/Groonga/Pagination.html:784(span) -#: doc/reference/en/Groonga/Pagination.html:834(span) -#: doc/reference/en/Groonga/Pagination.html:884(span) -#: doc/reference/en/Groonga/Pagination.html:934(span) -#: doc/reference/en/Groonga/Pagination.html:971(span) -#: doc/reference/en/Groonga/Pagination.html:1021(span) -#: doc/reference/en/Groonga/Pagination.html:1058(span) -#: doc/reference/en/Groonga/Pagination.html:1096(span) -#: doc/reference/en/Groonga/Pagination.html:1135(span) -#: doc/reference/en/Groonga/Pagination.html:1173(span) -#: doc/reference/en/Groonga/Pagination.html:1215(span) -#: doc/reference/en/Groonga/ViewRecord.html:265(span) -#: doc/reference/en/Groonga/ViewRecord.html:304(span) -#: doc/reference/en/Groonga/ViewRecord.html:351(span) -#: doc/reference/en/Groonga/ViewRecord.html:391(span) -#: doc/reference/en/Groonga/ViewRecord.html:437(span) -#: doc/reference/en/Groonga/ViewRecord.html:475(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:249(span) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/Record.html:1027(span) -#: doc/reference/en/Groonga/Record.html:1088(span) -#: doc/reference/en/Groonga/Record.html:1135(span) -#: doc/reference/en/Groonga/Record.html:1173(span) -#: doc/reference/en/Groonga/Record.html:1211(span) -#: doc/reference/en/Groonga/Record.html:1261(span) -#: doc/reference/en/Groonga/Record.html:1299(span) -#: doc/reference/en/Groonga/Record.html:1340(span) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1416(span) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1491(span) -#: doc/reference/en/Groonga/Record.html:1541(span) -#: doc/reference/en/Groonga/Record.html:1579(span) -#: doc/reference/en/Groonga/Record.html:1630(span) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1719(span) -#: doc/reference/en/Groonga/Record.html:1762(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:1940(span) -#: doc/reference/en/Groonga/Record.html:1978(span) -#: doc/reference/en/Groonga/Record.html:2021(span) -#: doc/reference/en/Groonga/Record.html:2066(span) -#: doc/reference/en/Groonga/Record.html:2116(span) -#: doc/reference/en/Groonga/Record.html:2167(span) -#: doc/reference/en/Groonga/Record.html:2205(span) -#: doc/reference/en/Groonga/Record.html:2260(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2350(span) -#: doc/reference/en/Groonga/Record.html:2401(span) -#: doc/reference/en/Groonga/Record.html:2452(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/Record.html:2540(span) -#: doc/reference/en/Groonga/Record.html:2577(span) -#: doc/reference/en/Groonga/Record.html:2614(span) -#: doc/reference/en/Groonga/Record.html:2665(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:252(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:361(span) -#: doc/reference/en/Groonga/Command/Builder.html:401(span) -#: doc/reference/en/Groonga/Command/Builder.html:437(span) -#: doc/reference/en/Groonga/Command/Builder.html:472(span) -#: doc/reference/en/Groonga/Command/Builder.html:500(span) -#: doc/reference/en/Groonga/Command/Builder.html:534(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:351(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:407(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:463(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:519(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:562(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:608(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:652(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:266(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:322(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:378(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:413(span) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Command/Select.html:249(span) -#: doc/reference/en/Groonga/Posting.html:420(span) -#: doc/reference/en/Groonga/Posting.html:479(span) -#: doc/reference/en/Groonga/Posting.html:533(span) -#: doc/reference/en/Groonga/Posting.html:587(span) -#: doc/reference/en/Groonga/Posting.html:641(span) -#: doc/reference/en/Groonga/Posting.html:695(span) -#: doc/reference/en/Groonga/Posting.html:749(span) -#: doc/reference/en/Groonga/Posting.html:803(span) -#: doc/reference/en/Groonga/Posting.html:869(span) -#: doc/reference/en/Groonga/Posting.html:1025(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:188(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:236(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:466(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:506(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:546(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:585(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:617(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:653(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:705(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:750(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:809(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:873(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:559(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:612(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:652(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:692(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:732(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:772(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:852(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:887(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:915(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:966(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1017(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1046(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1075(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1107(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1161(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1211(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1240(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:314(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:347(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:375(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:403(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:431(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:459(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:487(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:546(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:581(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:609(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:637(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:665(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:693(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:721(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:749(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:777(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:805(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:833(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:861(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:889(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:917(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:945(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:973(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1001(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1029(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1057(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:188(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:254(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:197(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:242(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:347(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:398(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:438(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:478(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:518(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:558(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:598(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:638(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:314(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:370(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:426(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:482(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:538(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:573(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:197(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:242(span) -#: doc/reference/en/Groonga/TooSmallPage.html:234(span) -#: doc/reference/en/Groonga/TooSmallPage.html:282(span) -#: doc/reference/en/Groonga/TooSmallPage.html:322(span) -#: doc/reference/en/Groonga/TooLargePage.html:234(span) -#: doc/reference/en/Groonga/TooLargePage.html:282(span) -#: doc/reference/en/Groonga/TooLargePage.html:322(span) -msgid "def" +#: doc/reference/en/methods_list.html:1882(a) +#: doc/reference/en/method_list.html:3252(a) +msgid "#targets" msgstr "" -#: doc/reference/en/Groonga.html:338(span) -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:119(strong) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:187(strong) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:213(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:123(strong) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:175(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:196(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:217(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:264(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:287(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:310(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:333(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:354(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:376(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:398(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:464(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:486(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:508(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:552(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:575(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:598(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:621(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:644(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:668(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:691(strong) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:717(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:745(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:784(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:909(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:912(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:932(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1069(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1079(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1151(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1194(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1237(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1247(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1315(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1355(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1357(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1358(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1382(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1383(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1399(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1427(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1430(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1520(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1622(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1626(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1649(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1689(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1729(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1811(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1821(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1893(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1903(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1975(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2018(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2061(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2071(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2144(code) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2154(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:120(strong) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:252(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:274(strong) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:300(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:120(strong) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:225(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:244(strong) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:270(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:120(strong) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:225(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:244(strong) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:270(span) -#: doc/reference/en/Groonga/Context.html:555(em) -#: doc/reference/en/Groonga/Context.html:998(em) -#: doc/reference/en/Groonga/Context.html:1829(em) -#: doc/reference/en/Groonga/Context.html:1860(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Schema.html:116(span) -#: doc/reference/en/Groonga/Schema.html:250(em) -#: doc/reference/en/Groonga/Schema.html:405(em) -#: doc/reference/en/Groonga/Schema.html:426(em) -#: doc/reference/en/Groonga/Schema.html:519(em) -#: doc/reference/en/Groonga/Schema.html:540(em) -#: doc/reference/en/Groonga/Schema.html:561(em) -#: doc/reference/en/Groonga/Schema.html:582(em) -#: doc/reference/en/Groonga/Schema.html:690(em) -#: doc/reference/en/Groonga/Schema.html:711(em) -#: doc/reference/en/Groonga/Schema.html:887(em) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1101(em) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:2040(em) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2125(em) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2352(em) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2455(em) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:2564(em) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3096(em) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3364(em) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3450(em) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Expression.html:137(em) -#: doc/reference/en/Groonga/Expression.html:404(em) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/ViewRecord.html:304(span) -#: doc/reference/en/Groonga/ViewRecord.html:305(span) -#: doc/reference/en/Groonga/ViewRecord.html:307(span) -#: doc/reference/en/Groonga/Type.html:399(em) -#: doc/reference/en/Groonga/Type.html:430(em) -#: doc/reference/en/Groonga/Database.html:1069(span) -#: doc/reference/en/Groonga/Database.html:1074(span) -#: doc/reference/en/Groonga/Database.html:1079(span) -#: doc/reference/en/Groonga/Object.html:345(strong) -#: doc/reference/en/Groonga/Object.html:1121(strong) -#: doc/reference/en/Groonga/Record.html:329(em) -#: doc/reference/en/Groonga/Record.html:415(em) -#: doc/reference/en/Groonga/Record.html:437(em) -#: doc/reference/en/Groonga/Record.html:459(em) -#: doc/reference/en/Groonga/Record.html:657(em) -#: doc/reference/en/Groonga/Record.html:678(em) -#: doc/reference/en/Groonga/Record.html:742(em) -#: doc/reference/en/Groonga/Record.html:915(em) -#: doc/reference/en/Groonga/Record.html:973(span) -#: doc/reference/en/Groonga/Record.html:974(span) -#: doc/reference/en/Groonga/Record.html:1027(span) -#: doc/reference/en/Groonga/Record.html:1028(span) -#: doc/reference/en/Groonga/Record.html:1032(span) -#: doc/reference/en/Groonga/Record.html:1433(em) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1455(span) -#: doc/reference/en/Groonga/Record.html:1596(em) -#: doc/reference/en/Groonga/Record.html:1630(span) -#: doc/reference/en/Groonga/Record.html:1631(span) -#: doc/reference/en/Groonga/Record.html:1647(em) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1669(span) -#: doc/reference/en/Groonga/Record.html:1685(em) -#: doc/reference/en/Groonga/Record.html:1719(span) -#: doc/reference/en/Groonga/Record.html:1720(span) -#: doc/reference/en/Groonga/Record.html:2083(em) -#: doc/reference/en/Groonga/Record.html:2116(span) -#: doc/reference/en/Groonga/Record.html:2117(span) -#: doc/reference/en/Groonga/Record.html:2133(em) -#: doc/reference/en/Groonga/Record.html:2167(span) -#: doc/reference/en/Groonga/Record.html:2168(span) -#: doc/reference/en/Groonga/Record.html:2277(em) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2631(em) -#: doc/reference/en/Groonga/Record.html:2665(span) -#: doc/reference/en/Groonga/Record.html:2666(span) -#: doc/reference/en/Groonga/View.html:194(em) -#: doc/reference/en/Groonga/View.html:527(em) -#: doc/reference/en/Groonga/Column.html:725(span) -#: doc/reference/en/Groonga/Column.html:1102(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:566(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:121(strong) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:420(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:440(strong) -#: doc/reference/en/Groonga/QueryLog/Command.html:466(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:617(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:655(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:752(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:753(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:755(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:765(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:815(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:816(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:818(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1162(span) -#: doc/reference/en/Groonga/Table.html:201(em) -#: doc/reference/en/Groonga/Table.html:223(em) -#: doc/reference/en/Groonga/Table.html:244(em) -#: doc/reference/en/Groonga/Table.html:245(em) -#: doc/reference/en/Groonga/Table.html:266(em) -#: doc/reference/en/Groonga/Table.html:288(em) -#: doc/reference/en/Groonga/Table.html:461(em) -#: doc/reference/en/Groonga/Table.html:727(em) -#: doc/reference/en/Groonga/Table.html:1144(em) -#: doc/reference/en/Groonga/Table.html:1237(em) -#: doc/reference/en/Groonga/Table.html:1303(em) -#: doc/reference/en/Groonga/Table.html:1304(em) -#: doc/reference/en/Groonga/Table.html:1388(em) -#: doc/reference/en/Groonga/Table.html:1497(em) -#: doc/reference/en/Groonga/Table.html:2142(em) -#: doc/reference/en/Groonga/Table.html:3024(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3364(em) -#: doc/reference/en/Groonga/Plugin.html:207(em) -#: doc/reference/en/Groonga/Table/KeySupport.html:194(em) -#: doc/reference/en/Groonga/Table/KeySupport.html:363(em) -#: doc/reference/en/Groonga/Table/KeySupport.html:686(em) -#: doc/reference/en/Groonga/Table/KeySupport.html:1133(em) -#: doc/reference/en/Grn/Table.html:174(em) -#: doc/reference/en/Grn/Table.html:196(em) -#: doc/reference/en/Grn/Table.html:217(em) -#: doc/reference/en/Grn/Table.html:218(em) -#: doc/reference/en/Grn/Table.html:239(em) -#: doc/reference/en/Grn/Table.html:261(em) -#: doc/reference/en/Grn/Table.html:434(em) -#: doc/reference/en/Grn/Table.html:678(em) -#: doc/reference/en/Grn/Table.html:1086(em) -#: doc/reference/en/Grn/Table.html:1179(em) -#: doc/reference/en/Grn/Table.html:1245(em) -#: doc/reference/en/Grn/Table.html:1246(em) -#: doc/reference/en/Grn/Table.html:1330(em) -#: doc/reference/en/Grn/Table.html:1439(em) -#: doc/reference/en/Grn/Table.html:2084(em) -#: doc/reference/en/Grn/Table.html:2808(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:3149(em) -msgid "name" +#: doc/reference/en/methods_list.html:1890(a) +#: doc/reference/en/method_list.html:3268(a) +msgid "#term_frequency" msgstr "" -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga.html:378(span) -#: doc/reference/en/Groonga.html:417(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:260(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:910(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:914(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:915(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1042(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1046(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1047(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1048(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1428(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1432(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1521(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1526(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1530(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1623(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1624(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1628(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:255(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:256(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Context.html:1308(span) -#: doc/reference/en/Groonga/Context.html:1311(span) -#: doc/reference/en/Groonga/Context.html:1340(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Context.html:1859(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1863(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/Context.html:1958(span) -#: doc/reference/en/Groonga/Schema.html:110(span) -#: doc/reference/en/Groonga/Schema.html:111(span) -#: doc/reference/en/Groonga/Schema.html:112(span) -#: doc/reference/en/Groonga/Schema.html:115(span) -#: doc/reference/en/Groonga/Schema.html:116(span) -#: doc/reference/en/Groonga/Schema.html:119(span) -#: doc/reference/en/Groonga/Schema.html:120(span) -#: doc/reference/en/Groonga/Schema.html:121(span) -#: doc/reference/en/Groonga/Schema.html:122(span) -#: doc/reference/en/Groonga/Schema.html:123(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/Schema.html:889(span) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:987(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1102(span) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1632(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1771(span) -#: doc/reference/en/Groonga/Schema.html:1853(span) -#: doc/reference/en/Groonga/Schema.html:1876(span) -#: doc/reference/en/Groonga/Schema.html:1877(span) -#: doc/reference/en/Groonga/Schema.html:1882(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Schema.html:1884(span) -#: doc/reference/en/Groonga/Schema.html:1890(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1978(span) -#: doc/reference/en/Groonga/Schema.html:1996(span) -#: doc/reference/en/Groonga/Schema.html:1997(span) -#: doc/reference/en/Groonga/Schema.html:2023(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2213(span) -#: doc/reference/en/Groonga/Schema.html:2214(span) -#: doc/reference/en/Groonga/Schema.html:2241(span) -#: doc/reference/en/Groonga/Schema.html:2261(span) -#: doc/reference/en/Groonga/Schema.html:2262(span) -#: doc/reference/en/Groonga/Schema.html:2288(span) -#: doc/reference/en/Groonga/Schema.html:2329(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3258(span) -#: doc/reference/en/Groonga/Schema.html:3259(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3302(span) -#: doc/reference/en/Groonga/Schema.html:3320(span) -#: doc/reference/en/Groonga/Schema.html:3321(span) -#: doc/reference/en/Groonga/Schema.html:3347(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3538(span) -#: doc/reference/en/Groonga/Schema.html:3539(span) -#: doc/reference/en/Groonga/Schema.html:3565(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Expression.html:1115(span) -#: doc/reference/en/Groonga/Expression.html:1117(span) -#: doc/reference/en/Groonga/Expression.html:1118(span) -#: doc/reference/en/Groonga/TableDumper.html:197(span) -#: doc/reference/en/Groonga/TableDumper.html:198(span) -#: doc/reference/en/Groonga/TableDumper.html:242(span) -#: doc/reference/en/Groonga/Hash.html:266(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:276(span) -#: doc/reference/en/Groonga/Hash.html:279(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:288(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:298(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Hash.html:301(span) -#: doc/reference/en/Groonga/Hash.html:475(span) -#: doc/reference/en/Groonga/Hash.html:476(span) -#: doc/reference/en/Groonga/Hash.html:478(span) -#: doc/reference/en/Groonga/Hash.html:479(span) -#: doc/reference/en/Groonga/Hash.html:480(span) -#: doc/reference/en/Groonga/Array.html:240(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:250(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/Array.html:420(span) -#: doc/reference/en/Groonga/Array.html:422(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:238(span) -#: doc/reference/en/Groonga/Pagination.html:697(span) -#: doc/reference/en/Groonga/Pagination.html:698(span) -#: doc/reference/en/Groonga/Pagination.html:1216(span) -#: doc/reference/en/Groonga/ViewRecord.html:305(span) -#: doc/reference/en/Groonga/ViewRecord.html:306(span) -#: doc/reference/en/Groonga/ViewRecord.html:307(span) -#: doc/reference/en/Groonga/ViewRecord.html:438(span) -#: doc/reference/en/Groonga/ViewRecord.html:439(span) -#: doc/reference/en/Groonga/ViewRecord.html:476(span) -#: doc/reference/en/Groonga/Database.html:1068(span) -#: doc/reference/en/Groonga/Database.html:1069(span) -#: doc/reference/en/Groonga/Database.html:1073(span) -#: doc/reference/en/Groonga/Database.html:1074(span) -#: doc/reference/en/Groonga/Database.html:1078(span) -#: doc/reference/en/Groonga/Database.html:1079(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:298(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:310(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:313(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:322(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:333(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:336(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/SchemaDumper.html:251(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/SchemaDumper.html:253(span) -#: doc/reference/en/Groonga/SchemaDumper.html:255(span) -#: doc/reference/en/Groonga/SchemaDumper.html:258(span) -#: doc/reference/en/Groonga/SchemaDumper.html:259(span) -#: doc/reference/en/Groonga/SchemaDumper.html:260(span) -#: doc/reference/en/Groonga/SchemaDumper.html:264(span) -#: doc/reference/en/Groonga/Record.html:973(span) -#: doc/reference/en/Groonga/Record.html:1028(span) -#: doc/reference/en/Groonga/Record.html:1032(span) -#: doc/reference/en/Groonga/Record.html:1035(span) -#: doc/reference/en/Groonga/Record.html:1038(span) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1136(span) -#: doc/reference/en/Groonga/Record.html:1137(span) -#: doc/reference/en/Groonga/Record.html:1174(span) -#: doc/reference/en/Groonga/Record.html:1212(span) -#: doc/reference/en/Groonga/Record.html:1300(span) -#: doc/reference/en/Groonga/Record.html:1341(span) -#: doc/reference/en/Groonga/Record.html:1342(span) -#: doc/reference/en/Groonga/Record.html:1380(span) -#: doc/reference/en/Groonga/Record.html:1417(span) -#: doc/reference/en/Groonga/Record.html:1455(span) -#: doc/reference/en/Groonga/Record.html:1492(span) -#: doc/reference/en/Groonga/Record.html:1580(span) -#: doc/reference/en/Groonga/Record.html:1631(span) -#: doc/reference/en/Groonga/Record.html:1669(span) -#: doc/reference/en/Groonga/Record.html:1720(span) -#: doc/reference/en/Groonga/Record.html:1764(span) -#: doc/reference/en/Groonga/Record.html:1850(span) -#: doc/reference/en/Groonga/Record.html:1901(span) -#: doc/reference/en/Groonga/Record.html:1979(span) -#: doc/reference/en/Groonga/Record.html:2117(span) -#: doc/reference/en/Groonga/Record.html:2168(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2351(span) -#: doc/reference/en/Groonga/Record.html:2402(span) -#: doc/reference/en/Groonga/Record.html:2453(span) -#: doc/reference/en/Groonga/Record.html:2491(span) -#: doc/reference/en/Groonga/Record.html:2541(span) -#: doc/reference/en/Groonga/Record.html:2578(span) -#: doc/reference/en/Groonga/Record.html:2615(span) -#: doc/reference/en/Groonga/Record.html:2666(span) -#: doc/reference/en/Groonga/View.html:308(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:253(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:254(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:255(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:256(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:258(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:271(span) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:725(span) -#: doc/reference/en/Groonga/Column.html:726(span) -#: doc/reference/en/Groonga/Column.html:1279(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1283(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:435(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:447(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:450(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:459(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:470(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:473(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1515(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1516(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1519(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1522(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1620(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1621(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1622(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1629(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1631(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1638(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1639(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1640(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:536(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Builder.html:538(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:564(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:566(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:612(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:613(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:614(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:616(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:653(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:414(span) -#: doc/reference/en/Groonga/Command/Select.html:250(span) -#: doc/reference/en/Groonga/Command/Select.html:252(span) -#: doc/reference/en/Groonga/Command/Select.html:255(span) -#: doc/reference/en/Groonga/Command/Select.html:256(span) -#: doc/reference/en/Groonga/Command/Select.html:258(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:238(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:245(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:246(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:654(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:655(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:656(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:752(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:753(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:755(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:756(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:768(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:811(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:814(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:815(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:816(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:818(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:916(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:973(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1162(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:315(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:316(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:317(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:318(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/Table.html:2908(span) -#: doc/reference/en/Groonga/Table.html:2910(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2916(span) -#: doc/reference/en/Groonga/Table.html:2918(span) -#: doc/reference/en/Groonga/Table.html:2924(span) -#: doc/reference/en/Groonga/Table.html:2925(span) -#: doc/reference/en/Groonga/Table.html:3124(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3128(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/Table.html:3173(span) -#: doc/reference/en/Groonga/Table.html:3174(span) -#: doc/reference/en/Groonga/Table.html:3175(span) -#: doc/reference/en/Groonga/Table.html:3176(span) -#: doc/reference/en/Groonga/Table.html:3177(span) -#: doc/reference/en/Groonga/Table.html:3178(span) -#: doc/reference/en/Groonga/Table.html:3180(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:257(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:262(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:263(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:280(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:281(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:282(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:284(span) -#: doc/reference/en/Groonga/TooSmallPage.html:238(span) -#: doc/reference/en/Groonga/TooLargePage.html:238(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:820(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:824(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:827(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:832(span) -#: doc/reference/en/Grn/Table.html:2908(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2912(span) -#: doc/reference/en/Grn/Table.html:2914(span) -#: doc/reference/en/Grn/Table.html:2957(span) -#: doc/reference/en/Grn/Table.html:2958(span) -#: doc/reference/en/Grn/Table.html:2959(span) -#: doc/reference/en/Grn/Table.html:2960(span) -#: doc/reference/en/Grn/Table.html:2961(span) -#: doc/reference/en/Grn/Table.html:2962(span) -#: doc/reference/en/Grn/Table.html:2963(span) -#: doc/reference/en/Grn/Table.html:2965(span) -msgid "." +#: doc/reference/en/methods_list.html:1898(a) +#: doc/reference/en/method_list.html:3276(a) +msgid "#term_id" msgstr "" -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/method_list.html:828(a) -#: doc/reference/en/method_list.html:836(a) -msgid "default" +#: doc/reference/en/methods_list.html:1906(a) +#: doc/reference/en/method_list.html:3284(a) +msgid "#text" msgstr "" -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:909(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1427(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1525(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1622(span) -#: doc/reference/en/Groonga/Context.html:1337(span) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/Schema.html:864(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:1977(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3301(span) -#: doc/reference/en/Groonga/Expression.html:1106(span) -#: doc/reference/en/Groonga/Expression.html:1107(span) -#: doc/reference/en/Groonga/Expression.html:1108(span) -#: doc/reference/en/Groonga/Expression.html:1116(span) -#: doc/reference/en/Groonga/TableDumper.html:196(span) -#: doc/reference/en/Groonga/Hash.html:474(span) -#: doc/reference/en/Groonga/Pagination.html:698(span) -#: doc/reference/en/Groonga/ViewRecord.html:307(span) -#: doc/reference/en/Groonga/ViewRecord.html:439(span) -#: doc/reference/en/Groonga/SchemaDumper.html:250(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/SchemaDumper.html:257(span) -#: doc/reference/en/Groonga/Record.html:974(span) -#: doc/reference/en/Groonga/Record.html:1137(span) -#: doc/reference/en/Groonga/Record.html:1941(span) -#: doc/reference/en/Groonga/Record.html:2206(span) -#: doc/reference/en/Groonga/Record.html:2261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:254(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:255(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:256(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:258(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:271(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1617(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1628(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1637(span) -#: doc/reference/en/Groonga/Command/Builder.html:473(span) -#: doc/reference/en/Groonga/Command/Builder.html:501(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:563(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select.html:254(span) -#: doc/reference/en/Groonga/Posting.html:1026(span) -#: doc/reference/en/Groonga/Posting.html:1027(span) -#: doc/reference/en/Groonga/Posting.html:1028(span) -#: doc/reference/en/Groonga/Posting.html:1029(span) -#: doc/reference/en/Groonga/Posting.html:1030(span) -#: doc/reference/en/Groonga/Posting.html:1031(span) -#: doc/reference/en/Groonga/Posting.html:1032(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:751(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:564(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:974(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:976(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:979(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:980(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:983(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:984(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:986(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1108(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:376(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:404(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:432(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:460(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:488(span) -#: doc/reference/en/Groonga/Table.html:2907(span) -#: doc/reference/en/Groonga/Table.html:2908(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2914(span) -#: doc/reference/en/Groonga/Table.html:3125(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3558(span) -#: doc/reference/en/Groonga/Table.html:3568(span) -#: doc/reference/en/Groonga/Table.html:3569(span) -#: doc/reference/en/Groonga/Table.html:3570(span) -#: doc/reference/en/Groonga/Table.html:3579(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:582(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:610(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:638(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:722(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:750(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:806(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:834(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:862(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:890(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:918(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:974(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1030(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1058(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:271(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:348(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:349(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:350(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:351(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:352(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:353(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:354(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Grn/Table.html:2909(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:2914(span) -msgid "[" +#: doc/reference/en/methods_list.html:1914(a) +#: doc/reference/en/method_list.html:3292(a) +msgid "#time" msgstr "" -#: doc/reference/en/Groonga.html:339(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:909(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1427(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1525(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1622(span) -#: doc/reference/en/Groonga/Context.html:1337(span) -#: doc/reference/en/Groonga/Context.html:1763(p) -#: doc/reference/en/Groonga/Context.html:1780(p) -#: doc/reference/en/Groonga/Schema.html:863(span) -#: doc/reference/en/Groonga/Schema.html:864(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:1977(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3301(span) -#: doc/reference/en/Groonga/Expression.html:1107(span) -#: doc/reference/en/Groonga/Expression.html:1108(span) -#: doc/reference/en/Groonga/Expression.html:1110(span) -#: doc/reference/en/Groonga/Expression.html:1116(span) -#: doc/reference/en/Groonga/TableDumper.html:196(span) -#: doc/reference/en/Groonga/Hash.html:474(span) -#: doc/reference/en/Groonga/Pagination.html:698(span) -#: doc/reference/en/Groonga/ViewRecord.html:307(span) -#: doc/reference/en/Groonga/ViewRecord.html:439(span) -#: doc/reference/en/Groonga/SchemaDumper.html:250(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/SchemaDumper.html:257(span) -#: doc/reference/en/Groonga/Record.html:974(span) -#: doc/reference/en/Groonga/Record.html:1137(span) -#: doc/reference/en/Groonga/Record.html:1941(span) -#: doc/reference/en/Groonga/Record.html:2206(span) -#: doc/reference/en/Groonga/Record.html:2261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:254(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:255(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:256(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:258(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:271(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1617(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1628(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1637(span) -#: doc/reference/en/Groonga/Command/Builder.html:473(span) -#: doc/reference/en/Groonga/Command/Builder.html:501(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:563(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select.html:254(span) -#: doc/reference/en/Groonga/Posting.html:1026(span) -#: doc/reference/en/Groonga/Posting.html:1027(span) -#: doc/reference/en/Groonga/Posting.html:1028(span) -#: doc/reference/en/Groonga/Posting.html:1029(span) -#: doc/reference/en/Groonga/Posting.html:1030(span) -#: doc/reference/en/Groonga/Posting.html:1031(span) -#: doc/reference/en/Groonga/Posting.html:1032(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:751(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:564(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:974(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:976(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:979(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:980(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:983(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:984(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:986(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1108(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:376(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:404(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:432(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:460(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:488(span) -#: doc/reference/en/Groonga/Table.html:2907(span) -#: doc/reference/en/Groonga/Table.html:2908(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2914(span) -#: doc/reference/en/Groonga/Table.html:3125(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3562(span) -#: doc/reference/en/Groonga/Table.html:3569(span) -#: doc/reference/en/Groonga/Table.html:3570(span) -#: doc/reference/en/Groonga/Table.html:3572(span) -#: doc/reference/en/Groonga/Table.html:3579(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:582(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:610(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:638(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:722(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:750(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:806(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:834(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:862(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:890(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:918(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:974(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1030(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1058(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:271(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:348(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:349(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:350(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:351(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:352(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:353(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:354(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Grn/Table.html:2909(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:2914(span) -msgid "]" +#: doc/reference/en/methods_list.html:1922(a) +#: doc/reference/en/method_list.html:3300(a) +msgid "#timestamps" msgstr "" -#: doc/reference/en/Groonga.html:340(span) -#: doc/reference/en/Groonga.html:379(span) -#: doc/reference/en/Groonga.html:418(span) -#: doc/reference/en/Groonga.html:478(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:215(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:263(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:719(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:769(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:913(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:917(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:957(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1045(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1050(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1132(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1175(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1218(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1300(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1340(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1384(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1431(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1434(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1524(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1529(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1532(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1627(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1630(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1674(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1714(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1754(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1795(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1874(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1999(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2042(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2124(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2207(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:298(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:338(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:256(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:301(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:341(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:285(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:330(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:370(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:410(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:257(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:302(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:342(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:227(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:272(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:227(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:272(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:227(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:272(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:300(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:340(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:256(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:301(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:341(span) -#: doc/reference/en/Groonga/Context.html:1338(span) -#: doc/reference/en/Groonga/Context.html:1341(span) -#: doc/reference/en/Groonga/Context.html:1740(span) -#: doc/reference/en/Groonga/Context.html:1864(span) -#: doc/reference/en/Groonga/Context.html:1865(span) -#: doc/reference/en/Groonga/Context.html:1959(span) -#: doc/reference/en/Groonga/Schema.html:113(span) -#: doc/reference/en/Groonga/Schema.html:117(span) -#: doc/reference/en/Groonga/Schema.html:124(span) -#: doc/reference/en/Groonga/Schema.html:125(span) -#: doc/reference/en/Groonga/Schema.html:865(span) -#: doc/reference/en/Groonga/Schema.html:892(span) -#: doc/reference/en/Groonga/Schema.html:893(span) -#: doc/reference/en/Groonga/Schema.html:969(span) -#: doc/reference/en/Groonga/Schema.html:970(span) -#: doc/reference/en/Groonga/Schema.html:990(span) -#: doc/reference/en/Groonga/Schema.html:991(span) -#: doc/reference/en/Groonga/Schema.html:1067(span) -#: doc/reference/en/Groonga/Schema.html:1068(span) -#: doc/reference/en/Groonga/Schema.html:1105(span) -#: doc/reference/en/Groonga/Schema.html:1106(span) -#: doc/reference/en/Groonga/Schema.html:1614(span) -#: doc/reference/en/Groonga/Schema.html:1615(span) -#: doc/reference/en/Groonga/Schema.html:1635(span) -#: doc/reference/en/Groonga/Schema.html:1636(span) -#: doc/reference/en/Groonga/Schema.html:1749(span) -#: doc/reference/en/Groonga/Schema.html:1750(span) -#: doc/reference/en/Groonga/Schema.html:1854(span) -#: doc/reference/en/Groonga/Schema.html:1878(span) -#: doc/reference/en/Groonga/Schema.html:1892(span) -#: doc/reference/en/Groonga/Schema.html:1979(span) -#: doc/reference/en/Groonga/Schema.html:1998(span) -#: doc/reference/en/Groonga/Schema.html:2024(span) -#: doc/reference/en/Groonga/Schema.html:2025(span) -#: doc/reference/en/Groonga/Schema.html:2109(span) -#: doc/reference/en/Groonga/Schema.html:2110(span) -#: doc/reference/en/Groonga/Schema.html:2195(span) -#: doc/reference/en/Groonga/Schema.html:2196(span) -#: doc/reference/en/Groonga/Schema.html:2216(span) -#: doc/reference/en/Groonga/Schema.html:2242(span) -#: doc/reference/en/Groonga/Schema.html:2243(span) -#: doc/reference/en/Groonga/Schema.html:2263(span) -#: doc/reference/en/Groonga/Schema.html:2289(span) -#: doc/reference/en/Groonga/Schema.html:2290(span) -#: doc/reference/en/Groonga/Schema.html:2330(span) -#: doc/reference/en/Groonga/Schema.html:2331(span) -#: doc/reference/en/Groonga/Schema.html:2440(span) -#: doc/reference/en/Groonga/Schema.html:2543(span) -#: doc/reference/en/Groonga/Schema.html:3081(span) -#: doc/reference/en/Groonga/Schema.html:3220(span) -#: doc/reference/en/Groonga/Schema.html:3260(span) -#: doc/reference/en/Groonga/Schema.html:3261(span) -#: doc/reference/en/Groonga/Schema.html:3303(span) -#: doc/reference/en/Groonga/Schema.html:3322(span) -#: doc/reference/en/Groonga/Schema.html:3348(span) -#: doc/reference/en/Groonga/Schema.html:3349(span) -#: doc/reference/en/Groonga/Schema.html:3435(span) -#: doc/reference/en/Groonga/Schema.html:3521(span) -#: doc/reference/en/Groonga/Schema.html:3540(span) -#: doc/reference/en/Groonga/Schema.html:3566(span) -#: doc/reference/en/Groonga/Schema.html:3567(span) -#: doc/reference/en/Groonga/Schema.html:3656(span) -#: doc/reference/en/Groonga/Schema.html:3699(span) -#: doc/reference/en/Groonga/TableDumper.html:199(span) -#: doc/reference/en/Groonga/TableDumper.html:243(span) -#: doc/reference/en/Groonga/TableDumper.html:244(span) -#: doc/reference/en/Groonga/Hash.html:477(span) -#: doc/reference/en/Groonga/Hash.html:481(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:239(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:284(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:324(span) -#: doc/reference/en/Groonga/Pagination.html:529(span) -#: doc/reference/en/Groonga/Pagination.html:569(span) -#: doc/reference/en/Groonga/Pagination.html:609(span) -#: doc/reference/en/Groonga/Pagination.html:649(span) -#: doc/reference/en/Groonga/Pagination.html:699(span) -#: doc/reference/en/Groonga/Pagination.html:736(span) -#: doc/reference/en/Groonga/Pagination.html:786(span) -#: doc/reference/en/Groonga/Pagination.html:836(span) -#: doc/reference/en/Groonga/Pagination.html:886(span) -#: doc/reference/en/Groonga/Pagination.html:936(span) -#: doc/reference/en/Groonga/Pagination.html:973(span) -#: doc/reference/en/Groonga/Pagination.html:1023(span) -#: doc/reference/en/Groonga/Pagination.html:1060(span) -#: doc/reference/en/Groonga/Pagination.html:1098(span) -#: doc/reference/en/Groonga/Pagination.html:1137(span) -#: doc/reference/en/Groonga/Pagination.html:1175(span) -#: doc/reference/en/Groonga/Pagination.html:1218(span) -#: doc/reference/en/Groonga/ViewRecord.html:268(span) -#: doc/reference/en/Groonga/ViewRecord.html:308(span) -#: doc/reference/en/Groonga/ViewRecord.html:353(span) -#: doc/reference/en/Groonga/ViewRecord.html:393(span) -#: doc/reference/en/Groonga/ViewRecord.html:440(span) -#: doc/reference/en/Groonga/ViewRecord.html:477(span) -#: doc/reference/en/Groonga/Database.html:1070(span) -#: doc/reference/en/Groonga/Database.html:1075(span) -#: doc/reference/en/Groonga/Database.html:1080(span) -#: doc/reference/en/Groonga/SchemaDumper.html:201(span) -#: doc/reference/en/Groonga/SchemaDumper.html:254(span) -#: doc/reference/en/Groonga/SchemaDumper.html:265(span) -#: doc/reference/en/Groonga/SchemaDumper.html:266(span) -#: doc/reference/en/Groonga/Record.html:975(span) -#: doc/reference/en/Groonga/Record.html:976(span) -#: doc/reference/en/Groonga/Record.html:977(span) -#: doc/reference/en/Groonga/Record.html:1034(span) -#: doc/reference/en/Groonga/Record.html:1041(span) -#: doc/reference/en/Groonga/Record.html:1044(span) -#: doc/reference/en/Groonga/Record.html:1045(span) -#: doc/reference/en/Groonga/Record.html:1090(span) -#: doc/reference/en/Groonga/Record.html:1138(span) -#: doc/reference/en/Groonga/Record.html:1175(span) -#: doc/reference/en/Groonga/Record.html:1213(span) -#: doc/reference/en/Groonga/Record.html:1263(span) -#: doc/reference/en/Groonga/Record.html:1301(span) -#: doc/reference/en/Groonga/Record.html:1343(span) -#: doc/reference/en/Groonga/Record.html:1381(span) -#: doc/reference/en/Groonga/Record.html:1418(span) -#: doc/reference/en/Groonga/Record.html:1456(span) -#: doc/reference/en/Groonga/Record.html:1493(span) -#: doc/reference/en/Groonga/Record.html:1543(span) -#: doc/reference/en/Groonga/Record.html:1581(span) -#: doc/reference/en/Groonga/Record.html:1632(span) -#: doc/reference/en/Groonga/Record.html:1670(span) -#: doc/reference/en/Groonga/Record.html:1721(span) -#: doc/reference/en/Groonga/Record.html:1767(span) -#: doc/reference/en/Groonga/Record.html:1768(span) -#: doc/reference/en/Groonga/Record.html:1851(span) -#: doc/reference/en/Groonga/Record.html:1902(span) -#: doc/reference/en/Groonga/Record.html:1942(span) -#: doc/reference/en/Groonga/Record.html:1980(span) -#: doc/reference/en/Groonga/Record.html:2026(span) -#: doc/reference/en/Groonga/Record.html:2027(span) -#: doc/reference/en/Groonga/Record.html:2068(span) -#: doc/reference/en/Groonga/Record.html:2118(span) -#: doc/reference/en/Groonga/Record.html:2169(span) -#: doc/reference/en/Groonga/Record.html:2207(span) -#: doc/reference/en/Groonga/Record.html:2262(span) -#: doc/reference/en/Groonga/Record.html:2301(span) -#: doc/reference/en/Groonga/Record.html:2352(span) -#: doc/reference/en/Groonga/Record.html:2403(span) -#: doc/reference/en/Groonga/Record.html:2454(span) -#: doc/reference/en/Groonga/Record.html:2492(span) -#: doc/reference/en/Groonga/Record.html:2542(span) -#: doc/reference/en/Groonga/Record.html:2579(span) -#: doc/reference/en/Groonga/Record.html:2616(span) -#: doc/reference/en/Groonga/Record.html:2667(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:200(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:259(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:272(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:273(span) -#: doc/reference/en/Groonga/Column.html:1281(span) -#: doc/reference/en/Groonga/Column.html:1289(span) -#: doc/reference/en/Groonga/Column.html:1290(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1521(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1524(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1626(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1632(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1636(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1642(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1644(span) -#: doc/reference/en/Groonga/Command/Builder.html:318(span) -#: doc/reference/en/Groonga/Command/Builder.html:363(span) -#: doc/reference/en/Groonga/Command/Builder.html:403(span) -#: doc/reference/en/Groonga/Command/Builder.html:440(span) -#: doc/reference/en/Groonga/Command/Builder.html:474(span) -#: doc/reference/en/Groonga/Command/Builder.html:502(span) -#: doc/reference/en/Groonga/Command/Builder.html:540(span) -#: doc/reference/en/Groonga/Command/Builder.html:542(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:353(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:409(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:465(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:521(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:568(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:570(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:572(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:618(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:620(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:654(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:268(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:324(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:380(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:415(span) -#: doc/reference/en/Groonga/Command/Select.html:205(span) -#: doc/reference/en/Groonga/Command/Select.html:257(span) -#: doc/reference/en/Groonga/Command/Select.html:259(span) -#: doc/reference/en/Groonga/Command/Select.html:261(span) -#: doc/reference/en/Groonga/Command/Select.html:262(span) -#: doc/reference/en/Groonga/Posting.html:422(span) -#: doc/reference/en/Groonga/Posting.html:481(span) -#: doc/reference/en/Groonga/Posting.html:535(span) -#: doc/reference/en/Groonga/Posting.html:589(span) -#: doc/reference/en/Groonga/Posting.html:643(span) -#: doc/reference/en/Groonga/Posting.html:697(span) -#: doc/reference/en/Groonga/Posting.html:751(span) -#: doc/reference/en/Groonga/Posting.html:805(span) -#: doc/reference/en/Groonga/Posting.html:879(span) -#: doc/reference/en/Groonga/Posting.html:1033(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:189(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:250(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:251(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:252(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:423(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:468(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:508(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:548(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:590(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:591(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:619(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:657(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:707(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:754(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:763(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:764(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:767(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:769(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:817(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:820(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:823(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:825(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:875(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:569(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:614(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:654(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:694(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:734(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:774(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:814(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:854(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:889(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:917(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:990(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:991(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1019(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1049(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1077(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1111(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1113(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1163(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1213(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1243(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:320(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:321(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:349(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:377(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:405(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:433(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:461(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:489(span) -#: doc/reference/en/Groonga/Table.html:2911(span) -#: doc/reference/en/Groonga/Table.html:2919(span) -#: doc/reference/en/Groonga/Table.html:2927(span) -#: doc/reference/en/Groonga/Table.html:3126(span) -#: doc/reference/en/Groonga/Table.html:3134(span) -#: doc/reference/en/Groonga/Table.html:3135(span) -#: doc/reference/en/Groonga/Table.html:3179(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:548(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:583(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:611(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:639(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:667(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:695(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:723(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:751(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:779(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:807(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:835(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:863(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:891(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:919(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:947(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:975(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1003(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1031(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1059(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:189(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:267(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:283(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:285(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:286(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:287(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:288(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:199(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:244(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:355(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:400(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:440(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:480(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:520(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:560(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:600(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:640(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:316(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:372(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:428(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:484(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:540(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:575(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:199(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:244(span) -#: doc/reference/en/Groonga/TooSmallPage.html:239(span) -#: doc/reference/en/Groonga/TooSmallPage.html:284(span) -#: doc/reference/en/Groonga/TooSmallPage.html:324(span) -#: doc/reference/en/Groonga/TooLargePage.html:239(span) -#: doc/reference/en/Groonga/TooLargePage.html:284(span) -#: doc/reference/en/Groonga/TooLargePage.html:324(span) -#: doc/reference/en/Grn/Table.html:2910(span) -#: doc/reference/en/Grn/Table.html:2918(span) -#: doc/reference/en/Grn/Table.html:2919(span) -#: doc/reference/en/Grn/Table.html:2964(span) -msgid "end" +#: doc/reference/en/methods_list.html:1930(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:3308(a) +msgid "#to_command_format" msgstr "" -#: doc/reference/en/Groonga.html:347(p) doc/reference/en/Groonga.html:386(p) -#: doc/reference/en/Groonga/Logger.html:569(p) -#: doc/reference/en/Groonga/Context.html:762(p) -#: doc/reference/en/Groonga/Encoding.html:293(p) -#: doc/reference/en/Groonga/Plugin.html:265(p) -#: doc/reference/en/Groonga/Plugin.html:306(p) -msgid "" -"+ () " -"" +#: doc/reference/en/methods_list.html:1938(a) +#: doc/reference/en/method_list.html:3316(a) +msgid "#to_hash" msgstr "" -#: doc/reference/en/Groonga.html:355(p) -msgid "" -"BINDINGS_VERSION?\".????????????? ??????" -"??" +#: doc/reference/en/methods_list.html:1946(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:3324(a) +msgid "#to_uri_format" msgstr "" -#: doc/reference/en/Groonga.html:367(pre) -msgid "76 77 78" +#: doc/reference/en/methods_list.html:1954(a) +#: doc/reference/en/method_list.html:3332(a) +msgid "#tokyo_geo_point" msgstr "" -#: doc/reference/en/Groonga.html:375(span) -msgid "# File 'lib/groonga.rb', line 76" +#: doc/reference/en/methods_list.html:1962(a) +#: doc/reference/en/method_list.html:3340(a) +msgid "#total_memory" msgstr "" -#: doc/reference/en/Groonga.html:378(span) -msgid "BINDINGS_VERSION" +#: doc/reference/en/methods_list.html:1970(a) +#: doc/reference/en/method_list.html:3356(a) +msgid "#tried_table_names" msgstr "" -#: doc/reference/en/Groonga.html:378(span) -#: doc/reference/en/Groonga.html:417(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:768(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -msgid "join" +#: doc/reference/en/methods_list.html:1978(a) +#: doc/reference/en/method_list.html:3372(a) +msgid "#type" msgstr "" -#: doc/reference/en/Groonga.html:378(span) -#: doc/reference/en/Groonga.html:417(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:254(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:254(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:255(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:256(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Context.html:1311(span) -#: doc/reference/en/Groonga/Schema.html:111(span) -#: doc/reference/en/Groonga/Schema.html:112(span) -#: doc/reference/en/Groonga/Schema.html:115(span) -#: doc/reference/en/Groonga/Schema.html:116(span) -#: doc/reference/en/Groonga/Schema.html:119(span) -#: doc/reference/en/Groonga/Schema.html:120(span) -#: doc/reference/en/Groonga/Schema.html:121(span) -#: doc/reference/en/Groonga/Schema.html:122(span) -#: doc/reference/en/Groonga/Schema.html:123(span) -#: doc/reference/en/Groonga/Schema.html:149(span) -#: doc/reference/en/Groonga/Schema.html:150(span) -#: doc/reference/en/Groonga/Schema.html:151(span) -#: doc/reference/en/Groonga/Schema.html:152(span) -#: doc/reference/en/Groonga/Schema.html:153(span) -#: doc/reference/en/Groonga/Schema.html:154(span) -#: doc/reference/en/Groonga/Schema.html:155(span) -#: doc/reference/en/Groonga/Schema.html:156(span) -#: doc/reference/en/Groonga/Schema.html:157(span) -#: doc/reference/en/Groonga/Schema.html:158(span) -#: doc/reference/en/Groonga/Schema.html:159(span) -#: doc/reference/en/Groonga/Schema.html:160(span) -#: doc/reference/en/Groonga/Schema.html:161(span) -#: doc/reference/en/Groonga/Schema.html:162(span) -#: doc/reference/en/Groonga/Schema.html:163(span) -#: doc/reference/en/Groonga/Schema.html:164(span) -#: doc/reference/en/Groonga/Schema.html:165(span) -#: doc/reference/en/Groonga/Schema.html:166(span) -#: doc/reference/en/Groonga/Schema.html:167(span) -#: doc/reference/en/Groonga/Schema.html:168(span) -#: doc/reference/en/Groonga/Schema.html:169(span) -#: doc/reference/en/Groonga/Schema.html:170(span) -#: doc/reference/en/Groonga/Schema.html:171(span) -#: doc/reference/en/Groonga/Schema.html:172(span) -#: doc/reference/en/Groonga/Schema.html:173(span) -#: doc/reference/en/Groonga/Schema.html:174(span) -#: doc/reference/en/Groonga/Schema.html:175(span) -#: doc/reference/en/Groonga/Schema.html:176(span) -#: doc/reference/en/Groonga/Schema.html:177(span) -#: doc/reference/en/Groonga/Schema.html:178(span) -#: doc/reference/en/Groonga/Schema.html:179(span) -#: doc/reference/en/Groonga/Schema.html:180(span) -#: doc/reference/en/Groonga/Schema.html:181(span) -#: doc/reference/en/Groonga/Schema.html:182(span) -#: doc/reference/en/Groonga/Schema.html:183(span) -#: doc/reference/en/Groonga/Schema.html:184(span) -#: doc/reference/en/Groonga/Schema.html:185(span) -#: doc/reference/en/Groonga/Schema.html:186(span) -#: doc/reference/en/Groonga/Schema.html:187(span) -#: doc/reference/en/Groonga/Schema.html:188(span) -#: doc/reference/en/Groonga/Schema.html:189(span) -#: doc/reference/en/Groonga/Schema.html:190(span) -#: doc/reference/en/Groonga/Schema.html:191(span) -#: doc/reference/en/Groonga/Schema.html:192(span) -#: doc/reference/en/Groonga/Schema.html:193(span) -#: doc/reference/en/Groonga/Schema.html:194(span) -#: doc/reference/en/Groonga/Schema.html:195(span) -#: doc/reference/en/Groonga/Schema.html:196(span) -#: doc/reference/en/Groonga/Schema.html:197(span) -#: doc/reference/en/Groonga/Schema.html:198(span) -#: doc/reference/en/Groonga/Schema.html:199(span) -#: doc/reference/en/Groonga/Schema.html:200(span) -#: doc/reference/en/Groonga/Schema.html:201(span) -#: doc/reference/en/Groonga/Schema.html:202(span) -#: doc/reference/en/Groonga/Schema.html:203(span) -#: doc/reference/en/Groonga/Schema.html:204(span) -#: doc/reference/en/Groonga/Schema.html:205(span) -#: doc/reference/en/Groonga/Schema.html:206(span) -#: doc/reference/en/Groonga/Schema.html:207(span) -#: doc/reference/en/Groonga/Schema.html:208(span) -#: doc/reference/en/Groonga/Schema.html:209(span) -#: doc/reference/en/Groonga/Schema.html:210(span) -#: doc/reference/en/Groonga/Schema.html:211(span) -#: doc/reference/en/Groonga/Schema.html:212(span) -#: doc/reference/en/Groonga/Schema.html:213(span) -#: doc/reference/en/Groonga/Schema.html:214(span) -#: doc/reference/en/Groonga/Schema.html:1876(span) -#: doc/reference/en/Groonga/Schema.html:1883(span) -#: doc/reference/en/Groonga/Schema.html:1890(span) -#: doc/reference/en/Groonga/Expression.html:1107(span) -#: doc/reference/en/Groonga/Expression.html:1108(span) -#: doc/reference/en/Groonga/Expression.html:1115(span) -#: doc/reference/en/Groonga/Expression.html:1116(span) -#: doc/reference/en/Groonga/Expression.html:1118(span) -#: doc/reference/en/Groonga/Hash.html:269(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:283(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:292(span) -#: doc/reference/en/Groonga/Hash.html:293(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:298(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Hash.html:300(span) -#: doc/reference/en/Groonga/Hash.html:301(span) -#: doc/reference/en/Groonga/Hash.html:302(span) -#: doc/reference/en/Groonga/Hash.html:474(span) -#: doc/reference/en/Groonga/Array.html:243(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/Array.html:420(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/Array.html:429(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:237(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:238(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:301(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:317(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:327(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:328(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:333(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:335(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:336(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:337(span) -#: doc/reference/en/Groonga/Record.html:1038(span) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1941(span) -#: doc/reference/en/Groonga/Record.html:2206(span) -#: doc/reference/en/Groonga/Record.html:2261(span) -#: doc/reference/en/Groonga/Record.html:2402(span) -#: doc/reference/en/Groonga/View.html:312(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:1280(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Column.html:1285(span) -#: doc/reference/en/Groonga/Column.html:1286(span) -#: doc/reference/en/Groonga/Column.html:1287(span) -#: doc/reference/en/Groonga/Column.html:1288(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:438(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:454(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:464(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:465(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:470(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:472(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:473(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:474(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1622(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:439(span) -#: doc/reference/en/Groonga/Command/Builder.html:535(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Builder.html:539(span) -#: doc/reference/en/Groonga/Command/Select.html:254(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:759(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:760(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:762(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:765(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:766(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:768(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:810(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:821(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1162(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:348(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:376(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:404(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:432(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:460(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:488(span) -#: doc/reference/en/Groonga/Table.html:3125(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3130(span) -#: doc/reference/en/Groonga/Table.html:3131(span) -#: doc/reference/en/Groonga/Table.html:3132(span) -#: doc/reference/en/Groonga/Table.html:3133(span) -#: doc/reference/en/Groonga/Table.html:3162(span) -#: doc/reference/en/Groonga/Table.html:3163(span) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/Table.html:3173(span) -#: doc/reference/en/Groonga/Table.html:3174(span) -#: doc/reference/en/Groonga/Table.html:3175(span) -#: doc/reference/en/Groonga/Table.html:3176(span) -#: doc/reference/en/Groonga/Table.html:3178(span) -#: doc/reference/en/Groonga/Table.html:3559(span) -#: doc/reference/en/Groonga/Table.html:3560(span) -#: doc/reference/en/Groonga/Table.html:3569(span) -#: doc/reference/en/Groonga/Table.html:3570(span) -#: doc/reference/en/Groonga/Table.html:3579(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:582(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:610(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:638(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:666(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:722(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:750(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:806(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:834(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:862(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:890(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:918(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:974(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1030(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1058(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:256(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:260(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:261(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:348(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:349(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:350(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:351(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:352(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:353(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:354(span) -#: doc/reference/en/Groonga/TooSmallPage.html:237(span) -#: doc/reference/en/Groonga/TooSmallPage.html:238(span) -#: doc/reference/en/Groonga/TooLargePage.html:237(span) -#: doc/reference/en/Groonga/TooLargePage.html:238(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:820(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:827(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:828(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:832(span) -#: doc/reference/en/Grn/Table.html:2909(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:2914(span) -#: doc/reference/en/Grn/Table.html:2915(span) -#: doc/reference/en/Grn/Table.html:2916(span) -#: doc/reference/en/Grn/Table.html:2917(span) -#: doc/reference/en/Grn/Table.html:2947(span) -#: doc/reference/en/Grn/Table.html:2948(span) -#: doc/reference/en/Grn/Table.html:2957(span) -#: doc/reference/en/Grn/Table.html:2958(span) -#: doc/reference/en/Grn/Table.html:2959(span) -#: doc/reference/en/Grn/Table.html:2960(span) -#: doc/reference/en/Grn/Table.html:2961(span) -#: doc/reference/en/Grn/Table.html:2963(span) -msgid "\"" +#: doc/reference/en/methods_list.html:1986(a) +#: doc/reference/en/method_list.html:3380(a) +msgid "#unevictable" msgstr "" -#: doc/reference/en/Groonga.html:394(p) -msgid "" -"BUILD_VERSION?\".???????????? ?????????" +#: doc/reference/en/methods_list.html:1994(a) +#: doc/reference/en/method_list.html:3388(a) +msgid "#unevictable_memory" msgstr "" -#: doc/reference/en/Groonga.html:406(pre) -msgid "57 58 59" +#: doc/reference/en/methods_list.html:2002(a) +#: doc/reference/en/method_list.html:3404(a) +msgid "#unknown_keys" msgstr "" -#: doc/reference/en/Groonga.html:414(span) -msgid "# File 'lib/groonga.rb', line 57" +#: doc/reference/en/methods_list.html:2010(a) +#: doc/reference/en/method_list.html:3420(a) +#: doc/reference/en/method_list.html:3428(a) +#: doc/reference/en/method_list.html:3436(a) +#: doc/reference/en/method_list.html:3444(a) +msgid "#unlock" msgstr "" -#: doc/reference/en/Groonga.html:417(span) -msgid "BUILD_VERSION" +#: doc/reference/en/methods_list.html:2018(a) +#: doc/reference/en/method_list.html:3452(a) +msgid "#unsigned_integer16" msgstr "" -#: doc/reference/en/Groonga.html:427(tt) doc/reference/en/Groonga.html:445(tt) -#: doc/reference/en/Groonga/Context.html:1522(tt) -#: doc/reference/en/Groonga/Context.html:1548(tt) -#: doc/reference/en/Groonga/Context.html:1749(tt) -#: doc/reference/en/Groonga/Context.html:1775(tt) -#: doc/reference/en/Groonga/Context.html:1859(span) -#: doc/reference/en/Groonga/Expression.html:920(tt) -#: doc/reference/en/Groonga/Expression.html:946(tt) -#: doc/reference/en/Groonga/Column.html:1105(tt) -#: doc/reference/en/Groonga/Command/Select.html:255(span) -#: doc/reference/en/Groonga/Table.html:2190(tt) -#: doc/reference/en/Groonga/Table.html:2216(tt) -#: doc/reference/en/Groonga/Table.html:3027(tt) -#: doc/reference/en/Grn/Table.html:2132(tt) -#: doc/reference/en/Grn/Table.html:2158(tt) -#: doc/reference/en/Grn/Table.html:2811(tt) -msgid "String" +#: doc/reference/en/methods_list.html:2026(a) +#: doc/reference/en/method_list.html:3460(a) +msgid "#unsigned_integer32" msgstr "" -#: doc/reference/en/Groonga.html:425(p) -msgid "+ () " +#: doc/reference/en/methods_list.html:2034(a) +#: doc/reference/en/method_list.html:3468(a) +msgid "#unsigned_integer64" msgstr "" -#: doc/reference/en/Groonga.html:439(h3) -#: doc/reference/en/Groonga/Context.html:788(h3) -#: doc/reference/en/Groonga/Context.html:898(h3) -#: doc/reference/en/Groonga/Context.html:1021(h3) -#: doc/reference/en/Groonga/Context.html:1049(h3) -#: doc/reference/en/Groonga/Context.html:1370(h3) -#: doc/reference/en/Groonga/Context.html:1434(h3) -#: doc/reference/en/Groonga/Context.html:1542(h3) -#: doc/reference/en/Groonga/Context.html:1618(h3) -#: doc/reference/en/Groonga/Context.html:1769(h3) -#: doc/reference/en/Groonga/Expression.html:495(h3) -#: doc/reference/en/Groonga/Expression.html:598(h3) -#: doc/reference/en/Groonga/Expression.html:789(h3) -#: doc/reference/en/Groonga/Expression.html:940(h3) -#: doc/reference/en/Groonga/Expression.html:1136(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:229(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:257(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:296(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:397(h3) -#: doc/reference/en/Groonga/Hash.html:320(h3) -#: doc/reference/en/Groonga/Hash.html:493(h3) -#: doc/reference/en/Groonga/Array.html:268(h3) -#: doc/reference/en/Groonga/Array.html:441(h3) -#: doc/reference/en/Groonga/TableCursor.html:483(h3) -#: doc/reference/en/Groonga/Pagination.html:757(h3) -#: doc/reference/en/Groonga/Pagination.html:807(h3) -#: doc/reference/en/Groonga/Pagination.html:857(h3) -#: doc/reference/en/Groonga/Pagination.html:907(h3) -#: doc/reference/en/Groonga/Pagination.html:994(h3) -#: doc/reference/en/Groonga/Database.html:441(h3) -#: doc/reference/en/Groonga/Database.html:600(h3) -#: doc/reference/en/Groonga/Database.html:735(h3) -#: doc/reference/en/Groonga/Database.html:967(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:355(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:521(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:666(h3) -#: doc/reference/en/Groonga/Object.html:790(h3) -#: doc/reference/en/Groonga/Object.html:943(h3) -#: doc/reference/en/Groonga/Object.html:1375(h3) -#: doc/reference/en/Groonga/Record.html:1234(h3) -#: doc/reference/en/Groonga/Record.html:1514(h3) -#: doc/reference/en/Groonga/Record.html:1603(h3) -#: doc/reference/en/Groonga/Record.html:1692(h3) -#: doc/reference/en/Groonga/Record.html:1873(h3) -#: doc/reference/en/Groonga/Record.html:2089(h3) -#: doc/reference/en/Groonga/Record.html:2140(h3) -#: doc/reference/en/Groonga/Record.html:2323(h3) -#: doc/reference/en/Groonga/Record.html:2374(h3) -#: doc/reference/en/Groonga/Record.html:2425(h3) -#: doc/reference/en/Groonga/Record.html:2513(h3) -#: doc/reference/en/Groonga/Record.html:2638(h3) -#: doc/reference/en/Groonga/View.html:343(h3) -#: doc/reference/en/Groonga/Column.html:628(h3) -#: doc/reference/en/Groonga/Column.html:1361(h3) -#: doc/reference/en/Groonga/Column.html:1389(h3) -#: doc/reference/en/Groonga/Column.html:1417(h3) -#: doc/reference/en/Groonga/Column.html:1522(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:492(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:658(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:798(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:941(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:1070(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:1244(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:1399(h3) -#: doc/reference/en/Groonga/Command/Select/Result.html:321(h3) -#: doc/reference/en/Groonga/Command/Select/Result.html:377(h3) -#: doc/reference/en/Groonga/Command/Select/Result.html:433(h3) -#: doc/reference/en/Groonga/Command/Select/Result.html:489(h3) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:236(h3) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:292(h3) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:348(h3) -#: doc/reference/en/Groonga/QueryLog/Command.html:678(h3) -#: doc/reference/en/Groonga/QueryLog/Command.html:846(h3) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1134(h3) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1184(h3) -#: doc/reference/en/Groonga/Table.html:986(h3) -#: doc/reference/en/Groonga/Table.html:1159(h3) -#: doc/reference/en/Groonga/Table.html:1318(h3) -#: doc/reference/en/Groonga/Table.html:1513(h3) -#: doc/reference/en/Groonga/Table.html:1627(h3) -#: doc/reference/en/Groonga/Table.html:1782(h3) -#: doc/reference/en/Groonga/Table.html:1856(h3) -#: doc/reference/en/Groonga/Table.html:2045(h3) -#: doc/reference/en/Groonga/Table.html:2073(h3) -#: doc/reference/en/Groonga/Table.html:2210(h3) -#: doc/reference/en/Groonga/Table.html:2280(h3) -#: doc/reference/en/Groonga/Table.html:2598(h3) -#: doc/reference/en/Groonga/Table.html:2672(h3) -#: doc/reference/en/Groonga/Table.html:2957(h3) -#: doc/reference/en/Groonga/Table.html:3216(h3) -#: doc/reference/en/Groonga/Table.html:3244(h3) -#: doc/reference/en/Groonga/Table.html:3272(h3) -#: doc/reference/en/Groonga/Table.html:3595(h3) -#: doc/reference/en/Groonga/Table.html:3846(h3) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:284(h3) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:340(h3) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:396(h3) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:452(h3) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:508(h3) -#: doc/reference/en/Groonga/Variable.html:205(h3) -#: doc/reference/en/Groonga/Table/KeySupport.html:477(h3) -#: doc/reference/en/Groonga/Table/KeySupport.html:628(h3) -#: doc/reference/en/Groonga/Table/KeySupport.html:749(h3) -#: doc/reference/en/Grn/Table.html:928(h3) -#: doc/reference/en/Grn/Table.html:1101(h3) -#: doc/reference/en/Grn/Table.html:1260(h3) -#: doc/reference/en/Grn/Table.html:1455(h3) -#: doc/reference/en/Grn/Table.html:1569(h3) -#: doc/reference/en/Grn/Table.html:1724(h3) -#: doc/reference/en/Grn/Table.html:1798(h3) -#: doc/reference/en/Grn/Table.html:1987(h3) -#: doc/reference/en/Grn/Table.html:2015(h3) -#: doc/reference/en/Grn/Table.html:2152(h3) -#: doc/reference/en/Grn/Table.html:2222(h3) -#: doc/reference/en/Grn/Table.html:2540(h3) -#: doc/reference/en/Grn/Table.html:2614(h3) -#: doc/reference/en/Grn/Table.html:2741(h3) -#: doc/reference/en/Grn/Table.html:3001(h3) -#: doc/reference/en/Grn/Table.html:3029(h3) -#: doc/reference/en/Grn/Table.html:3057(h3) -#: doc/reference/en/Grn/Table.html:3383(h3) -#: doc/reference/en/Grn/Table.html:3634(h3) -msgid "Returns:" +#: doc/reference/en/methods_list.html:2042(a) +#: doc/reference/en/method_list.html:3476(a) +msgid "#unsigned_integer8" msgstr "" -#: doc/reference/en/Groonga.html:451(code) -msgid "MAJOR.MINOR.MICRO-TAG" +#: doc/reference/en/methods_list.html:2050(a) +#: doc/reference/en/method_list.html:3484(a) +msgid "#update" msgstr "" -#: doc/reference/en/Groonga.html:451(code) -msgid "MAJOR.MINOR.MICRO" +#: doc/reference/en/methods_list.html:2058(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:291(a) +#: doc/reference/en/method_list.html:3492(a) +msgid "#uri_format?" msgstr "" -#: doc/reference/en/Groonga.html:450(p) -msgid "" -"If Groonga:: has tag, . Otherwise, " -"." +#: doc/reference/en/methods_list.html:2066(a) +#: doc/reference/en/method_list.html:3500(a) +msgid "#user" msgstr "" -#: doc/reference/en/Groonga.html:460(pre) -msgid "65 66 67 68 69 70" +#: doc/reference/en/methods_list.html:2074(a) +#: doc/reference/en/method_list.html:3508(a) +msgid "#valid_id?" msgstr "" -#: doc/reference/en/Groonga.html:471(span) -msgid "# File 'lib/groonga.rb', line 65" +#: doc/reference/en/methods_list.html:2082(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:118(a) +#: doc/reference/en/method_list.html:3516(a) +#: doc/reference/en/method_list.html:3524(a) +#: doc/reference/en/method_list.html:3532(a) +#: doc/reference/en/method_list.html:3540(a) +#: doc/reference/en/method_list.html:3548(a) +msgid "#value" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:475(span) -msgid "major" +#: doc/reference/en/methods_list.html:2090(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:118(a) +#: doc/reference/en/method_list.html:3556(a) +#: doc/reference/en/method_list.html:3564(a) +#: doc/reference/en/method_list.html:3572(a) +msgid "#value=" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:909(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:912(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1036(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1037(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1038(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1044(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1382(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1383(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1427(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1430(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1515(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1516(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1517(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1521(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1522(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1525(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1528(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1622(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1624(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1626(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:249(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:250(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Context.html:1736(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/Schema.html:120(span) -#: doc/reference/en/Groonga/Schema.html:121(span) -#: doc/reference/en/Groonga/Schema.html:149(span) -#: doc/reference/en/Groonga/Schema.html:150(span) -#: doc/reference/en/Groonga/Schema.html:151(span) -#: doc/reference/en/Groonga/Schema.html:152(span) -#: doc/reference/en/Groonga/Schema.html:153(span) -#: doc/reference/en/Groonga/Schema.html:154(span) -#: doc/reference/en/Groonga/Schema.html:155(span) -#: doc/reference/en/Groonga/Schema.html:156(span) -#: doc/reference/en/Groonga/Schema.html:157(span) -#: doc/reference/en/Groonga/Schema.html:158(span) -#: doc/reference/en/Groonga/Schema.html:159(span) -#: doc/reference/en/Groonga/Schema.html:160(span) -#: doc/reference/en/Groonga/Schema.html:161(span) -#: doc/reference/en/Groonga/Schema.html:162(span) -#: doc/reference/en/Groonga/Schema.html:163(span) -#: doc/reference/en/Groonga/Schema.html:164(span) -#: doc/reference/en/Groonga/Schema.html:165(span) -#: doc/reference/en/Groonga/Schema.html:166(span) -#: doc/reference/en/Groonga/Schema.html:167(span) -#: doc/reference/en/Groonga/Schema.html:168(span) -#: doc/reference/en/Groonga/Schema.html:169(span) -#: doc/reference/en/Groonga/Schema.html:170(span) -#: doc/reference/en/Groonga/Schema.html:171(span) -#: doc/reference/en/Groonga/Schema.html:172(span) -#: doc/reference/en/Groonga/Schema.html:173(span) -#: doc/reference/en/Groonga/Schema.html:174(span) -#: doc/reference/en/Groonga/Schema.html:175(span) -#: doc/reference/en/Groonga/Schema.html:176(span) -#: doc/reference/en/Groonga/Schema.html:177(span) -#: doc/reference/en/Groonga/Schema.html:178(span) -#: doc/reference/en/Groonga/Schema.html:179(span) -#: doc/reference/en/Groonga/Schema.html:180(span) -#: doc/reference/en/Groonga/Schema.html:181(span) -#: doc/reference/en/Groonga/Schema.html:182(span) -#: doc/reference/en/Groonga/Schema.html:183(span) -#: doc/reference/en/Groonga/Schema.html:184(span) -#: doc/reference/en/Groonga/Schema.html:185(span) -#: doc/reference/en/Groonga/Schema.html:186(span) -#: doc/reference/en/Groonga/Schema.html:187(span) -#: doc/reference/en/Groonga/Schema.html:188(span) -#: doc/reference/en/Groonga/Schema.html:189(span) -#: doc/reference/en/Groonga/Schema.html:190(span) -#: doc/reference/en/Groonga/Schema.html:191(span) -#: doc/reference/en/Groonga/Schema.html:192(span) -#: doc/reference/en/Groonga/Schema.html:193(span) -#: doc/reference/en/Groonga/Schema.html:194(span) -#: doc/reference/en/Groonga/Schema.html:196(span) -#: doc/reference/en/Groonga/Schema.html:197(span) -#: doc/reference/en/Groonga/Schema.html:198(span) -#: doc/reference/en/Groonga/Schema.html:200(span) -#: doc/reference/en/Groonga/Schema.html:202(span) -#: doc/reference/en/Groonga/Schema.html:204(span) -#: doc/reference/en/Groonga/Schema.html:206(span) -#: doc/reference/en/Groonga/Schema.html:208(span) -#: doc/reference/en/Groonga/Schema.html:210(span) -#: doc/reference/en/Groonga/Schema.html:211(span) -#: doc/reference/en/Groonga/Schema.html:212(span) -#: doc/reference/en/Groonga/Schema.html:213(span) -#: doc/reference/en/Groonga/Schema.html:214(span) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:1876(span) -#: doc/reference/en/Groonga/Schema.html:1890(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:2021(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2214(span) -#: doc/reference/en/Groonga/Schema.html:2215(span) -#: doc/reference/en/Groonga/Schema.html:2239(span) -#: doc/reference/en/Groonga/Schema.html:2241(span) -#: doc/reference/en/Groonga/Schema.html:2262(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2288(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3345(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3539(span) -#: doc/reference/en/Groonga/Schema.html:3563(span) -#: doc/reference/en/Groonga/Schema.html:3565(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Expression.html:1107(span) -#: doc/reference/en/Groonga/Expression.html:1108(span) -#: doc/reference/en/Groonga/Expression.html:1116(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/Hash.html:272(span) -#: doc/reference/en/Groonga/Hash.html:298(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Hash.html:301(span) -#: doc/reference/en/Groonga/Hash.html:474(span) -#: doc/reference/en/Groonga/Hash.html:476(span) -#: doc/reference/en/Groonga/Array.html:246(span) -#: doc/reference/en/Groonga/Array.html:419(span) -#: doc/reference/en/Groonga/Array.html:420(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:234(span) -#: doc/reference/en/Groonga/Pagination.html:698(span) -#: doc/reference/en/Groonga/ViewRecord.html:265(span) -#: doc/reference/en/Groonga/ViewRecord.html:304(span) -#: doc/reference/en/Groonga/ViewRecord.html:439(span) -#: doc/reference/en/Groonga/ViewRecord.html:476(span) -#: doc/reference/en/Groonga/Database.html:1078(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:305(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:333(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:336(span) -#: doc/reference/en/Groonga/SchemaDumper.html:260(span) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/Record.html:973(span) -#: doc/reference/en/Groonga/Record.html:1027(span) -#: doc/reference/en/Groonga/Record.html:1038(span) -#: doc/reference/en/Groonga/Record.html:1040(span) -#: doc/reference/en/Groonga/Record.html:1137(span) -#: doc/reference/en/Groonga/Record.html:1174(span) -#: doc/reference/en/Groonga/Record.html:1211(span) -#: doc/reference/en/Groonga/Record.html:1212(span) -#: doc/reference/en/Groonga/Record.html:1299(span) -#: doc/reference/en/Groonga/Record.html:1300(span) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1455(span) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1669(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1850(span) -#: doc/reference/en/Groonga/Record.html:1978(span) -#: doc/reference/en/Groonga/Record.html:1979(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2578(span) -#: doc/reference/en/Groonga/Record.html:2615(span) -#: doc/reference/en/Groonga/View.html:317(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:442(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:470(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:473(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1522(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1627(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1634(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:500(span) -#: doc/reference/en/Groonga/Command/Builder.html:536(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:562(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:566(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:608(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:611(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:616(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:653(span) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:414(span) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Command/Select.html:252(span) -#: doc/reference/en/Groonga/Command/Select.html:258(span) -#: doc/reference/en/Groonga/Posting.html:871(span) -#: doc/reference/en/Groonga/Posting.html:872(span) -#: doc/reference/en/Groonga/Posting.html:873(span) -#: doc/reference/en/Groonga/Posting.html:874(span) -#: doc/reference/en/Groonga/Posting.html:875(span) -#: doc/reference/en/Groonga/Posting.html:876(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:236(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:241(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:242(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:246(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:248(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:249(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:617(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:752(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:755(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:815(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:818(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:970(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:971(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:973(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:978(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:979(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:980(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:981(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:982(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:983(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:984(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:985(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:986(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:987(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1046(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1240(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:317(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:318(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:2908(span) -#: doc/reference/en/Groonga/Table.html:2910(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2916(span) -#: doc/reference/en/Groonga/Table.html:2918(span) -#: doc/reference/en/Groonga/Table.html:2923(span) -#: doc/reference/en/Groonga/Table.html:2925(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3173(span) -#: doc/reference/en/Groonga/Table.html:3559(span) -#: doc/reference/en/Groonga/Table.html:3560(span) -#: doc/reference/en/Groonga/Table.html:3569(span) -#: doc/reference/en/Groonga/Table.html:3570(span) -#: doc/reference/en/Groonga/Table.html:3579(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:254(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:278(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:280(span) -#: doc/reference/en/Groonga/TooSmallPage.html:234(span) -#: doc/reference/en/Groonga/TooLargePage.html:234(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:827(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2958(span) -msgid "," +#: doc/reference/en/methods_list.html:2098(a) +#: doc/reference/en/method_list.html:3580(a) +#: doc/reference/en/method_list.html:3588(a) +msgid "#values" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:475(span) -msgid "minor" +#: doc/reference/en/methods_list.html:2106(a) +#: doc/reference/en/method_list.html:3604(a) +msgid "#vector_column?" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:475(span) -msgid "micro" +#: doc/reference/en/methods_list.html:2114(a) +#: doc/reference/en/method_list.html:3612(a) +msgid "#version" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:476(span) -msgid "tag" +#: doc/reference/en/methods_list.html:2122(a) +#: doc/reference/en/Groonga.html:208(strong) +#: doc/reference/en/Groonga.html:363(strong) +#: doc/reference/en/Groonga.html:411(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:518(strong) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1102(strong) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1121(span) +#: doc/reference/en/method_list.html:3620(a) +msgid "version" msgstr "" -#: doc/reference/en/Groonga.html:474(span) -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:260(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:909(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:914(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1037(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1046(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1047(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1427(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1516(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1525(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1622(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1624(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:250(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:251(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:278(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:279(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:280(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:252(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:225(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:225(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:225(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:251(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:252(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:252(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:253(span) -#: doc/reference/en/Groonga/Context.html:1334(span) -#: doc/reference/en/Groonga/Context.html:1335(span) -#: doc/reference/en/Groonga/Context.html:1337(span) -#: doc/reference/en/Groonga/Context.html:1737(span) -#: doc/reference/en/Groonga/Context.html:1858(span) -#: doc/reference/en/Groonga/Context.html:1860(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:864(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1851(span) -#: doc/reference/en/Groonga/Schema.html:1877(span) -#: doc/reference/en/Groonga/Schema.html:1882(span) -#: doc/reference/en/Groonga/Schema.html:1891(span) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3300(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Expression.html:1116(span) -#: doc/reference/en/Groonga/Expression.html:1117(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/TableDumper.html:194(span) -#: doc/reference/en/Groonga/TableDumper.html:195(span) -#: doc/reference/en/Groonga/TableDumper.html:196(span) -#: doc/reference/en/Groonga/TableDumper.html:197(span) -#: doc/reference/en/Groonga/Hash.html:287(span) -#: doc/reference/en/Groonga/Hash.html:297(span) -#: doc/reference/en/Groonga/Hash.html:299(span) -#: doc/reference/en/Groonga/Hash.html:473(span) -#: doc/reference/en/Groonga/Hash.html:474(span) -#: doc/reference/en/Groonga/Hash.html:476(span) -#: doc/reference/en/Groonga/Hash.html:479(span) -#: doc/reference/en/Groonga/Array.html:418(span) -#: doc/reference/en/Groonga/Array.html:422(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:235(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:236(span) -#: doc/reference/en/Groonga/ViewRecord.html:266(span) -#: doc/reference/en/Groonga/ViewRecord.html:267(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:321(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:332(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:334(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/SchemaDumper.html:250(span) -#: doc/reference/en/Groonga/SchemaDumper.html:252(span) -#: doc/reference/en/Groonga/SchemaDumper.html:253(span) -#: doc/reference/en/Groonga/SchemaDumper.html:257(span) -#: doc/reference/en/Groonga/SchemaDumper.html:258(span) -#: doc/reference/en/Groonga/SchemaDumper.html:260(span) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/Record.html:969(span) -#: doc/reference/en/Groonga/Record.html:970(span) -#: doc/reference/en/Groonga/Record.html:971(span) -#: doc/reference/en/Groonga/Record.html:974(span) -#: doc/reference/en/Groonga/Record.html:1029(span) -#: doc/reference/en/Groonga/Record.html:1030(span) -#: doc/reference/en/Groonga/Record.html:1032(span) -#: doc/reference/en/Groonga/Record.html:1033(span) -#: doc/reference/en/Groonga/Record.html:1035(span) -#: doc/reference/en/Groonga/Record.html:1341(span) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1454(span) -#: doc/reference/en/Groonga/Record.html:1668(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:2261(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:199(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:253(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:254(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:258(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/Column.html:723(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:1279(span) -#: doc/reference/en/Groonga/Column.html:1282(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:458(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:469(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:471(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1513(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1518(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1519(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1617(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1618(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1619(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1621(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1622(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1624(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1625(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1628(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1631(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1635(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1637(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1640(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:316(span) -#: doc/reference/en/Groonga/Command/Builder.html:317(span) -#: doc/reference/en/Groonga/Command/Builder.html:438(span) -#: doc/reference/en/Groonga/Command/Builder.html:501(span) -#: doc/reference/en/Groonga/Command/Builder.html:535(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Builder.html:538(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:563(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:565(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:567(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:609(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:610(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:611(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:612(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:613(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:614(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:616(span) -#: doc/reference/en/Groonga/Command/Select.html:202(span) -#: doc/reference/en/Groonga/Command/Select.html:203(span) -#: doc/reference/en/Groonga/Command/Select.html:204(span) -#: doc/reference/en/Groonga/Command/Select.html:250(span) -#: doc/reference/en/Groonga/Command/Select.html:252(span) -#: doc/reference/en/Groonga/Command/Select.html:254(span) -#: doc/reference/en/Groonga/Command/Select.html:256(span) -#: doc/reference/en/Groonga/Posting.html:420(span) -#: doc/reference/en/Groonga/Posting.html:1026(span) -#: doc/reference/en/Groonga/Posting.html:1027(span) -#: doc/reference/en/Groonga/Posting.html:1028(span) -#: doc/reference/en/Groonga/Posting.html:1029(span) -#: doc/reference/en/Groonga/Posting.html:1030(span) -#: doc/reference/en/Groonga/Posting.html:1031(span) -#: doc/reference/en/Groonga/Posting.html:1032(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:237(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:241(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:243(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:244(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:245(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:246(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:420(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:421(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:422(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:618(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:751(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:752(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:756(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:757(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:810(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:811(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:812(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:815(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:818(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:560(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:561(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:562(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:563(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:564(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:565(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:566(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:567(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:568(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:967(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:969(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:974(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:975(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:976(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:977(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1047(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1048(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1108(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1241(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1242(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:316(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:317(span) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:318(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:2906(span) -#: doc/reference/en/Groonga/Table.html:2907(span) -#: doc/reference/en/Groonga/Table.html:2908(span) -#: doc/reference/en/Groonga/Table.html:2913(span) -#: doc/reference/en/Groonga/Table.html:2914(span) -#: doc/reference/en/Groonga/Table.html:2921(span) -#: doc/reference/en/Groonga/Table.html:2922(span) -#: doc/reference/en/Groonga/Table.html:2923(span) -#: doc/reference/en/Groonga/Table.html:3124(span) -#: doc/reference/en/Groonga/Table.html:3127(span) -#: doc/reference/en/Groonga/Table.html:3172(span) -#: doc/reference/en/Groonga/Table.html:3177(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:547(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:255(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:256(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:264(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:272(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:280(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:281(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:198(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:348(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:349(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:350(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:351(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:352(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:353(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:354(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:198(span) -#: doc/reference/en/Groonga/TooSmallPage.html:235(span) -#: doc/reference/en/Groonga/TooSmallPage.html:236(span) -#: doc/reference/en/Groonga/TooLargePage.html:235(span) -#: doc/reference/en/Groonga/TooLargePage.html:236(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:820(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:822(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:824(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:827(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:832(span) -#: doc/reference/en/Grn/Table.html:2908(span) -#: doc/reference/en/Grn/Table.html:2911(span) -#: doc/reference/en/Grn/Table.html:2957(span) -#: doc/reference/en/Grn/Table.html:2962(span) -msgid "=" +#: doc/reference/en/methods_list.html:2130(a) +#: doc/reference/en/method_list.html:3628(a) +msgid "#view" msgstr "" -#: doc/reference/en/Groonga.html:475(span) -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga.html:477(span) -msgid "version_string" +#: doc/reference/en/methods_list.html:2138(a) +#: doc/reference/en/method_list.html:3636(a) +msgid "#weight" msgstr "" -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:261(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema.html:2439(span) -#: doc/reference/en/Groonga/Schema.html:2542(span) -#: doc/reference/en/Groonga/Schema.html:3080(span) -#: doc/reference/en/Groonga/Schema.html:3219(span) -#: doc/reference/en/Groonga/Schema.html:3434(span) -#: doc/reference/en/Groonga/Schema.html:3520(span) -#: doc/reference/en/Groonga/Schema.html:3655(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1633(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1634(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1641(span) -#: doc/reference/en/Groonga/Command/Builder.html:539(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:569(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:765(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:766(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:821(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:822(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:888(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1110(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:261(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:266(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:271(span) -msgid "<<" +#: doc/reference/en/methods_list.html:2146(a) +#: doc/reference/en/method_list.html:3644(a) +msgid "#wgs84_geo_point" msgstr "" -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Pagination.html:698(span) -#: doc/reference/en/Groonga/Pagination.html:1174(span) -#: doc/reference/en/Groonga/Pagination.html:1217(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1637(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:974(span) -#: doc/reference/en/Groonga/Table.html:2921(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:271(span) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:574(span) -msgid "-" +#: doc/reference/en/file.README.html:6(title) +#: doc/reference/en/index.html:6(title) +msgid "File: README — rroonga" +msgstr "????: ???? — rroonga" + +#: doc/reference/en/file.README.html:35(span) +#: doc/reference/en/index.html:35(span) +msgid "File: README" +msgstr "????: ????" + +#: doc/reference/en/file.README.html:64(span) +#: doc/reference/en/index.html:64(span) doc/reference/en/_index.html:67(a) +#: doc/reference/en/file_list.html:49(a) +msgid "README" +msgstr "????" + +#: doc/reference/en/file.README.html:65(h2) doc/reference/en/index.html:65(h2) +msgid "Name" +msgstr "??" + +#: doc/reference/en/file.README.html:66(p) doc/reference/en/index.html:66(p) +#: doc/reference/en/frames.html:7(title) doc/reference/en/_index.html:6(title) +#: doc/reference/en/_index.html:59(h1) +msgid "rroonga" msgstr "" -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:255(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:256(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:237(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:238(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Column.html:1287(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/Command/Builder.html:439(span) -#: doc/reference/en/Groonga/Command/Builder.html:535(span) -#: doc/reference/en/Groonga/Command/Builder.html:539(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:762(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:765(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:766(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:810(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3132(span) -#: doc/reference/en/Groonga/TooSmallPage.html:237(span) -#: doc/reference/en/Groonga/TooSmallPage.html:238(span) -#: doc/reference/en/Groonga/TooLargePage.html:237(span) -#: doc/reference/en/Groonga/TooLargePage.html:238(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:2916(span) -msgid "#{" +#: doc/reference/en/file.README.html:67(h2) doc/reference/en/index.html:67(h2) +msgid "Description" +msgstr "??" + +#: doc/reference/en/file.README.html:68(p) doc/reference/en/index.html:68(p) +msgid "" +"Ruby bindings for groonga that provide full text search and column store " +"features." msgstr "" +"????????????????????groonga?Ruby??????????" -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1382(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:252(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:255(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:256(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:226(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:226(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:253(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:254(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:255(span) -#: doc/reference/en/Groonga/Context.html:1335(span) -#: doc/reference/en/Groonga/Context.html:1737(span) -#: doc/reference/en/Groonga/Context.html:1858(span) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Schema.html:215(span) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:237(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:238(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/Column.html:1284(span) -#: doc/reference/en/Groonga/Column.html:1287(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1512(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1523(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1616(span) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Builder.html:439(span) -#: doc/reference/en/Groonga/Command/Builder.html:535(span) -#: doc/reference/en/Groonga/Command/Builder.html:539(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:565(span) -#: doc/reference/en/Groonga/Posting.html:421(span) -#: doc/reference/en/Groonga/Posting.html:878(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:237(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:107(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:762(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:765(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:766(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:810(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:819(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:972(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:988(span) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:3129(span) -#: doc/reference/en/Groonga/Table.html:3132(span) -#: doc/reference/en/Groonga/Table.html:3180(span) -#: doc/reference/en/Groonga/Table.html:3559(span) -#: doc/reference/en/Groonga/Table.html:3560(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:261(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:274(span) -#: doc/reference/en/Groonga/TooSmallPage.html:237(span) -#: doc/reference/en/Groonga/TooSmallPage.html:238(span) -#: doc/reference/en/Groonga/TooLargePage.html:237(span) -#: doc/reference/en/Groonga/TooLargePage.html:238(span) -#: doc/reference/en/Grn/Table.html:2913(span) -#: doc/reference/en/Grn/Table.html:2916(span) -#: doc/reference/en/Grn/Table.html:2965(span) -msgid "}" +#: doc/reference/en/file.README.html:70(p) doc/reference/en/index.html:70(p) +msgid "" +"rroonga is an extension library to use groonga?s DB- layer. " +"rroonga provides Rubyish readable and writable not C like " +". You can use groonga?s fast and highly functional features " +"from Ruby with Rubyish form." msgstr "" +"groonga?????DB-??Ruby???????????????" +"??groonga??????Ruby??????????????Ruby?" +"??????????????????????????groonga?" +"Ruby??????????????" -#: doc/reference/en/Groonga.html:476(span) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:260(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:910(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1042(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1428(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1526(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1623(span) -#: doc/reference/en/Groonga/Context.html:1336(span) -#: doc/reference/en/Groonga/Context.html:1859(span) -#: doc/reference/en/Groonga/Schema.html:3079(span) -#: doc/reference/en/Groonga/TableDumper.html:239(span) -#: doc/reference/en/Groonga/Pagination.html:697(span) -#: doc/reference/en/Groonga/Pagination.html:1216(span) -#: doc/reference/en/Groonga/ViewRecord.html:305(span) -#: doc/reference/en/Groonga/SchemaDumper.html:251(span) -#: doc/reference/en/Groonga/SchemaDumper.html:255(span) -#: doc/reference/en/Groonga/SchemaDumper.html:261(span) -#: doc/reference/en/Groonga/Record.html:972(span) -#: doc/reference/en/Groonga/Record.html:1028(span) -#: doc/reference/en/Groonga/Record.html:1036(span) -#: doc/reference/en/Groonga/Record.html:1037(span) -#: doc/reference/en/Groonga/Record.html:1763(span) -#: doc/reference/en/Groonga/Record.html:2022(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:256(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:268(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1620(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1629(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1630(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1639(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1640(span) -#: doc/reference/en/Groonga/Command/Builder.html:537(span) -#: doc/reference/en/Groonga/Command/Select/Result.html:615(span) -#: doc/reference/en/Groonga/Command/Select.html:253(span) -#: doc/reference/en/Groonga/Command/Select.html:255(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:813(span) -#: doc/reference/en/Groonga/Table.html:2909(span) -#: doc/reference/en/Groonga/Table.html:2915(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:258(span) -msgid "if" +#: doc/reference/en/file.README.html:74(p) doc/reference/en/index.html:74(p) +msgid "See the following about groonga." +msgstr "groonga???????????????????" + +#: doc/reference/en/file.README.html:76(a) doc/reference/en/index.html:76(a) +msgid "The groonga official site" +msgstr "groonga?????" + +#: doc/reference/en/file.README.html:78(h2) doc/reference/en/index.html:78(h2) +msgid "Authors" +msgstr "??" + +#: doc/reference/en/file.README.html:80(li) doc/reference/en/index.html:80(li) +msgid "Kouhei Sutou <kou at clear-code.com>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:6(title) -msgid "Class: Groonga::Logger — rroonga" +#: doc/reference/en/file.README.html:81(li) doc/reference/en/index.html:81(li) +msgid "Tasuku <a at razil.jp>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:17(script) -#: doc/reference/en/Groonga/TooManyLinks.html:17(script) -#: doc/reference/en/Groonga/OperationNotPermitted.html:17(script) -#: doc/reference/en/Groonga/BadFileDescriptor.html:17(script) -#: doc/reference/en/Groonga/Accessor.html:17(script) -#: doc/reference/en/Groonga/FileExists.html:17(script) -#: doc/reference/en/Groonga/EncodingSupport.html:17(script) -#: doc/reference/en/Groonga/BrokenPipe.html:17(script) -#: doc/reference/en/Groonga/Context.html:17(script) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:17(script) -#: doc/reference/en/Groonga/Schema.html:17(script) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:17(script) -#: doc/reference/en/Groonga/ResultTooLarge.html:17(script) -#: doc/reference/en/Groonga/DomainError.html:17(script) -#: doc/reference/en/Groonga/UnknownError.html:17(script) -#: doc/reference/en/Groonga/Expression.html:17(script) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:17(script) -#: doc/reference/en/Groonga/Error.html:17(script) -#: doc/reference/en/Groonga/EndOfData.html:17(script) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:17(script) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:17(script) -#: doc/reference/en/Groonga/InvalidSeek.html:17(script) -#: doc/reference/en/Groonga/ViewCursor.html:17(script) -#: doc/reference/en/Groonga/Snippet.html:17(script) -#: doc/reference/en/Groonga/ImproperLink.html:17(script) -#: doc/reference/en/Groonga/TableDumper.html:17(script) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:17(script) -#: doc/reference/en/Groonga/TooSmallLimit.html:17(script) -#: doc/reference/en/Groonga/VariableSizeColumn.html:17(script) -#: doc/reference/en/Groonga/NoSuchColumn.html:17(script) -#: doc/reference/en/Groonga/Hash.html:17(script) -#: doc/reference/en/Groonga/Array.html:17(script) -#: doc/reference/en/Groonga/Encoding.html:17(script) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:17(script) -#: doc/reference/en/Groonga/ConnectionRefused.html:17(script) -#: doc/reference/en/Groonga/OperationWouldBlock.html:17(script) -#: doc/reference/en/Groonga/FixSizeColumn.html:17(script) -#: doc/reference/en/Groonga/TooSmallPageSize.html:17(script) -#: doc/reference/en/Groonga/TableCursor.html:17(script) -#: doc/reference/en/Groonga/Procedure.html:17(script) -#: doc/reference/en/Groonga/CASError.html:17(script) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:17(script) -#: doc/reference/en/Groonga/Operator.html:17(script) -#: doc/reference/en/Groonga/Pagination.html:17(script) -#: doc/reference/en/Groonga/InputOutputError.html:17(script) -#: doc/reference/en/Groonga/ViewRecord.html:17(script) -#: doc/reference/en/Groonga/Type.html:17(script) -#: doc/reference/en/Groonga/OperationTimeout.html:17(script) -#: doc/reference/en/Groonga/Database.html:17(script) -#: doc/reference/en/Groonga/InvalidArgument.html:17(script) -#: doc/reference/en/Groonga/Command.html:17(script) -#: doc/reference/en/Groonga/SyntaxError.html:17(script) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:17(script) -#: doc/reference/en/Groonga/StackOverFlow.html:17(script) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:17(script) -#: doc/reference/en/Groonga/SchemaDumper.html:17(script) -#: doc/reference/en/Groonga/Object.html:17(script) -#: doc/reference/en/Groonga/NoSuchProcess.html:17(script) -#: doc/reference/en/Groonga/HashCursor.html:17(script) -#: doc/reference/en/Groonga/TooSmallOffset.html:17(script) -#: doc/reference/en/Groonga/NoLocksAvailable.html:17(script) -#: doc/reference/en/Groonga/RangeError.html:17(script) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:17(script) -#: doc/reference/en/Groonga/FileCorrupt.html:17(script) -#: doc/reference/en/Groonga/Record.html:17(script) -#: doc/reference/en/Groonga/BadAddress.html:17(script) -#: doc/reference/en/Groonga/ExecFormatError.html:17(script) -#: doc/reference/en/Groonga/View.html:17(script) -#: doc/reference/en/Groonga/FilenameTooLong.html:17(script) -#: doc/reference/en/Groonga/DatabaseDumper.html:17(script) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:17(script) -#: doc/reference/en/Groonga/ZLibError.html:17(script) -#: doc/reference/en/Groonga/TooLargeOffset.html:17(script) -#: doc/reference/en/Groonga/NotSocket.html:17(script) -#: doc/reference/en/Groonga/QueryLog.html:17(script) -#: doc/reference/en/Groonga/TokenizerError.html:17(script) -#: doc/reference/en/Groonga/NoSuchDevice.html:17(script) -#: doc/reference/en/Groonga/Column.html:17(script) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:17(script) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:17(script) -#: doc/reference/en/Groonga/NotADirectory.html:17(script) -#: doc/reference/en/Groonga/Closed.html:17(script) -#: doc/reference/en/Groonga/ResourceBusy.html:17(script) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:17(script) -#: doc/reference/en/Groonga/PatriciaTrie.html:17(script) -#: doc/reference/en/Groonga/ObjectCorrupt.html:17(script) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:17(script) -#: doc/reference/en/Groonga/PermissionDenied.html:17(script) -#: doc/reference/en/Groonga/IndexCursor.html:17(script) -#: doc/reference/en/Groonga/OperationNotSupported.html:17(script) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:17(script) -#: doc/reference/en/Groonga/InvalidFormat.html:17(script) -#: doc/reference/en/Groonga/Posting.html:17(script) -#: doc/reference/en/Groonga/RetryMax.html:17(script) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:17(script) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:17(script) -#: doc/reference/en/Groonga/NetworkIsDown.html:17(script) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:17(script) -#: doc/reference/en/Groonga/AddressIsInUse.html:17(script) -#: doc/reference/en/Groonga/NoBuffer.html:17(script) -#: doc/reference/en/Groonga/Table.html:17(script) -#: doc/reference/en/Groonga/SocketNotInitialized.html:17(script) -#: doc/reference/en/Groonga/TooSmallPage.html:17(script) -#: doc/reference/en/Groonga/Plugin.html:17(script) -#: doc/reference/en/Groonga/TooLargePage.html:17(script) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:17(script) -#: doc/reference/en/Groonga/Variable.html:17(script) -#: doc/reference/en/Groonga/GrntestLog.html:17(script) -#: doc/reference/en/Groonga/IsADirectory.html:17(script) -#: doc/reference/en/Groonga/IllegalByteSequence.html:17(script) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:17(script) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:17(script) -#: doc/reference/en/Groonga/FileTooLarge.html:17(script) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:17(script) -#: doc/reference/en/Groonga/LZOError.html:17(script) -#: doc/reference/en/Groonga/NotEnoughSpace.html:17(script) -#: doc/reference/en/Groonga/NoChildProcesses.html:17(script) -#: doc/reference/en/Groonga/ArrayCursor.html:17(script) -#: doc/reference/en/Groonga/ViewAccessor.html:17(script) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:17(script) -#: doc/reference/en/Grn/Table.html:17(script) -msgid "relpath = '..'; if (relpath != '') relpath += '/';" +#: doc/reference/en/file.README.html:82(span) +#: doc/reference/en/file.README.html:111(span) +#: doc/reference/en/index.html:82(span) doc/reference/en/index.html:111(span) +msgid "MORI" msgstr "" -#: doc/reference/en/Groonga/Logger.html:36(a) -#: doc/reference/en/Groonga/LZOError.html:36(a) -msgid "Index (L)" +#: doc/reference/en/file.README.html:82(li) doc/reference/en/index.html:82(li) +msgid "Daijiro <morita at razil.jp>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:59(h1) -msgid "Class: Groonga::Logger" +#: doc/reference/en/file.README.html:83(span) +#: doc/reference/en/index.html:83(span) +msgid "HAYAMIZU" msgstr "" -#: doc/reference/en/Groonga/Logger.html:67(dt) -#: doc/reference/en/Groonga/TooManyLinks.html:67(dt) -#: doc/reference/en/Groonga/OperationNotPermitted.html:67(dt) -#: doc/reference/en/Groonga/BadFileDescriptor.html:67(dt) -#: doc/reference/en/Groonga/Accessor.html:67(dt) -#: doc/reference/en/Groonga/FileExists.html:67(dt) -#: doc/reference/en/Groonga/Schema/Error.html:67(dt) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:67(dt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:67(dt) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:67(dt) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:67(dt) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:67(dt) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:67(dt) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:67(dt) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:67(dt) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:67(dt) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:67(dt) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:67(dt) -#: doc/reference/en/Groonga/BrokenPipe.html:67(dt) -#: doc/reference/en/Groonga/Context.html:67(dt) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:67(dt) -#: doc/reference/en/Groonga/Schema.html:67(dt) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:67(dt) -#: doc/reference/en/Groonga/ResultTooLarge.html:67(dt) -#: doc/reference/en/Groonga/DomainError.html:67(dt) -#: doc/reference/en/Groonga/UnknownError.html:67(dt) -#: doc/reference/en/Groonga/Expression.html:67(dt) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:67(dt) -#: doc/reference/en/Groonga/Error.html:67(dt) -#: doc/reference/en/Groonga/EndOfData.html:67(dt) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:67(dt) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:67(dt) -#: doc/reference/en/Groonga/InvalidSeek.html:67(dt) -#: doc/reference/en/Groonga/ViewCursor.html:67(dt) -#: doc/reference/en/Groonga/Snippet.html:67(dt) -#: doc/reference/en/Groonga/ImproperLink.html:67(dt) -#: doc/reference/en/Groonga/TableDumper.html:67(dt) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:67(dt) -#: doc/reference/en/Groonga/TooSmallLimit.html:67(dt) -#: doc/reference/en/Groonga/VariableSizeColumn.html:67(dt) -#: doc/reference/en/Groonga/NoSuchColumn.html:67(dt) -#: doc/reference/en/Groonga/Hash.html:67(dt) -#: doc/reference/en/Groonga/Array.html:67(dt) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:67(dt) -#: doc/reference/en/Groonga/ConnectionRefused.html:67(dt) -#: doc/reference/en/Groonga/OperationWouldBlock.html:67(dt) -#: doc/reference/en/Groonga/FixSizeColumn.html:67(dt) -#: doc/reference/en/Groonga/TooSmallPageSize.html:67(dt) -#: doc/reference/en/Groonga/TableCursor.html:67(dt) -#: doc/reference/en/Groonga/Procedure.html:67(dt) -#: doc/reference/en/Groonga/CASError.html:67(dt) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:67(dt) -#: doc/reference/en/Groonga/InputOutputError.html:67(dt) -#: doc/reference/en/Groonga/ViewRecord.html:67(dt) -#: doc/reference/en/Groonga/Type.html:67(dt) -#: doc/reference/en/Groonga/OperationTimeout.html:67(dt) -#: doc/reference/en/Groonga/Database.html:67(dt) -#: doc/reference/en/Groonga/InvalidArgument.html:67(dt) -#: doc/reference/en/Groonga/SyntaxError.html:67(dt) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:67(dt) -#: doc/reference/en/Groonga/StackOverFlow.html:67(dt) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:67(dt) -#: doc/reference/en/Groonga/SchemaDumper.html:67(dt) -#: doc/reference/en/Groonga/Object.html:67(dt) -#: doc/reference/en/Groonga/NoSuchProcess.html:67(dt) -#: doc/reference/en/Groonga/HashCursor.html:67(dt) -#: doc/reference/en/Groonga/TooSmallOffset.html:67(dt) -#: doc/reference/en/Groonga/NoLocksAvailable.html:67(dt) -#: doc/reference/en/Groonga/RangeError.html:67(dt) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:67(dt) -#: doc/reference/en/Groonga/FileCorrupt.html:67(dt) -#: doc/reference/en/Groonga/Record.html:67(dt) -#: doc/reference/en/Groonga/BadAddress.html:67(dt) -#: doc/reference/en/Groonga/ExecFormatError.html:67(dt) -#: doc/reference/en/Groonga/View.html:67(dt) -#: doc/reference/en/Groonga/FilenameTooLong.html:67(dt) -#: doc/reference/en/Groonga/DatabaseDumper.html:67(dt) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:67(dt) -#: doc/reference/en/Groonga/ZLibError.html:67(dt) -#: doc/reference/en/Groonga/TooLargeOffset.html:67(dt) -#: doc/reference/en/Groonga/NotSocket.html:67(dt) -#: doc/reference/en/Groonga/TokenizerError.html:67(dt) -#: doc/reference/en/Groonga/NoSuchDevice.html:67(dt) -#: doc/reference/en/Groonga/Column.html:67(dt) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:67(dt) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:67(dt) -#: doc/reference/en/Groonga/NotADirectory.html:67(dt) -#: doc/reference/en/Groonga/Closed.html:67(dt) -#: doc/reference/en/Groonga/ResourceBusy.html:67(dt) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:67(dt) -#: doc/reference/en/Groonga/PatriciaTrie.html:67(dt) -#: doc/reference/en/Groonga/ObjectCorrupt.html:67(dt) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:67(dt) -#: doc/reference/en/Groonga/PermissionDenied.html:67(dt) -#: doc/reference/en/Groonga/IndexCursor.html:67(dt) -#: doc/reference/en/Groonga/OperationNotSupported.html:67(dt) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:67(dt) -#: doc/reference/en/Groonga/InvalidFormat.html:67(dt) -#: doc/reference/en/Groonga/Command/Builder.html:67(dt) -#: doc/reference/en/Groonga/Command/Select/Result.html:67(dt) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:67(dt) -#: doc/reference/en/Groonga/Command/Select.html:67(dt) -#: doc/reference/en/Groonga/Posting.html:67(dt) -#: doc/reference/en/Groonga/RetryMax.html:67(dt) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:67(dt) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:67(dt) -#: doc/reference/en/Groonga/NetworkIsDown.html:67(dt) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:67(dt) -#: doc/reference/en/Groonga/AddressIsInUse.html:67(dt) -#: doc/reference/en/Groonga/NoBuffer.html:67(dt) -#: doc/reference/en/Groonga/QueryLog/Parser.html:67(dt) -#: doc/reference/en/Groonga/QueryLog/Command.html:67(dt) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:67(dt) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:67(dt) -#: doc/reference/en/Groonga/Table.html:67(dt) -#: doc/reference/en/Groonga/SocketNotInitialized.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:67(dt) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:67(dt) -#: doc/reference/en/Groonga/TooSmallPage.html:67(dt) -#: doc/reference/en/Groonga/Plugin.html:67(dt) -#: doc/reference/en/Groonga/TooLargePage.html:67(dt) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:67(dt) -#: doc/reference/en/Groonga/Variable.html:67(dt) -#: doc/reference/en/Groonga/IsADirectory.html:67(dt) -#: doc/reference/en/Groonga/IllegalByteSequence.html:67(dt) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:67(dt) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:67(dt) -#: doc/reference/en/Groonga/FileTooLarge.html:67(dt) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:67(dt) -#: doc/reference/en/Groonga/LZOError.html:67(dt) -#: doc/reference/en/Groonga/NotEnoughSpace.html:67(dt) -#: doc/reference/en/Groonga/NoChildProcesses.html:67(dt) -#: doc/reference/en/Groonga/ArrayCursor.html:67(dt) -#: doc/reference/en/Groonga/ViewAccessor.html:67(dt) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:67(dt) -#: doc/reference/en/Grn/Table.html:67(dt) -msgid "Inherits:" +#: doc/reference/en/file.README.html:83(li) doc/reference/en/index.html:83(li) +msgid "Yuto <y.hayamizu at gmail.com>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:74(li) -#: doc/reference/en/method_list.html:1654(small) -#: doc/reference/en/method_list.html:1958(small) -#: doc/reference/en/method_list.html:1966(small) -#: doc/reference/en/method_list.html:2478(small) -#: doc/reference/en/method_list.html:2486(small) -#: doc/reference/en/method_list.html:2606(small) -#: doc/reference/en/method_list.html:2782(small) -msgid "Groonga::Logger" +#: doc/reference/en/file.README.html:84(span) +#: doc/reference/en/index.html:84(span) +msgid "SHIDARA" msgstr "" -#: doc/reference/en/Groonga/Logger.html:77(a) -#: doc/reference/en/Groonga/TooManyLinks.html:81(a) -#: doc/reference/en/Groonga/OperationNotPermitted.html:81(a) -#: doc/reference/en/Groonga/BadFileDescriptor.html:81(a) -#: doc/reference/en/Groonga/Accessor.html:79(a) -#: doc/reference/en/Groonga/FileExists.html:81(a) -#: doc/reference/en/Groonga/Schema/Error.html:81(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:77(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:77(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:83(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:83(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:83(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:83(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:83(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:83(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:83(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:83(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:83(a) -#: doc/reference/en/Groonga/BrokenPipe.html:81(a) -#: doc/reference/en/Groonga/Context.html:77(a) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:81(a) -#: doc/reference/en/Groonga/Schema.html:77(a) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:81(a) -#: doc/reference/en/Groonga/ResultTooLarge.html:81(a) -#: doc/reference/en/Groonga/DomainError.html:81(a) -#: doc/reference/en/Groonga/UnknownError.html:81(a) -#: doc/reference/en/Groonga/Expression.html:79(a) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:81(a) -#: doc/reference/en/Groonga/Error.html:79(a) -#: doc/reference/en/Groonga/EndOfData.html:81(a) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:81(a) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:81(a) -#: doc/reference/en/Groonga/InvalidSeek.html:81(a) -#: doc/reference/en/Groonga/ViewCursor.html:79(a) -#: doc/reference/en/Groonga/Snippet.html:79(a) -#: doc/reference/en/Groonga/ImproperLink.html:81(a) -#: doc/reference/en/Groonga/TableDumper.html:77(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:81(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:81(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:81(a) -#: doc/reference/en/Groonga/NoSuchColumn.html:81(a) -#: doc/reference/en/Groonga/Hash.html:81(a) -#: doc/reference/en/Groonga/Array.html:81(a) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:81(a) -#: doc/reference/en/Groonga/ConnectionRefused.html:81(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:81(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:81(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:81(a) -#: doc/reference/en/Groonga/TableCursor.html:77(a) -#: doc/reference/en/Groonga/Procedure.html:79(a) -#: doc/reference/en/Groonga/CASError.html:81(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:81(a) -#: doc/reference/en/Groonga/InputOutputError.html:81(a) -#: doc/reference/en/Groonga/ViewRecord.html:77(a) -#: doc/reference/en/Groonga/Type.html:79(a) -#: doc/reference/en/Groonga/OperationTimeout.html:81(a) -#: doc/reference/en/Groonga/Database.html:79(a) -#: doc/reference/en/Groonga/InvalidArgument.html:81(a) -#: doc/reference/en/Groonga/SyntaxError.html:81(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:81(a) -#: doc/reference/en/Groonga/StackOverFlow.html:81(a) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:81(a) -#: doc/reference/en/Groonga/SchemaDumper.html:77(a) -#: doc/reference/en/Groonga/Object.html:77(a) -#: doc/reference/en/Groonga/NoSuchProcess.html:81(a) -#: doc/reference/en/Groonga/HashCursor.html:79(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:81(a) -#: doc/reference/en/Groonga/NoLocksAvailable.html:81(a) -#: doc/reference/en/Groonga/RangeError.html:81(a) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:81(a) -#: doc/reference/en/Groonga/FileCorrupt.html:81(a) -#: doc/reference/en/Groonga/Record.html:77(a) -#: doc/reference/en/Groonga/BadAddress.html:81(a) -#: doc/reference/en/Groonga/ExecFormatError.html:81(a) -#: doc/reference/en/Groonga/View.html:81(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:81(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:77(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:79(a) -#: doc/reference/en/Groonga/ZLibError.html:81(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:81(a) -#: doc/reference/en/Groonga/NotSocket.html:81(a) -#: doc/reference/en/Groonga/TokenizerError.html:81(a) -#: doc/reference/en/Groonga/NoSuchDevice.html:81(a) -#: doc/reference/en/Groonga/Column.html:79(a) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:81(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:81(a) -#: doc/reference/en/Groonga/NotADirectory.html:81(a) -#: doc/reference/en/Groonga/Closed.html:81(a) -#: doc/reference/en/Groonga/ResourceBusy.html:81(a) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:81(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:81(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:81(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:81(a) -#: doc/reference/en/Groonga/PermissionDenied.html:81(a) -#: doc/reference/en/Groonga/IndexCursor.html:79(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:81(a) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:81(a) -#: doc/reference/en/Groonga/InvalidFormat.html:81(a) -#: doc/reference/en/Groonga/Command/Builder.html:77(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:79(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:79(a) -#: doc/reference/en/Groonga/Command/Select.html:77(a) -#: doc/reference/en/Groonga/Posting.html:77(a) -#: doc/reference/en/Groonga/RetryMax.html:81(a) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:81(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:81(a) -#: doc/reference/en/Groonga/NetworkIsDown.html:81(a) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:81(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:81(a) -#: doc/reference/en/Groonga/NoBuffer.html:81(a) -#: doc/reference/en/Groonga/QueryLog/Parser.html:77(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:77(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:77(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:79(a) -#: doc/reference/en/Groonga/Table.html:79(a) -#: doc/reference/en/Groonga/SocketNotInitialized.html:81(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:77(a) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:77(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:77(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:77(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:79(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:77(a) -#: doc/reference/en/Groonga/TooSmallPage.html:81(a) -#: doc/reference/en/Groonga/Plugin.html:77(a) -#: doc/reference/en/Groonga/TooLargePage.html:81(a) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:81(a) -#: doc/reference/en/Groonga/Variable.html:79(a) -#: doc/reference/en/Groonga/IsADirectory.html:81(a) -#: doc/reference/en/Groonga/IllegalByteSequence.html:81(a) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:81(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:79(a) -#: doc/reference/en/Groonga/FileTooLarge.html:81(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:81(a) -#: doc/reference/en/Groonga/LZOError.html:81(a) -#: doc/reference/en/Groonga/NotEnoughSpace.html:81(a) -#: doc/reference/en/Groonga/NoChildProcesses.html:81(a) -#: doc/reference/en/Groonga/ArrayCursor.html:79(a) -#: doc/reference/en/Groonga/ViewAccessor.html:79(a) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:81(a) -#: doc/reference/en/Grn/Table.html:79(a) -msgid "show all" +#: doc/reference/en/file.README.html:84(li) doc/reference/en/index.html:84(li) +msgid " Yoji <dara at shidara.net>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:90(dd) -msgid "ext/groonga/rb-grn-logger.c" +#: doc/reference/en/file.README.html:85(li) doc/reference/en/index.html:85(li) +msgid "yoshihara haruka <yoshihara at clear-code.com>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:97(p) -msgid "groonga?????????????????????" -msgstr "" +#: doc/reference/en/file.README.html:87(h2) doc/reference/en/index.html:87(h2) +msgid "License" +msgstr "?????" -#: doc/reference/en/Groonga/Logger.html:122(strong) -#: doc/reference/en/Groonga/Logger.html:309(strong) -msgid "Groonga::Logger.log_path" +#: doc/reference/en/file.README.html:88(span) +#: doc/reference/en/index.html:88(span) +msgid "LGPL" msgstr "" -#: doc/reference/en/Groonga/Logger.html:122(a) -#: doc/reference/en/Groonga/Logger.html:166(a) -msgid "+ (Object) (#)" +#: doc/reference/en/file.README.html:88(p) doc/reference/en/index.html:88(p) +msgid " 2.1. See license/ for details." msgstr "" +" 2.1???????license/????????" -#: doc/reference/en/Groonga/Logger.html:135(p) -msgid "groonga?????????????????????? ??????." +#: doc/reference/en/file.README.html:89(p) doc/reference/en/index.html:89(p) +msgid "" +"(Kouhei Sutou has a right to change the license including contributed " +"patches.)" msgstr "" +"?????????????????????Kouhei Sutou???????????" +"?????????" -#: doc/reference/en/Groonga/Logger.html:144(strong) -#: doc/reference/en/Groonga/Logger.html:354(strong) -msgid "Groonga::Logger.log_path=" -msgstr "" +#: doc/reference/en/file.README.html:91(h2) doc/reference/en/index.html:91(h2) +msgid "Dependencies" +msgstr "????????" -#: doc/reference/en/Groonga/Logger.html:144(a) -#: doc/reference/en/Groonga/Logger.html:188(a) -msgid "+ (Object) (path)" -msgstr "" +#: doc/reference/en/file.README.html:93(li) doc/reference/en/index.html:93(li) +msgid "Ruby >= 1.8 (including 1.9.2)" +msgstr "Ruby >= 1.8 ?1.9.2???" -#: doc/reference/en/Groonga/Logger.html:157(p) -msgid "groonga????????????????????????? ?????." +#: doc/reference/en/file.README.html:94(li) doc/reference/en/index.html:94(li) +msgid "groonga >= 1.2.0" msgstr "" -#: doc/reference/en/Groonga/Logger.html:166(strong) -#: doc/reference/en/Groonga/Logger.html:401(strong) -msgid "Groonga::Logger.query_log_path" -msgstr "" +#: doc/reference/en/file.README.html:96(h2) doc/reference/en/index.html:96(h2) +msgid "Install" +msgstr "??????" -#: doc/reference/en/Groonga/Logger.html:179(p) -msgid "groonga????????????????????????? ??????." +#: doc/reference/en/file.README.html:97(code) +#: doc/reference/en/index.html:97(code) +#: doc/reference/en/file.tutorial.html:69(code) +msgid "% sudo gem install rroonga" msgstr "" -#: doc/reference/en/Groonga/Logger.html:188(strong) -#: doc/reference/en/Groonga/Logger.html:446(strong) -msgid "Groonga::Logger.query_log_path=" -msgstr "" +#: doc/reference/en/file.README.html:99(h2) doc/reference/en/index.html:99(h2) +msgid "Documents" +msgstr "??????" -#: doc/reference/en/Groonga/Logger.html:201(p) -msgid "" -"groonga????????????????????????? ????????." -msgstr "" +#: doc/reference/en/file.README.html:101(a) doc/reference/en/index.html:101(a) +msgid "Reference manual in English" +msgstr "???????????????" -#: doc/reference/en/Groonga/Logger.html:210(strong) -#: doc/reference/en/Groonga/Logger.html:494(strong) -msgid "Groonga::Logger.register" -msgstr "" +#: doc/reference/en/file.README.html:102(a) doc/reference/en/index.html:102(a) +msgid "Reference manual in Japanese" +msgstr "????????????????" -#: doc/reference/en/Groonga/Logger.html:210(a) -#: doc/reference/en/Groonga/Schema.html:346(a) -msgid "+ (Object) (options = {})" -msgstr "" +#: doc/reference/en/file.README.html:104(h2) +#: doc/reference/en/index.html:104(h2) +msgid "Mailing list" +msgstr "????????" -#: doc/reference/en/Groonga/Logger.html:223(p) -msgid "groonga???????????????????????? ??." -msgstr "" - -#: doc/reference/en/Groonga/Logger.html:232(strong) -#: doc/reference/en/Groonga/Logger.html:571(strong) -msgid "Groonga::Logger.reopen" -msgstr "" - -#: doc/reference/en/Groonga/Logger.html:245(p) -msgid "" -"groonga????????????????????????? ?????????" -"??????????????????." -msgstr "" - -#: doc/reference/en/Groonga/Logger.html:253(h2) -#: doc/reference/en/Groonga/Accessor.html:115(h2) -#: doc/reference/en/Groonga/EncodingSupport.html:102(h2) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:146(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:150(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:171(h2) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:172(h2) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:195(h2) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:171(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:147(h2) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:147(h2) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:147(h2) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:171(h2) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:172(h2) -#: doc/reference/en/Groonga/Context.html:224(h2) -#: doc/reference/en/Groonga/Schema.html:496(h2) -#: doc/reference/en/Groonga/Expression.html:114(h2) -#: doc/reference/en/Groonga/Snippet.html:114(h2) -#: doc/reference/en/Groonga/TableDumper.html:103(h2) -#: doc/reference/en/Groonga/VariableSizeColumn.html:116(h2) -#: doc/reference/en/Groonga/Hash.html:153(h2) -#: doc/reference/en/Groonga/Array.html:149(h2) -#: doc/reference/en/Groonga/FixSizeColumn.html:116(h2) -#: doc/reference/en/Groonga/TooSmallPageSize.html:160(h2) -#: doc/reference/en/Groonga/TableCursor.html:131(h2) -#: doc/reference/en/Groonga/Pagination.html:200(h2) -#: doc/reference/en/Groonga/ViewRecord.html:156(h2) -#: doc/reference/en/Groonga/Type.html:374(h2) -#: doc/reference/en/Groonga/Database.html:175(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:162(h2) -#: doc/reference/en/Groonga/SchemaDumper.html:113(h2) -#: doc/reference/en/Groonga/Object.html:118(h2) -#: doc/reference/en/Groonga/Record.html:132(h2) -#: doc/reference/en/Groonga/View.html:150(h2) -#: doc/reference/en/Groonga/DatabaseDumper.html:112(h2) -#: doc/reference/en/Groonga/Column.html:134(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:157(h2) -#: doc/reference/en/Groonga/IndexCursor.html:109(h2) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:99(h2) -#: doc/reference/en/Groonga/Command/Builder.html:186(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:267(h2) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:182(h2) -#: doc/reference/en/Groonga/Command/Select.html:113(h2) -#: doc/reference/en/Groonga/Posting.html:299(h2) -#: doc/reference/en/Groonga/QueryLog/Parser.html:103(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:247(h2) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:276(h2) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:110(h2) -#: doc/reference/en/Groonga/Table.html:136(h2) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:103(h2) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:103(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:132(h2) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:276(h2) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:230(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:132(h2) -#: doc/reference/en/Groonga/TooSmallPage.html:160(h2) -#: doc/reference/en/Groonga/TooLargePage.html:160(h2) -#: doc/reference/en/Groonga/Variable.html:114(h2) -#: doc/reference/en/Groonga/Table/KeySupport.html:106(h2) -#: doc/reference/en/Grn/Table.html:109(h2) -msgid "Instance Method Summary " +#: doc/reference/en/file.README.html:106(a) doc/reference/en/index.html:106(a) +msgid "groonga-users-en" msgstr "" -#: doc/reference/en/Groonga/Logger.html:263(strong) -#: doc/reference/en/Groonga/Logger.html:292(strong) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:181(strong) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:221(strong) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:249(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:182(strong) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:222(strong) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:205(strong) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:245(strong) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:181(strong) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:221(strong) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:251(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:157(strong) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:197(strong) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:224(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:157(strong) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:197(strong) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:157(strong) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:197(strong) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:224(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:181(strong) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:221(strong) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:250(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:182(strong) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:222(strong) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema.html:633(strong) -#: doc/reference/en/Groonga/Schema.html:790(strong) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Expression.html:273(strong) -#: doc/reference/en/Groonga/Expression.html:377(strong) -#: doc/reference/en/Groonga/TableDumper.html:134(strong) -#: doc/reference/en/Groonga/TableDumper.html:163(strong) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:170(strong) -#: doc/reference/en/Groonga/TooSmallPageSize.html:205(strong) -#: doc/reference/en/Groonga/TooSmallPageSize.html:234(span) -#: doc/reference/en/Groonga/ViewRecord.html:209(strong) -#: doc/reference/en/Groonga/ViewRecord.html:238(strong) -#: doc/reference/en/Groonga/ViewRecord.html:265(span) -#: doc/reference/en/Groonga/Database.html:270(strong) -#: doc/reference/en/Groonga/SchemaDumper.html:144(strong) -#: doc/reference/en/Groonga/SchemaDumper.html:173(strong) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/Record.html:468(strong) -#: doc/reference/en/Groonga/Record.html:929(strong) -#: doc/reference/en/Groonga/Record.html:968(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:143(strong) -#: doc/reference/en/Groonga/DatabaseDumper.html:172(strong) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/Command/Builder.html:259(strong) -#: doc/reference/en/Groonga/Command/Builder.html:288(strong) -#: doc/reference/en/Groonga/Command/Builder.html:315(span) -#: doc/reference/en/Groonga/Command/Select.html:144(strong) -#: doc/reference/en/Groonga/Command/Select.html:173(strong) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Posting.html:309(strong) -#: doc/reference/en/Groonga/Posting.html:380(strong) -#: doc/reference/en/Groonga/Posting.html:420(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:113(strong) -#: doc/reference/en/Groonga/QueryLog/Parser.html:163(strong) -#: doc/reference/en/Groonga/QueryLog/Parser.html:188(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:299(strong) -#: doc/reference/en/Groonga/QueryLog/Command.html:391(strong) -#: doc/reference/en/Groonga/QueryLog/Command.html:419(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:391(strong) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:525(strong) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:559(span) -#: doc/reference/en/Groonga/Table.html:469(strong) -#: doc/reference/en/Groonga/Table.html:948(strong) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:260(strong) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:520(strong) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:546(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:113(strong) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:163(strong) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:188(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:142(strong) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:171(strong) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:197(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:286(strong) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:315(strong) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:347(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:142(strong) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:171(strong) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:197(span) -#: doc/reference/en/Groonga/TooSmallPage.html:170(strong) -#: doc/reference/en/Groonga/TooSmallPage.html:205(strong) -#: doc/reference/en/Groonga/TooSmallPage.html:234(span) -#: doc/reference/en/Groonga/TooLargePage.html:170(strong) -#: doc/reference/en/Groonga/TooLargePage.html:205(strong) -#: doc/reference/en/Groonga/TooLargePage.html:234(span) -#: doc/reference/en/Grn/Table.html:442(strong) -#: doc/reference/en/Grn/Table.html:890(strong) -msgid "initialize" -msgstr "" +#: doc/reference/en/file.README.html:106(li) +#: doc/reference/en/index.html:106(li) +msgid "English: " +msgstr "??: " -#: doc/reference/en/Groonga/Logger.html:263(a) -#: doc/reference/en/Groonga/Accessor.html:125(a) -#: doc/reference/en/Groonga/EncodingSupport.html:112(a) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:119(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:123(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:120(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:144(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:121(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:145(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:120(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:144(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:168(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:120(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:144(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:120(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:120(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:120(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:120(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:144(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:121(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:145(a) -#: doc/reference/en/Groonga/Context.html:234(a) -#: doc/reference/en/Groonga/Context.html:255(a) -#: doc/reference/en/Groonga/Context.html:276(a) -#: doc/reference/en/Groonga/Context.html:609(a) -#: doc/reference/en/Groonga/Context.html:631(a) -#: doc/reference/en/Groonga/Schema.html:590(a) -#: doc/reference/en/Groonga/Schema.html:611(a) -#: doc/reference/en/Groonga/Expression.html:124(a) -#: doc/reference/en/Groonga/Expression.html:147(a) -#: doc/reference/en/Groonga/Expression.html:168(a) -#: doc/reference/en/Groonga/Expression.html:210(a) -#: doc/reference/en/Groonga/Expression.html:252(a) -#: doc/reference/en/Groonga/Expression.html:273(a) -#: doc/reference/en/Groonga/TableDumper.html:113(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:109(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:133(a) -#: doc/reference/en/Groonga/TableCursor.html:141(a) -#: doc/reference/en/Groonga/TableCursor.html:163(a) -#: doc/reference/en/Groonga/TableCursor.html:185(a) -#: doc/reference/en/Groonga/TableCursor.html:248(a) -#: doc/reference/en/Groonga/TableCursor.html:269(a) -#: doc/reference/en/Groonga/Pagination.html:101(a) -#: doc/reference/en/Groonga/Pagination.html:125(a) -#: doc/reference/en/Groonga/Pagination.html:149(a) -#: doc/reference/en/Groonga/Pagination.html:173(a) -#: doc/reference/en/Groonga/Pagination.html:210(a) -#: doc/reference/en/Groonga/Pagination.html:234(a) -#: doc/reference/en/Groonga/Pagination.html:339(a) -#: doc/reference/en/Groonga/Pagination.html:381(a) -#: doc/reference/en/Groonga/Pagination.html:402(a) -#: doc/reference/en/Groonga/Pagination.html:424(a) -#: doc/reference/en/Groonga/Pagination.html:445(a) -#: doc/reference/en/Groonga/Pagination.html:467(a) -#: doc/reference/en/Groonga/ViewRecord.html:105(a) -#: doc/reference/en/Groonga/ViewRecord.html:129(a) -#: doc/reference/en/Groonga/Database.html:185(a) -#: doc/reference/en/Groonga/Database.html:206(a) -#: doc/reference/en/Groonga/Database.html:249(a) -#: doc/reference/en/Groonga/Database.html:270(a) -#: doc/reference/en/Groonga/Database.html:295(a) -#: doc/reference/en/Groonga/Database.html:317(a) -#: doc/reference/en/Groonga/Database.html:338(a) -#: doc/reference/en/Groonga/Database.html:359(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:172(a) -#: doc/reference/en/Groonga/SchemaDumper.html:123(a) -#: doc/reference/en/Groonga/Object.html:235(a) -#: doc/reference/en/Groonga/Object.html:257(a) -#: doc/reference/en/Groonga/Object.html:302(a) -#: doc/reference/en/Groonga/Object.html:324(a) -#: doc/reference/en/Groonga/Object.html:345(a) -#: doc/reference/en/Groonga/Object.html:366(a) -#: doc/reference/en/Groonga/Object.html:388(a) -#: doc/reference/en/Groonga/Object.html:456(a) -#: doc/reference/en/Groonga/Object.html:478(a) -#: doc/reference/en/Groonga/Object.html:500(a) -#: doc/reference/en/Groonga/Record.html:105(a) -#: doc/reference/en/Groonga/Record.html:251(a) -#: doc/reference/en/Groonga/Record.html:295(a) -#: doc/reference/en/Groonga/Record.html:338(a) -#: doc/reference/en/Groonga/Record.html:380(a) -#: doc/reference/en/Groonga/Record.html:492(a) -#: doc/reference/en/Groonga/Record.html:556(a) -#: doc/reference/en/Groonga/Record.html:600(a) -#: doc/reference/en/Groonga/Record.html:621(a) -#: doc/reference/en/Groonga/Record.html:686(a) -#: doc/reference/en/Groonga/Record.html:860(a) -#: doc/reference/en/Groonga/View.html:224(a) -#: doc/reference/en/Groonga/DatabaseDumper.html:122(a) -#: doc/reference/en/Groonga/Column.html:165(a) -#: doc/reference/en/Groonga/Column.html:210(a) -#: doc/reference/en/Groonga/Column.html:231(a) -#: doc/reference/en/Groonga/Column.html:274(a) -#: doc/reference/en/Groonga/Column.html:319(a) -#: doc/reference/en/Groonga/Column.html:341(a) -#: doc/reference/en/Groonga/Column.html:409(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:167(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:190(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:213(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:262(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:284(a) -#: doc/reference/en/Groonga/IndexCursor.html:119(a) -#: doc/reference/en/Groonga/IndexCursor.html:140(a) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:109(a) -#: doc/reference/en/Groonga/Command/Builder.html:105(a) -#: doc/reference/en/Groonga/Command/Builder.html:129(a) -#: doc/reference/en/Groonga/Command/Builder.html:238(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:117(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:141(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:165(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:189(a) -#: doc/reference/en/Groonga/Command/Select/Result.html:277(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:107(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:131(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:155(a) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:192(a) -#: doc/reference/en/Groonga/Command/Select.html:123(a) -#: doc/reference/en/Groonga/Posting.html:128(a) -#: doc/reference/en/Groonga/Posting.html:152(a) -#: doc/reference/en/Groonga/Posting.html:176(a) -#: doc/reference/en/Groonga/Posting.html:200(a) -#: doc/reference/en/Groonga/Posting.html:224(a) -#: doc/reference/en/Groonga/Posting.html:248(a) -#: doc/reference/en/Groonga/Posting.html:272(a) -#: doc/reference/en/Groonga/Posting.html:332(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:121(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:145(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:169(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:322(a) -#: doc/reference/en/Groonga/QueryLog/Command.html:343(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:105(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:129(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:153(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:177(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:201(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:225(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:249(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:307(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:328(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:349(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:414(a) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:435(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:120(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:141(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:162(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:183(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:204(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:225(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:246(a) -#: doc/reference/en/Groonga/Table.html:210(a) -#: doc/reference/en/Groonga/Table.html:253(a) -#: doc/reference/en/Groonga/Table.html:382(a) -#: doc/reference/en/Groonga/Table.html:425(a) -#: doc/reference/en/Groonga/Table.html:469(a) -#: doc/reference/en/Groonga/Table.html:535(a) -#: doc/reference/en/Groonga/Table.html:600(a) -#: doc/reference/en/Groonga/Table.html:688(a) -#: doc/reference/en/Groonga/Table.html:714(a) -#: doc/reference/en/Groonga/Table.html:736(a) -#: doc/reference/en/Groonga/Table.html:758(a) -#: doc/reference/en/Groonga/Table.html:801(a) -#: doc/reference/en/Groonga/Table.html:823(a) -#: doc/reference/en/Groonga/Table.html:846(a) -#: doc/reference/en/Groonga/Table.html:910(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:113(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:134(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:155(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:176(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:197(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:218(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:239(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:283(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:304(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:325(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:346(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:367(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:388(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:409(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:430(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:451(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:472(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:493(a) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:105(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:105(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:129(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:153(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:177(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:201(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:225(a) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:249(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:107(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:131(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:155(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:179(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:203(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:240(a) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:105(a) -#: doc/reference/en/Groonga/TooSmallPage.html:109(a) -#: doc/reference/en/Groonga/TooSmallPage.html:133(a) -#: doc/reference/en/Groonga/TooLargePage.html:109(a) -#: doc/reference/en/Groonga/TooLargePage.html:133(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:181(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:223(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:244(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:286(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:328(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:350(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:372(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:394(a) -#: doc/reference/en/Groonga/Table/KeySupport.html:416(a) -#: doc/reference/en/Grn/Table.html:183(a) -#: doc/reference/en/Grn/Table.html:226(a) -#: doc/reference/en/Grn/Table.html:355(a) -#: doc/reference/en/Grn/Table.html:398(a) -#: doc/reference/en/Grn/Table.html:442(a) -#: doc/reference/en/Grn/Table.html:508(a) -#: doc/reference/en/Grn/Table.html:573(a) -#: doc/reference/en/Grn/Table.html:639(a) -#: doc/reference/en/Grn/Table.html:665(a) -#: doc/reference/en/Grn/Table.html:687(a) -#: doc/reference/en/Grn/Table.html:709(a) -#: doc/reference/en/Grn/Table.html:752(a) -#: doc/reference/en/Grn/Table.html:774(a) -#: doc/reference/en/Grn/Table.html:797(a) -#: doc/reference/en/Grn/Table.html:861(a) -msgid "- (Object) " +#: doc/reference/en/file.README.html:107(a) doc/reference/en/index.html:107(a) +msgid "groonga-dev" msgstr "" -#: doc/reference/en/Groonga/Logger.html:269(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:187(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:188(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:211(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:187(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:163(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:163(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:163(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:187(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:188(span) -#: doc/reference/en/Groonga/Context.html:411(span) -#: doc/reference/en/Groonga/Schema.html:639(span) -#: doc/reference/en/Groonga/Expression.html:279(span) -#: doc/reference/en/Groonga/Snippet.html:173(span) -#: doc/reference/en/Groonga/TableDumper.html:140(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:176(span) -#: doc/reference/en/Groonga/ViewRecord.html:215(span) -#: doc/reference/en/Groonga/Type.html:390(span) -#: doc/reference/en/Groonga/Database.html:276(span) -#: doc/reference/en/Groonga/SchemaDumper.html:150(span) -#: doc/reference/en/Groonga/Record.html:474(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:149(span) -#: doc/reference/en/Groonga/Command/Builder.html:265(span) -#: doc/reference/en/Groonga/Command/Select.html:150(span) -#: doc/reference/en/Groonga/Posting.html:315(span) -#: doc/reference/en/Groonga/QueryLog/Parser.html:119(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:305(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:397(span) -#: doc/reference/en/Groonga/Table.html:475(span) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:266(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:119(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:148(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:292(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:148(span) -#: doc/reference/en/Groonga/TooSmallPage.html:176(span) -#: doc/reference/en/Groonga/TooLargePage.html:176(span) -#: doc/reference/en/Grn/Table.html:448(span) -msgid "constructor" -msgstr "" +#: doc/reference/en/file.README.html:107(li) +#: doc/reference/en/index.html:107(li) +msgid "Japanese: " +msgstr "???: " -#: doc/reference/en/Groonga/Logger.html:287(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:216(h2) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:217(h2) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:240(h2) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:216(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:192(h2) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:192(h2) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:192(h2) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:216(h2) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:217(h2) -#: doc/reference/en/Groonga/Context.html:654(h2) -#: doc/reference/en/Groonga/Schema.html:785(h2) -#: doc/reference/en/Groonga/Expression.html:372(h2) -#: doc/reference/en/Groonga/Snippet.html:202(h2) -#: doc/reference/en/Groonga/TableDumper.html:158(h2) -#: doc/reference/en/Groonga/Hash.html:228(h2) -#: doc/reference/en/Groonga/Array.html:203(h2) -#: doc/reference/en/Groonga/TooSmallPageSize.html:200(h2) -#: doc/reference/en/Groonga/ViewRecord.html:233(h2) -#: doc/reference/en/Groonga/Type.html:419(h2) -#: doc/reference/en/Groonga/Database.html:402(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:260(h2) -#: doc/reference/en/Groonga/SchemaDumper.html:168(h2) -#: doc/reference/en/Groonga/Record.html:924(h2) -#: doc/reference/en/Groonga/View.html:267(h2) -#: doc/reference/en/Groonga/DatabaseDumper.html:167(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:397(h2) -#: doc/reference/en/Groonga/Command/Builder.html:283(h2) -#: doc/reference/en/Groonga/Command/Select.html:168(h2) -#: doc/reference/en/Groonga/Posting.html:375(h2) -#: doc/reference/en/Groonga/QueryLog/Parser.html:158(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:386(h2) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:520(h2) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:278(h2) -#: doc/reference/en/Groonga/Table.html:943(h2) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:515(h2) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:158(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:166(h2) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:310(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:166(h2) -#: doc/reference/en/Groonga/TooSmallPage.html:200(h2) -#: doc/reference/en/Groonga/TooLargePage.html:200(h2) -#: doc/reference/en/Grn/Table.html:885(h2) -msgid "Constructor Details" -msgstr "" +#: doc/reference/en/file.README.html:111(li) +#: doc/reference/en/index.html:111(li) +msgid "Daijiro : sent patches to support the latest groonga." +msgstr "???: ??groonga????????????" -#: doc/reference/en/Groonga/Logger.html:290(p) -#: doc/reference/en/Groonga/Accessor.html:163(p) -#: doc/reference/en/Groonga/EncodingSupport.html:140(p) -#: doc/reference/en/Groonga/Context.html:1119(p) -#: doc/reference/en/Groonga/Context.html:1168(p) -#: doc/reference/en/Groonga/Context.html:1348(p) -#: doc/reference/en/Groonga/Context.html:1412(p) -#: doc/reference/en/Groonga/Context.html:2017(p) -#: doc/reference/en/Groonga/Context.html:2067(p) -#: doc/reference/en/Groonga/Schema.html:3227(p) -#: doc/reference/en/Groonga/Schema.html:3268(p) -#: doc/reference/en/Groonga/Expression.html:375(p) -#: doc/reference/en/Groonga/Expression.html:464(span) -#: doc/reference/en/Groonga/Expression.html:466(span) -#: doc/reference/en/Groonga/Expression.html:486(span) -#: doc/reference/en/Groonga/Expression.html:567(span) -#: doc/reference/en/Groonga/Expression.html:569(span) -#: doc/reference/en/Groonga/Expression.html:589(span) -#: doc/reference/en/Groonga/Expression.html:715(p) -#: doc/reference/en/Groonga/Expression.html:868(p) -#: doc/reference/en/Groonga/TableDumper.html:213(p) -#: doc/reference/en/Groonga/TableCursor.html:298(p) -#: doc/reference/en/Groonga/TableCursor.html:320(p) -#: doc/reference/en/Groonga/TableCursor.html:342(p) -#: doc/reference/en/Groonga/TableCursor.html:461(p) -#: doc/reference/en/Groonga/TableCursor.html:534(p) -#: doc/reference/en/Groonga/TableCursor.html:584(p) -#: doc/reference/en/Groonga/Pagination.html:663(p) -#: doc/reference/en/Groonga/Pagination.html:706(p) -#: doc/reference/en/Groonga/Pagination.html:943(p) -#: doc/reference/en/Groonga/Pagination.html:1030(p) -#: doc/reference/en/Groonga/Pagination.html:1067(p) -#: doc/reference/en/Groonga/Pagination.html:1105(p) -#: doc/reference/en/Groonga/Pagination.html:1144(p) -#: doc/reference/en/Groonga/Pagination.html:1182(p) -#: doc/reference/en/Groonga/Database.html:839(p) -#: doc/reference/en/Groonga/Database.html:894(p) -#: doc/reference/en/Groonga/Database.html:1363(p) -#: doc/reference/en/Groonga/Database.html:1416(p) -#: doc/reference/en/Groonga/Database.html:1470(p) -#: doc/reference/en/Groonga/SchemaDumper.html:215(p) -#: doc/reference/en/Groonga/Object.html:808(p) -#: doc/reference/en/Groonga/Object.html:866(p) -#: doc/reference/en/Groonga/Object.html:1005(p) -#: doc/reference/en/Groonga/Object.html:1065(p) -#: doc/reference/en/Groonga/Object.html:1119(p) -#: doc/reference/en/Groonga/Object.html:1186(p) -#: doc/reference/en/Groonga/Object.html:1247(p) -#: doc/reference/en/Groonga/Object.html:1439(p) -#: doc/reference/en/Groonga/Object.html:1502(p) -#: doc/reference/en/Groonga/Object.html:1557(p) -#: doc/reference/en/Groonga/Record.html:1308(p) -#: doc/reference/en/Groonga/Record.html:1388(p) -#: doc/reference/en/Groonga/Record.html:1463(p) -#: doc/reference/en/Groonga/Record.html:1550(p) -#: doc/reference/en/Groonga/Record.html:1728(p) -#: doc/reference/en/Groonga/Record.html:1909(p) -#: doc/reference/en/Groonga/Record.html:1987(p) -#: doc/reference/en/Groonga/Record.html:2176(p) -#: doc/reference/en/Groonga/Record.html:2549(p) -#: doc/reference/en/Groonga/View.html:679(p) -#: doc/reference/en/Groonga/DatabaseDumper.html:214(p) -#: doc/reference/en/Groonga/Column.html:705(p) -#: doc/reference/en/Groonga/Column.html:1181(p) -#: doc/reference/en/Groonga/Column.html:1500(p) -#: doc/reference/en/Groonga/Column.html:1651(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:1132(p) -#: doc/reference/en/Groonga/IndexCursor.html:179(p) -#: doc/reference/en/Groonga/IndexCursor.html:189(p) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:137(p) -#: doc/reference/en/Groonga/Command/Builder.html:509(p) -#: doc/reference/en/Groonga/Command/Select/Result.html:307(p) -#: doc/reference/en/Groonga/Command/Select/Result.html:363(p) -#: doc/reference/en/Groonga/Command/Select/Result.html:419(p) -#: doc/reference/en/Groonga/Command/Select/Result.html:475(p) -#: doc/reference/en/Groonga/Command/Select/Result.html:633(p) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:222(p) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:278(p) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:334(p) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:394(p) -#: doc/reference/en/Groonga/Command/Select.html:219(p) -#: doc/reference/en/Groonga/Posting.html:437(p) -#: doc/reference/en/Groonga/Posting.html:491(p) -#: doc/reference/en/Groonga/Posting.html:545(p) -#: doc/reference/en/Groonga/Posting.html:599(p) -#: doc/reference/en/Groonga/Posting.html:653(p) -#: doc/reference/en/Groonga/Posting.html:707(p) -#: doc/reference/en/Groonga/Posting.html:761(p) -#: doc/reference/en/Groonga/Posting.html:819(p) -#: doc/reference/en/Groonga/QueryLog/Parser.html:161(p) -#: doc/reference/en/Groonga/QueryLog/Command.html:478(p) -#: doc/reference/en/Groonga/QueryLog/Command.html:714(p) -#: doc/reference/en/Groonga/QueryLog/Command.html:776(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:744(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:784(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:896(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:924(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:998(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1056(p) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:1084(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:290(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:328(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:356(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:384(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:412(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:440(p) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:468(p) -#: doc/reference/en/Groonga/Table.html:946(p) -#: doc/reference/en/Groonga/Table.html:1381(span) -#: doc/reference/en/Groonga/Table.html:1914(p) -#: doc/reference/en/Groonga/Table.html:3495(p) -#: doc/reference/en/Groonga/Table.html:3686(p) -#: doc/reference/en/Groonga/Table.html:3726(p) -#: doc/reference/en/Groonga/Table.html:3773(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:562(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:590(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:618(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:646(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:674(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:702(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:730(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:758(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:786(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:814(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:842(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:870(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:898(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:926(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:954(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:982(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1010(p) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1038(p) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:161(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:270(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:326(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:382(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:438(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:494(p) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:554(p) -#: doc/reference/en/Groonga/Variable.html:183(p) -#: doc/reference/en/Groonga/Table/KeySupport.html:801(p) -#: doc/reference/en/Groonga/Table/KeySupport.html:972(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:1075(p) -#: doc/reference/en/Groonga/Table/KeySupport.html:1223(p) -msgid "" -"- () " -"" -msgstr "" +#: doc/reference/en/file.README.html:112(li) +#: doc/reference/en/index.html:112(li) +msgid "Tasuku : sent bug reports." +msgstr "??????: ???????????????" -#: doc/reference/en/Groonga/Logger.html:307(p) -#: doc/reference/en/Groonga/Logger.html:399(p) -msgid "" -"+ () " -"(#)" -msgstr "" +#: doc/reference/en/file.README.html:113(li) +#: doc/reference/en/index.html:113(li) +msgid "niku: sent bug reports." +msgstr "????: ???????????????" -#: doc/reference/en/Groonga/Logger.html:315(p) -msgid "groonga?????????????????????? ??????" -msgstr "" +#: doc/reference/en/file.README.html:116(li) +#: doc/reference/en/index.html:116(li) +msgid "wrote tests." +msgstr "?????????????" -#: doc/reference/en/Groonga/Logger.html:334(span) -#: doc/reference/en/Groonga/Logger.html:381(span) -#: doc/reference/en/Groonga/Logger.html:426(span) -#: doc/reference/en/Groonga/Logger.html:473(span) -#: doc/reference/en/Groonga/Logger.html:546(span) -#: doc/reference/en/Groonga/Logger.html:598(span) -msgid "# File 'ext/groonga/rb-grn-logger.c'" -msgstr "" +#: doc/reference/en/file.README.html:117(li) +#: doc/reference/en/index.html:117(li) +msgid "fixed bugs." +msgstr "????????????" -#: doc/reference/en/Groonga/Logger.html:334(pre) +#: doc/reference/en/file.README.html:114(li) +#: doc/reference/en/index.html:114(li) msgid "" -" static VALUE rb_grn_logger_s_get_log_path (VALUE klass) " -"{ #ifdef WIN32 rb_raise(rb_eNotImpError, \"grn_log_path isn't available on " -"Windows.\"); return Qnil; #else if (grn_log_path) { return rb_str_new2" -"(grn_log_path); }" +"dara:
    \n" +"\t\t
" msgstr "" +"dara??:
    \n" +"\t\t
" -#: doc/reference/en/Groonga/Logger.html:352(p) -#: doc/reference/en/Groonga/Logger.html:444(p) -msgid "" -"+ () " -"(path)" -msgstr "" +#: doc/reference/en/file.README.html:119(li) +#: doc/reference/en/index.html:119(li) +msgid "id:mat_aki: sent bug reports." +msgstr "id:mat_aki??: ???????????????" -#: doc/reference/en/Groonga/Logger.html:360(p) -msgid "groonga????????????????????????? ?????" -msgstr "" +#: doc/reference/en/file.README.html:120(li) +#: doc/reference/en/index.html:120(li) +msgid "@yune_kotomi: sent a bug report." +msgstr "@yune_kotomi??: ???????????????" -#: doc/reference/en/Groonga/Logger.html:362(p) -#: doc/reference/en/Groonga/Logger.html:454(p) -msgid "" -"Groonga::Logger.register????????????????? ?????????" -"?????????" -msgstr "" +#: doc/reference/en/file.README.html:121(li) +#: doc/reference/en/index.html:121(li) +msgid "m_seki: sent bug reports." +msgstr "???: ???????????????" -#: doc/reference/en/Groonga/Logger.html:381(pre) -msgid "" -" static VALUE rb_grn_logger_s_set_log_path (VALUE klass, " -"VALUE path) { #ifdef WIN32 rb_raise(rb_eNotImpError, \"grn_qlog_path isn't " -"available on Windows.\"); return Qnil; #else return rb_grn_logger_s_set_path" -"(klass, path, &grn_log_path, \"@@log_path\"); #endif }" -msgstr "" +#: doc/reference/en/file.README.html:122(li) +#: doc/reference/en/index.html:122(li) +msgid "ono matope: sent bug reports." +msgstr "???????: ???????????????" -#: doc/reference/en/Groonga/Logger.html:407(p) -msgid "groonga????????????????????????? ??????" -msgstr "" +#: doc/reference/en/file.README.html:123(li) +#: doc/reference/en/index.html:123(li) +msgid "@kamipo: send a bug report." +msgstr "@kamipo??: ???????????????" -#: doc/reference/en/Groonga/Logger.html:426(pre) -msgid "" -" static VALUE rb_grn_logger_s_get_query_log_path (VALUE " -"klass) { #ifdef WIN32 rb_raise(rb_eNotImpError, \"grn_qlog_path isn't " -"available on Windows.\"); return Qnil; #else if (grn_qlog_path) { return " -"rb_str_new2(grn_qlog_path); }" -msgstr "" +#: doc/reference/en/file.README.html:124(li) +#: doc/reference/en/index.html:124(li) +msgid "ongaeshi: sent a patch to build gem on Windows." +msgstr "ongaeshi??: Windows??gem???????????????????" -#: doc/reference/en/Groonga/Logger.html:452(p) -msgid "" -"groonga????????????????????????? ????????" +#: doc/reference/en/file.README.html:125(li) +#: doc/reference/en/index.html:125(li) +msgid "mallowlabs: send a patch." msgstr "" -#: doc/reference/en/Groonga/Logger.html:473(pre) -msgid "" -" static VALUE rb_grn_logger_s_set_query_log_path (VALUE " -"klass, VALUE path) { #ifdef WIN32 rb_raise(rb_eNotImpError, \"grn_qlog_path " -"isn't available on Windows.\"); return Qnil; #else return " -"rb_grn_logger_s_set_path(klass, path, &grn_qlog_path, \"@@query_log_path" -"\"); #endif }" +#: doc/reference/en/Groonga.html:6(title) +msgid "Module: Groonga — rroonga" msgstr "" -#: doc/reference/en/Groonga/Logger.html:492(p) -#: doc/reference/en/Groonga/Schema.html:1861(p) -#: doc/reference/en/Groonga/Hash.html:243(span) -#: doc/reference/en/Groonga/Hash.html:311(span) -#: doc/reference/en/Groonga/Array.html:218(span) -#: doc/reference/en/Groonga/Array.html:259(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:275(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:346(span) -#: doc/reference/en/Groonga/View.html:282(span) -#: doc/reference/en/Groonga/View.html:334(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:412(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:483(span) -msgid "" -"+ () " -"(options = {})" +#: doc/reference/en/Groonga.html:34(a) +#: doc/reference/en/Groonga/GrntestLog.html:34(a) +msgid "Index (G)" msgstr "" -#: doc/reference/en/Groonga/Logger.html:500(p) -msgid "groonga???????????????????????? ??" +#: doc/reference/en/Groonga.html:66(h1) +msgid "Module: Groonga" msgstr "" -#: doc/reference/en/Groonga/Logger.html:502(em) -#: doc/reference/en/Groonga/Logger.html:503(em) -msgid "level" +#: doc/reference/en/Groonga.html:81(dt) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:98(dt) +#: doc/reference/en/Groonga/Logger.html:96(dt) +#: doc/reference/en/Groonga/TooManyLinks.html:96(dt) +#: doc/reference/en/Groonga/OperationNotPermitted.html:96(dt) +#: doc/reference/en/Groonga/BadFileDescriptor.html:96(dt) +#: doc/reference/en/Groonga/Accessor.html:98(dt) +#: doc/reference/en/Groonga/FileExists.html:96(dt) +#: doc/reference/en/Groonga/EncodingSupport.html:81(dt) +#: doc/reference/en/Groonga/Schema/Error.html:98(dt) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:96(dt) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:100(dt) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:100(dt) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:100(dt) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:100(dt) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:100(dt) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:100(dt) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:100(dt) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:100(dt) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:100(dt) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:100(dt) +#: doc/reference/en/Groonga/BrokenPipe.html:96(dt) +#: doc/reference/en/Groonga/Context.html:96(dt) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:96(dt) +#: doc/reference/en/Groonga/Schema.html:96(dt) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:96(dt) +#: doc/reference/en/Groonga/ResultTooLarge.html:96(dt) +#: doc/reference/en/Groonga/DomainError.html:96(dt) +#: doc/reference/en/Groonga/UnknownError.html:96(dt) +#: doc/reference/en/Groonga/Expression.html:98(dt) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:96(dt) +#: doc/reference/en/Groonga/Error.html:96(dt) +#: doc/reference/en/Groonga/EndOfData.html:96(dt) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:96(dt) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:96(dt) +#: doc/reference/en/Groonga/InvalidSeek.html:96(dt) +#: doc/reference/en/Groonga/ViewCursor.html:98(dt) +#: doc/reference/en/Groonga/ObjectClosed.html:96(dt) +#: doc/reference/en/Groonga/Snippet.html:96(dt) +#: doc/reference/en/Groonga/ImproperLink.html:96(dt) +#: doc/reference/en/Groonga/TableDumper.html:96(dt) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:96(dt) +#: doc/reference/en/Groonga/TooSmallLimit.html:96(dt) +#: doc/reference/en/Groonga/VariableSizeColumn.html:100(dt) +#: doc/reference/en/Groonga/NoSuchColumn.html:96(dt) +#: doc/reference/en/Groonga/Hash.html:100(dt) +#: doc/reference/en/Groonga/Array.html:100(dt) +#: doc/reference/en/Groonga/Encoding.html:81(dt) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:96(dt) +#: doc/reference/en/Groonga/ConnectionRefused.html:96(dt) +#: doc/reference/en/Groonga/OperationWouldBlock.html:96(dt) +#: doc/reference/en/Groonga/FixSizeColumn.html:100(dt) +#: doc/reference/en/Groonga/TooSmallPageSize.html:98(dt) +#: doc/reference/en/Groonga/TableCursor.html:96(dt) +#: doc/reference/en/Groonga/Procedure.html:91(dt) +#: doc/reference/en/Groonga/CASError.html:96(dt) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:96(dt) +#: doc/reference/en/Groonga/Operator.html:74(dt) +#: doc/reference/en/Groonga/Pagination.html:81(dt) +#: doc/reference/en/Groonga/InputOutputError.html:96(dt) +#: doc/reference/en/Groonga/ViewRecord.html:96(dt) +#: doc/reference/en/Groonga/Type.html:96(dt) +#: doc/reference/en/Groonga/OperationTimeout.html:96(dt) +#: doc/reference/en/Groonga/Database.html:96(dt) +#: doc/reference/en/Groonga/InvalidArgument.html:96(dt) +#: doc/reference/en/Groonga/Command.html:81(dt) +#: doc/reference/en/Groonga/SyntaxError.html:96(dt) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:100(dt) +#: doc/reference/en/Groonga/StackOverFlow.html:96(dt) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:96(dt) +#: doc/reference/en/Groonga/SchemaDumper.html:96(dt) +#: doc/reference/en/Groonga/Object.html:96(dt) +#: doc/reference/en/Groonga/NoSuchProcess.html:96(dt) +#: doc/reference/en/Groonga/HashCursor.html:98(dt) +#: doc/reference/en/Groonga/TooSmallOffset.html:96(dt) +#: doc/reference/en/Groonga/NoLocksAvailable.html:96(dt) +#: doc/reference/en/Groonga/RangeError.html:96(dt) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:96(dt) +#: doc/reference/en/Groonga/FileCorrupt.html:96(dt) +#: doc/reference/en/Groonga/Record.html:96(dt) +#: doc/reference/en/Groonga/BadAddress.html:96(dt) +#: doc/reference/en/Groonga/ExecFormatError.html:96(dt) +#: doc/reference/en/Groonga/View.html:100(dt) +#: doc/reference/en/Groonga/FilenameTooLong.html:96(dt) +#: doc/reference/en/Groonga/DatabaseDumper.html:96(dt) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:95(dt) +#: doc/reference/en/Groonga/ZLibError.html:96(dt) +#: doc/reference/en/Groonga/TooLargeOffset.html:96(dt) +#: doc/reference/en/Groonga/NotSocket.html:96(dt) +#: doc/reference/en/Groonga/QueryLog.html:81(dt) +#: doc/reference/en/Groonga/TokenizerError.html:96(dt) +#: doc/reference/en/Groonga/NoSuchDevice.html:96(dt) +#: doc/reference/en/Groonga/Column.html:98(dt) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:96(dt) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:96(dt) +#: doc/reference/en/Groonga/NotADirectory.html:96(dt) +#: doc/reference/en/Groonga/Closed.html:96(dt) +#: doc/reference/en/Groonga/ResourceBusy.html:96(dt) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:96(dt) +#: doc/reference/en/Groonga/PatriciaTrie.html:100(dt) +#: doc/reference/en/Groonga/ObjectCorrupt.html:96(dt) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:96(dt) +#: doc/reference/en/Groonga/PermissionDenied.html:96(dt) +#: doc/reference/en/Groonga/IndexCursor.html:95(dt) +#: doc/reference/en/Groonga/OperationNotSupported.html:96(dt) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:96(dt) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:81(dt) +#: doc/reference/en/Groonga/InvalidFormat.html:96(dt) +#: doc/reference/en/Groonga/Command/Builder.html:96(dt) +#: doc/reference/en/Groonga/Command/Select/Result.html:98(dt) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:98(dt) +#: doc/reference/en/Groonga/Command/Select.html:96(dt) +#: doc/reference/en/Groonga/Posting.html:96(dt) +#: doc/reference/en/Groonga/RetryMax.html:96(dt) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:96(dt) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:96(dt) +#: doc/reference/en/Groonga/NetworkIsDown.html:96(dt) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:96(dt) +#: doc/reference/en/Groonga/AddressIsInUse.html:96(dt) +#: doc/reference/en/Groonga/NoBuffer.html:96(dt) +#: doc/reference/en/Groonga/IndexColumn.html:100(dt) +#: doc/reference/en/Groonga/QueryLog/Parser.html:96(dt) +#: doc/reference/en/Groonga/QueryLog/Command.html:96(dt) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:96(dt) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:98(dt) +#: doc/reference/en/Groonga/Table.html:98(dt) +#: doc/reference/en/Groonga/SocketNotInitialized.html:96(dt) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:96(dt) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:96(dt) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:96(dt) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:96(dt) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:98(dt) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:96(dt) +#: doc/reference/en/Groonga/TooSmallPage.html:98(dt) +#: doc/reference/en/Groonga/Plugin.html:96(dt) +#: doc/reference/en/Groonga/TooLargePage.html:98(dt) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:96(dt) +#: doc/reference/en/Groonga/Variable.html:98(dt) +#: doc/reference/en/Groonga/GrntestLog.html:81(dt) +#: doc/reference/en/Groonga/IsADirectory.html:96(dt) +#: doc/reference/en/Groonga/IllegalByteSequence.html:96(dt) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:96(dt) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:98(dt) +#: doc/reference/en/Groonga/FileTooLarge.html:96(dt) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:96(dt) +#: doc/reference/en/Groonga/LZOError.html:96(dt) +#: doc/reference/en/Groonga/NotEnoughSpace.html:96(dt) +#: doc/reference/en/Groonga/NoChildProcesses.html:96(dt) +#: doc/reference/en/Groonga/ArrayCursor.html:98(dt) +#: doc/reference/en/Groonga/ViewAccessor.html:98(dt) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:96(dt) +#: doc/reference/en/Groonga/Table/KeySupport.html:81(dt) +#: doc/reference/en/Grn/Table.html:95(dt) +msgid "Defined in:" msgstr "" -#: doc/reference/en/Groonga/Logger.html:502(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:495(strong) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1723(strong) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema.html:123(span) -#: doc/reference/en/Groonga/Schema.html:178(span) -msgid "time" +#: doc/reference/en/Groonga.html:82(span) +msgid "" +",
lib/groonga/schema.rb,
lib/groonga/record.rb,
lib/groonga/" +"dumper.rb,
lib/groonga/context.rb,
lib/groonga/posting.rb,
" +"lib/groonga/command.rb,
lib/groonga/query-log.rb,
ext/groonga/rb-" +"groonga.c,
lib/groonga/pagination.rb,
lib/groonga/view-record.rb," +"
lib/groonga/grntest-log.rb,
lib/groonga/patricia-trie.rb,
" +"lib/groonga/expression-builder.rb,
lib/groonga/expression-builder-19.rb" msgstr "" -#: doc/reference/en/Groonga/Logger.html:502(em) -#: doc/reference/en/Groonga/Schema.html:112(span) -#: doc/reference/en/Groonga/Column.html:724(span) -#: doc/reference/en/Groonga/Column.html:725(span) -#: doc/reference/en/Groonga/Column.html:726(span) -#: doc/reference/en/file.tutorial.html:137(code) -#: doc/reference/en/file.tutorial.html:171(code) -#: doc/reference/en/file.tutorial.html:189(code) -msgid "title" +#: doc/reference/en/Groonga.html:82(dd) +msgid "lib/groonga.rb" msgstr "" -#: doc/reference/en/Groonga/Logger.html:503(em) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:281(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:282(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:283(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:284(span) -msgid "message" +#: doc/reference/en/Groonga.html:89(h2) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:104(h2) +#: doc/reference/en/Groonga/Logger.html:102(h2) +#: doc/reference/en/Groonga/TooManyLinks.html:102(h2) +#: doc/reference/en/Groonga/OperationNotPermitted.html:102(h2) +#: doc/reference/en/Groonga/BadFileDescriptor.html:102(h2) +#: doc/reference/en/Groonga/Accessor.html:104(h2) +#: doc/reference/en/Groonga/FileExists.html:102(h2) +#: doc/reference/en/Groonga/EncodingSupport.html:87(h2) +#: doc/reference/en/Groonga/Schema/Error.html:104(h2) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:102(h2) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:106(h2) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:106(h2) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:106(h2) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:106(h2) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:106(h2) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:106(h2) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:106(h2) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:106(h2) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:106(h2) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:106(h2) +#: doc/reference/en/Groonga/BrokenPipe.html:102(h2) +#: doc/reference/en/Groonga/Context.html:102(h2) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:102(h2) +#: doc/reference/en/Groonga/Schema.html:102(h2) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:102(h2) +#: doc/reference/en/Groonga/ResultTooLarge.html:102(h2) +#: doc/reference/en/Groonga/DomainError.html:102(h2) +#: doc/reference/en/Groonga/UnknownError.html:102(h2) +#: doc/reference/en/Groonga/Expression.html:104(h2) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:102(h2) +#: doc/reference/en/Groonga/Error.html:102(h2) +#: doc/reference/en/Groonga/EndOfData.html:102(h2) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:102(h2) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:102(h2) +#: doc/reference/en/Groonga/InvalidSeek.html:102(h2) +#: doc/reference/en/Groonga/ViewCursor.html:104(h2) +#: doc/reference/en/Groonga/ObjectClosed.html:102(h2) +#: doc/reference/en/Groonga/Snippet.html:102(h2) +#: doc/reference/en/Groonga/ImproperLink.html:102(h2) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:102(h2) +#: doc/reference/en/Groonga/TooSmallLimit.html:102(h2) +#: doc/reference/en/Groonga/VariableSizeColumn.html:106(h2) +#: doc/reference/en/Groonga/NoSuchColumn.html:102(h2) +#: doc/reference/en/Groonga/Hash.html:106(h2) +#: doc/reference/en/Groonga/Array.html:106(h2) +#: doc/reference/en/Groonga/Encoding.html:87(h2) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:102(h2) +#: doc/reference/en/Groonga/ConnectionRefused.html:102(h2) +#: doc/reference/en/Groonga/OperationWouldBlock.html:102(h2) +#: doc/reference/en/Groonga/FixSizeColumn.html:106(h2) +#: doc/reference/en/Groonga/TableCursor.html:102(h2) +#: doc/reference/en/Groonga/CASError.html:102(h2) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:102(h2) +#: doc/reference/en/Groonga/Pagination.html:87(h2) +#: doc/reference/en/Groonga/InputOutputError.html:102(h2) +#: doc/reference/en/Groonga/Type.html:102(h2) +#: doc/reference/en/Groonga/OperationTimeout.html:102(h2) +#: doc/reference/en/Groonga/Database.html:102(h2) +#: doc/reference/en/Groonga/InvalidArgument.html:102(h2) +#: doc/reference/en/Groonga/SyntaxError.html:102(h2) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:106(h2) +#: doc/reference/en/Groonga/StackOverFlow.html:102(h2) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:102(h2) +#: doc/reference/en/Groonga/SchemaDumper.html:102(h2) +#: doc/reference/en/Groonga/Object.html:102(h2) +#: doc/reference/en/Groonga/NoSuchProcess.html:102(h2) +#: doc/reference/en/Groonga/HashCursor.html:104(h2) +#: doc/reference/en/Groonga/TooSmallOffset.html:102(h2) +#: doc/reference/en/Groonga/NoLocksAvailable.html:102(h2) +#: doc/reference/en/Groonga/RangeError.html:102(h2) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:102(h2) +#: doc/reference/en/Groonga/FileCorrupt.html:102(h2) +#: doc/reference/en/Groonga/BadAddress.html:102(h2) +#: doc/reference/en/Groonga/ExecFormatError.html:102(h2) +#: doc/reference/en/Groonga/View.html:106(h2) +#: doc/reference/en/Groonga/FilenameTooLong.html:102(h2) +#: doc/reference/en/Groonga/DatabaseDumper.html:102(h2) +#: doc/reference/en/Groonga/ZLibError.html:102(h2) +#: doc/reference/en/Groonga/TooLargeOffset.html:102(h2) +#: doc/reference/en/Groonga/NotSocket.html:102(h2) +#: doc/reference/en/Groonga/TokenizerError.html:102(h2) +#: doc/reference/en/Groonga/NoSuchDevice.html:102(h2) +#: doc/reference/en/Groonga/Column.html:104(h2) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:102(h2) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:102(h2) +#: doc/reference/en/Groonga/NotADirectory.html:102(h2) +#: doc/reference/en/Groonga/Closed.html:102(h2) +#: doc/reference/en/Groonga/ResourceBusy.html:102(h2) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:102(h2) +#: doc/reference/en/Groonga/PatriciaTrie.html:106(h2) +#: doc/reference/en/Groonga/ObjectCorrupt.html:102(h2) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:102(h2) +#: doc/reference/en/Groonga/PermissionDenied.html:102(h2) +#: doc/reference/en/Groonga/OperationNotSupported.html:102(h2) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:102(h2) +#: doc/reference/en/Groonga/TableCursor/KeySupport.html:87(h2) +#: doc/reference/en/Groonga/InvalidFormat.html:102(h2) +#: doc/reference/en/Groonga/Posting.html:102(h2) +#: doc/reference/en/Groonga/RetryMax.html:102(h2) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:102(h2) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:102(h2) +#: doc/reference/en/Groonga/NetworkIsDown.html:102(h2) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:102(h2) +#: doc/reference/en/Groonga/AddressIsInUse.html:102(h2) +#: doc/reference/en/Groonga/NoBuffer.html:102(h2) +#: doc/reference/en/Groonga/IndexColumn.html:106(h2) +#: doc/reference/en/Groonga/Table.html:104(h2) +#: doc/reference/en/Groonga/SocketNotInitialized.html:102(h2) +#: doc/reference/en/Groonga/Plugin.html:102(h2) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:102(h2) +#: doc/reference/en/Groonga/Variable.html:104(h2) +#: doc/reference/en/Groonga/IsADirectory.html:102(h2) +#: doc/reference/en/Groonga/IllegalByteSequence.html:102(h2) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:102(h2) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:104(h2) +#: doc/reference/en/Groonga/FileTooLarge.html:102(h2) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:102(h2) +#: doc/reference/en/Groonga/LZOError.html:102(h2) +#: doc/reference/en/Groonga/NotEnoughSpace.html:102(h2) +#: doc/reference/en/Groonga/NoChildProcesses.html:102(h2) +#: doc/reference/en/Groonga/ArrayCursor.html:104(h2) +#: doc/reference/en/Groonga/ViewAccessor.html:104(h2) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:102(h2) +#: doc/reference/en/Groonga/Table/KeySupport.html:87(h2) +msgid "Overview" msgstr "" -#: doc/reference/en/Groonga/Logger.html:503(em) -msgid "location" +#: doc/reference/en/Groonga.html:91(p) +msgid "Copyright ? 2011 Kouhei Sutou <kou at clear-code.com>" msgstr "" -#: doc/reference/en/Groonga/Logger.html:504(em) -#: doc/reference/en/Groonga/Logger.html:507(em) -#: doc/reference/en/Groonga/Logger.html:519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:746(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:767(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:768(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:818(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:908(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:911(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:915(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:934(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:956(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:989(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1037(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1043(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1048(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1093(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1130(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1131(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1152(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1173(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1174(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1195(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1216(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1217(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1261(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1298(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1299(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1317(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1338(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1339(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1359(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1381(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1383(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1400(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1426(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1429(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1432(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1465(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1516(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1519(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1527(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1530(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1557(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1582(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1621(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1625(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1628(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1651(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1672(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1673(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1691(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1712(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1713(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1731(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1752(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1753(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1792(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1793(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1794(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1835(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1872(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1873(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1917(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1954(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1976(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1997(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1998(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2019(em) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2040(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2041(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2085(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2122(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2123(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2168(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2205(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2206(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:121(strong) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:253(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:273(strong) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:299(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:144(strong) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:277(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:278(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:342(strong) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:368(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:145(strong) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:251(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:253(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:313(strong) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:339(span) -#: doc/reference/en/Groonga/Context.html:310(em) -#: doc/reference/en/Groonga/Context.html:420(em) -#: doc/reference/en/Groonga/Context.html:665(em) -#: doc/reference/en/Groonga/Context.html:678(span) -#: doc/reference/en/Groonga/Context.html:1219(em) -#: doc/reference/en/Groonga/Context.html:1232(span) -#: doc/reference/en/Groonga/Context.html:1335(span) -#: doc/reference/en/Groonga/Context.html:1337(span) -#: doc/reference/en/Groonga/Context.html:1340(span) -#: doc/reference/en/Groonga/Context.html:1737(span) -#: doc/reference/en/Groonga/Context.html:1739(span) -#: doc/reference/en/Groonga/Context.html:1858(span) -#: doc/reference/en/Groonga/Context.html:1861(span) -#: doc/reference/en/Groonga/Context.html:1863(span) -#: doc/reference/en/Groonga/Context.html:1883(em) -#: doc/reference/en/Groonga/Context.html:1893(span) -#: doc/reference/en/Groonga/Context.html:1915(tt) -#: doc/reference/en/Groonga/Context.html:1956(span) -#: doc/reference/en/Groonga/Context.html:1957(span) -#: doc/reference/en/Groonga/Schema.html:806(span) -#: doc/reference/en/Groonga/Schema.html:826(tt) -#: doc/reference/en/Groonga/Schema.html:861(span) -#: doc/reference/en/Groonga/Schema.html:862(span) -#: doc/reference/en/Groonga/Schema.html:890(span) -#: doc/reference/en/Groonga/Schema.html:907(span) -#: doc/reference/en/Groonga/Schema.html:929(tt) -#: doc/reference/en/Groonga/Schema.html:966(span) -#: doc/reference/en/Groonga/Schema.html:968(span) -#: doc/reference/en/Groonga/Schema.html:988(span) -#: doc/reference/en/Groonga/Schema.html:1005(span) -#: doc/reference/en/Groonga/Schema.html:1027(tt) -#: doc/reference/en/Groonga/Schema.html:1064(span) -#: doc/reference/en/Groonga/Schema.html:1066(span) -#: doc/reference/en/Groonga/Schema.html:1092(em) -#: doc/reference/en/Groonga/Schema.html:1103(span) -#: doc/reference/en/Groonga/Schema.html:1128(span) -#: doc/reference/en/Groonga/Schema.html:1148(tt) -#: doc/reference/en/Groonga/Schema.html:1266(span) -#: doc/reference/en/Groonga/Schema.html:1286(tt) -#: doc/reference/en/Groonga/Schema.html:1449(span) -#: doc/reference/en/Groonga/Schema.html:1469(tt) -#: doc/reference/en/Groonga/Schema.html:1611(span) -#: doc/reference/en/Groonga/Schema.html:1613(span) -#: doc/reference/en/Groonga/Schema.html:1633(span) -#: doc/reference/en/Groonga/Schema.html:1650(span) -#: doc/reference/en/Groonga/Schema.html:1672(tt) -#: doc/reference/en/Groonga/Schema.html:1746(span) -#: doc/reference/en/Groonga/Schema.html:1748(span) -#: doc/reference/en/Groonga/Schema.html:1769(span) -#: doc/reference/en/Groonga/Schema.html:1782(span) -#: doc/reference/en/Groonga/Schema.html:1802(tt) -#: doc/reference/en/Groonga/Schema.html:1850(span) -#: doc/reference/en/Groonga/Schema.html:1851(span) -#: doc/reference/en/Groonga/Schema.html:1906(span) -#: doc/reference/en/Groonga/Schema.html:1926(tt) -#: doc/reference/en/Groonga/Schema.html:1975(span) -#: doc/reference/en/Groonga/Schema.html:1976(span) -#: doc/reference/en/Groonga/Schema.html:1977(span) -#: doc/reference/en/Groonga/Schema.html:2050(span) -#: doc/reference/en/Groonga/Schema.html:2072(tt) -#: doc/reference/en/Groonga/Schema.html:2106(span) -#: doc/reference/en/Groonga/Schema.html:2108(span) -#: doc/reference/en/Groonga/Schema.html:2135(span) -#: doc/reference/en/Groonga/Schema.html:2157(tt) -#: doc/reference/en/Groonga/Schema.html:2192(span) -#: doc/reference/en/Groonga/Schema.html:2194(span) -#: doc/reference/en/Groonga/Schema.html:2262(span) -#: doc/reference/en/Groonga/Schema.html:2286(span) -#: doc/reference/en/Groonga/Schema.html:2288(span) -#: doc/reference/en/Groonga/Schema.html:2327(span) -#: doc/reference/en/Groonga/Schema.html:2328(span) -#: doc/reference/en/Groonga/Schema.html:2364(span) -#: doc/reference/en/Groonga/Schema.html:2386(tt) -#: doc/reference/en/Groonga/Schema.html:2435(span) -#: doc/reference/en/Groonga/Schema.html:2436(span) -#: doc/reference/en/Groonga/Schema.html:2437(span) -#: doc/reference/en/Groonga/Schema.html:2467(span) -#: doc/reference/en/Groonga/Schema.html:2489(tt) -#: doc/reference/en/Groonga/Schema.html:2538(span) -#: doc/reference/en/Groonga/Schema.html:2539(span) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:2590(span) -#: doc/reference/en/Groonga/Schema.html:2610(tt) -#: doc/reference/en/Groonga/Schema.html:2724(span) -#: doc/reference/en/Groonga/Schema.html:2744(tt) -#: doc/reference/en/Groonga/Schema.html:2895(span) -#: doc/reference/en/Groonga/Schema.html:2915(tt) -#: doc/reference/en/Groonga/Schema.html:3077(span) -#: doc/reference/en/Groonga/Schema.html:3078(span) -#: doc/reference/en/Groonga/Schema.html:3108(span) -#: doc/reference/en/Groonga/Schema.html:3130(tt) -#: doc/reference/en/Groonga/Schema.html:3216(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/Groonga/Schema.html:3376(span) -#: doc/reference/en/Groonga/Schema.html:3398(tt) -#: doc/reference/en/Groonga/Schema.html:3432(span) -#: doc/reference/en/Groonga/Schema.html:3433(span) -#: doc/reference/en/Groonga/Schema.html:3462(span) -#: doc/reference/en/Groonga/Schema.html:3484(tt) -#: doc/reference/en/Groonga/Schema.html:3518(span) -#: doc/reference/en/Groonga/Schema.html:3519(span) -#: doc/reference/en/Groonga/Schema.html:3594(span) -#: doc/reference/en/Groonga/Schema.html:3618(tt) -#: doc/reference/en/Groonga/Schema.html:3652(span) -#: doc/reference/en/Groonga/Schema.html:3653(span) -#: doc/reference/en/Groonga/Schema.html:3654(span) -#: doc/reference/en/Groonga/Expression.html:775(em) -#: doc/reference/en/Groonga/Expression.html:809(span) -#: doc/reference/en/Groonga/Expression.html:1010(em) -#: doc/reference/en/Groonga/Expression.html:1022(span) -#: doc/reference/en/Groonga/Expression.html:1122(em) -#: doc/reference/en/Groonga/Expression.html:1156(span) -#: doc/reference/en/Groonga/Snippet.html:137(em) -#: doc/reference/en/Groonga/Snippet.html:182(em) -#: doc/reference/en/Groonga/Snippet.html:213(em) -#: doc/reference/en/Groonga/Snippet.html:226(span) -#: doc/reference/en/Groonga/Snippet.html:324(em) -#: doc/reference/en/Groonga/Snippet.html:337(span) -#: doc/reference/en/Groonga/TableDumper.html:193(span) -#: doc/reference/en/Groonga/TableDumper.html:195(span) -#: doc/reference/en/Groonga/Hash.html:255(em) -#: doc/reference/en/Groonga/Hash.html:374(span) -#: doc/reference/en/Groonga/Hash.html:460(em) -#: doc/reference/en/Groonga/Hash.html:463(em) -#: doc/reference/en/Groonga/Hash.html:513(span) -#: doc/reference/en/Groonga/Array.html:322(span) -#: doc/reference/en/Groonga/Type.html:399(em) -#: doc/reference/en/Groonga/Type.html:430(em) -#: doc/reference/en/Groonga/Type.html:443(span) -#: doc/reference/en/Groonga/Database.html:420(em) -#: doc/reference/en/Groonga/Database.html:492(span) -#: doc/reference/en/Groonga/Database.html:573(em) -#: doc/reference/en/Groonga/Database.html:714(em) -#: doc/reference/en/Groonga/Database.html:786(span) -#: doc/reference/en/Groonga/Database.html:1149(span) -#: doc/reference/en/Groonga/Database.html:1279(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:287(em) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:409(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:501(em) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:575(span) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:637(em) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:640(em) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:686(span) -#: doc/reference/en/Groonga/SchemaDumper.html:199(span) -#: doc/reference/en/Groonga/SchemaDumper.html:200(span) -#: doc/reference/en/Groonga/Record.html:743(em) -#: doc/reference/en/Groonga/Record.html:1379(span) -#: doc/reference/en/Groonga/Record.html:1380(span) -#: doc/reference/en/Groonga/Record.html:1796(span) -#: doc/reference/en/Groonga/Record.html:1816(tt) -#: doc/reference/en/Groonga/Record.html:1849(span) -#: doc/reference/en/Groonga/Record.html:1850(span) -#: doc/reference/en/Groonga/Record.html:1900(span) -#: doc/reference/en/Groonga/Record.html:1901(span) -#: doc/reference/en/Groonga/Record.html:2278(em) -#: doc/reference/en/Groonga/Record.html:2299(span) -#: doc/reference/en/Groonga/Record.html:2300(span) -#: doc/reference/en/Groonga/Record.html:2490(span) -#: doc/reference/en/Groonga/Record.html:2491(span) -#: doc/reference/en/Groonga/View.html:297(em) -#: doc/reference/en/Groonga/View.html:397(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:198(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:199(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:253(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:255(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:256(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:257(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:258(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:260(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:261(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:262(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:264(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:265(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:266(span) -#: doc/reference/en/Groonga/DatabaseDumper.html:271(span) -#: doc/reference/en/Groonga/Column.html:1328(em) -#: doc/reference/en/Groonga/Column.html:1440(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:424(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:546(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:638(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:712(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:778(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:852(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:921(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:995(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1370(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:1373(em) -#: doc/reference/en/Groonga/PatriciaTrie.html:1419(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1536(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1558(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:1615(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1616(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1617(span) -#: doc/reference/en/Groonga/Command/Select.html:201(span) -#: doc/reference/en/Groonga/Command/Select.html:204(span) -#: doc/reference/en/Groonga/Table.html:1057(span) -#: doc/reference/en/Groonga/Table.html:1390(em) -#: doc/reference/en/Groonga/Table.html:1400(span) -#: doc/reference/en/Groonga/Table.html:1415(span) -#: doc/reference/en/Groonga/Table.html:1499(em) -#: doc/reference/en/Groonga/Table.html:1533(span) -#: doc/reference/en/Groonga/Table.html:2381(span) -#: doc/reference/en/Groonga/Table.html:2498(span) -#: doc/reference/en/Groonga/Table.html:2501(tt) -#: doc/reference/en/Groonga/Table.html:2726(span) -#: doc/reference/en/Groonga/Table.html:2807(em) -#: doc/reference/en/Groonga/Table.html:2817(span) -#: doc/reference/en/Groonga/Table.html:2839(tt) -#: doc/reference/en/Groonga/Table.html:2905(span) -#: doc/reference/en/Groonga/Table.html:2907(span) -#: doc/reference/en/Groonga/Table.html:2914(span) -#: doc/reference/en/Groonga/Table.html:3183(em) -#: doc/reference/en/Groonga/Table.html:3295(span) -#: doc/reference/en/Groonga/Table.html:3615(span) -#: doc/reference/en/Groonga/Plugin.html:209(em) -#: doc/reference/en/Groonga/Plugin.html:220(span) -#: doc/reference/en/Grn/Table.html:999(span) -#: doc/reference/en/Grn/Table.html:1332(em) -#: doc/reference/en/Grn/Table.html:1342(span) -#: doc/reference/en/Grn/Table.html:1357(span) -#: doc/reference/en/Grn/Table.html:1441(em) -#: doc/reference/en/Grn/Table.html:1475(span) -#: doc/reference/en/Grn/Table.html:2323(span) -#: doc/reference/en/Grn/Table.html:2440(span) -#: doc/reference/en/Grn/Table.html:2443(tt) -#: doc/reference/en/Grn/Table.html:2668(span) -#: doc/reference/en/Grn/Table.html:2968(em) -#: doc/reference/en/Grn/Table.html:3080(span) -#: doc/reference/en/Grn/Table.html:3403(span) -msgid "options" +#: doc/reference/en/Groonga.html:93(span) +#: doc/reference/en/Groonga.html:97(span) +#: doc/reference/en/Groonga.html:99(span) +msgid "GNU" msgstr "" -#: doc/reference/en/Groonga/Logger.html:504(ins) -#: doc/reference/en/Groonga/Context.html:623(ins) -#: doc/reference/en/Groonga/Context.html:645(ins) -#: doc/reference/en/Groonga/Context.html:2026(ins) -#: doc/reference/en/Groonga/Context.html:2076(ins) -#: doc/reference/en/Groonga/TableCursor.html:177(ins) -#: doc/reference/en/Groonga/TableCursor.html:329(ins) -#: doc/reference/en/Groonga/ViewRecord.html:180(ins) -#: doc/reference/en/Groonga/ViewRecord.html:416(ins) -#: doc/reference/en/Groonga/Object.html:142(ins) -#: doc/reference/en/Groonga/Object.html:271(ins) -#: doc/reference/en/Groonga/Object.html:402(ins) -#: doc/reference/en/Groonga/Object.html:492(ins) -#: doc/reference/en/Groonga/Object.html:537(ins) -#: doc/reference/en/Groonga/Object.html:875(ins) -#: doc/reference/en/Groonga/Object.html:1256(ins) -#: doc/reference/en/Groonga/Object.html:1511(ins) -#: doc/reference/en/Groonga/Record.html:157(ins) -#: doc/reference/en/Groonga/Record.html:766(ins) -#: doc/reference/en/Groonga/Record.html:971(span) -#: doc/reference/en/Groonga/Record.html:1033(span) -#: doc/reference/en/Groonga/Record.html:1114(ins) -#: doc/reference/en/Groonga/Record.html:2317(ins) -#: doc/reference/en/Groonga/Column.html:181(ins) -#: doc/reference/en/Groonga/Column.html:290(ins) -#: doc/reference/en/Groonga/Column.html:333(ins) -#: doc/reference/en/Groonga/Column.html:423(ins) -#: doc/reference/en/Groonga/Column.html:542(ins) -#: doc/reference/en/Groonga/Column.html:1006(ins) -#: doc/reference/en/Groonga/Column.html:1190(ins) -#: doc/reference/en/Groonga/Column.html:1660(ins) -#: doc/reference/en/Groonga/PatriciaTrie.html:276(ins) -#: doc/reference/en/Groonga/PatriciaTrie.html:1141(ins) -#: doc/reference/en/Groonga/Table.html:417(ins) -#: doc/reference/en/Groonga/Table.html:815(ins) -#: doc/reference/en/Groonga/Table.html:837(ins) -#: doc/reference/en/Groonga/Table.html:1971(ins) -#: doc/reference/en/Groonga/Table.html:3695(ins) -#: doc/reference/en/Groonga/Table.html:3735(ins) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:255(span) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:264(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:341(ins) -#: doc/reference/en/Groonga/Table/KeySupport.html:407(ins) -#: doc/reference/en/Groonga/Table/KeySupport.html:1083(ins) -#: doc/reference/en/Groonga/Table/KeySupport.html:1231(ins) -#: doc/reference/en/Grn/Table.html:390(ins) -#: doc/reference/en/Grn/Table.html:766(ins) -#: doc/reference/en/Grn/Table.html:788(ins) -#: doc/reference/en/Grn/Table.html:1913(ins) -#: doc/reference/en/Grn/Table.html:3483(ins) -#: doc/reference/en/Grn/Table.html:3523(ins) -msgid "false" +#: doc/reference/en/Groonga.html:92(p) +msgid "" +"This library is free software; you can redistribute it and/or modify it " +"under the terms of the Lesser General Public License " +"version 2.1 as published by the Free Software Foundation." msgstr "" -#: doc/reference/en/Groonga/Logger.html:502(p) -msgid "" -"?????????????? , , " -" , , ?5??? " -" ?Symbol?????? ?????????????4?????" -"? ? ??????????????????" -"?????????? ???????????????????" -msgstr "" - -#: doc/reference/en/Groonga/Logger.html:507(p) -#: doc/reference/en/Groonga/Schema.html:1092(p) -#: doc/reference/en/Groonga/Expression.html:775(p) -#: doc/reference/en/Groonga/Expression.html:1010(p) -#: doc/reference/en/Groonga/Expression.html:1122(p) -#: doc/reference/en/Groonga/Hash.html:255(p) -#: doc/reference/en/Groonga/Hash.html:463(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:287(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:501(p) -#: doc/reference/en/Groonga/View.html:297(p) -#: doc/reference/en/Groonga/Column.html:1328(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:424(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:638(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:778(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:921(p) -#: doc/reference/en/Groonga/Table.html:1390(p) -#: doc/reference/en/Groonga/Table.html:1499(p) -#: doc/reference/en/Groonga/Table.html:2807(p) -#: doc/reference/en/Groonga/Table.html:3183(p) -#: doc/reference/en/Grn/Table.html:1332(p) -#: doc/reference/en/Grn/Table.html:1441(p) -#: doc/reference/en/Grn/Table.html:2968(p) -msgid " ??????????????" +#: doc/reference/en/Groonga.html:96(span) +msgid "WITHOUT" msgstr "" -#: doc/reference/en/Groonga/Logger.html:514(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:789(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:984(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1074(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1242(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1460(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1552(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1816(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1898(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2066(h3) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:2149(h3) -#: doc/reference/en/Groonga/Context.html:673(h3) -#: doc/reference/en/Groonga/Context.html:1227(h3) -#: doc/reference/en/Groonga/Context.html:1888(h3) -#: doc/reference/en/Groonga/Schema.html:801(h3) -#: doc/reference/en/Groonga/Schema.html:902(h3) -#: doc/reference/en/Groonga/Schema.html:1000(h3) -#: doc/reference/en/Groonga/Schema.html:1123(h3) -#: doc/reference/en/Groonga/Schema.html:1261(h3) -#: doc/reference/en/Groonga/Schema.html:1444(h3) -#: doc/reference/en/Groonga/Schema.html:1645(h3) -#: doc/reference/en/Groonga/Schema.html:1777(h3) -#: doc/reference/en/Groonga/Schema.html:1901(h3) -#: doc/reference/en/Groonga/Schema.html:2045(h3) -#: doc/reference/en/Groonga/Schema.html:2130(h3) -#: doc/reference/en/Groonga/Schema.html:2359(h3) -#: doc/reference/en/Groonga/Schema.html:2462(h3) -#: doc/reference/en/Groonga/Schema.html:2585(h3) -#: doc/reference/en/Groonga/Schema.html:2719(h3) -#: doc/reference/en/Groonga/Schema.html:2890(h3) -#: doc/reference/en/Groonga/Schema.html:3103(h3) -#: doc/reference/en/Groonga/Schema.html:3371(h3) -#: doc/reference/en/Groonga/Schema.html:3457(h3) -#: doc/reference/en/Groonga/Schema.html:3589(h3) -#: doc/reference/en/Groonga/Expression.html:804(h3) -#: doc/reference/en/Groonga/Expression.html:1017(h3) -#: doc/reference/en/Groonga/Expression.html:1151(h3) -#: doc/reference/en/Groonga/Snippet.html:221(h3) -#: doc/reference/en/Groonga/Snippet.html:332(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:275(h3) -#: doc/reference/en/Groonga/Hash.html:369(h3) -#: doc/reference/en/Groonga/Hash.html:508(h3) -#: doc/reference/en/Groonga/Array.html:317(h3) -#: doc/reference/en/Groonga/Type.html:438(h3) -#: doc/reference/en/Groonga/Database.html:487(h3) -#: doc/reference/en/Groonga/Database.html:615(h3) -#: doc/reference/en/Groonga/Database.html:781(h3) -#: doc/reference/en/Groonga/Database.html:1144(h3) -#: doc/reference/en/Groonga/Database.html:1274(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:404(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:570(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:681(h3) -#: doc/reference/en/Groonga/Record.html:1791(h3) -#: doc/reference/en/Groonga/Record.html:2227(h3) -#: doc/reference/en/Groonga/View.html:392(h3) -#: doc/reference/en/Groonga/Column.html:1097(h3) -#: doc/reference/en/Groonga/Column.html:1435(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:541(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:707(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:847(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:990(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:1414(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:1531(h3) -#: doc/reference/en/Groonga/Posting.html:899(h3) -#: doc/reference/en/Groonga/Table.html:1052(h3) -#: doc/reference/en/Groonga/Table.html:1395(h3) -#: doc/reference/en/Groonga/Table.html:1528(h3) -#: doc/reference/en/Groonga/Table.html:2376(h3) -#: doc/reference/en/Groonga/Table.html:2493(h3) -#: doc/reference/en/Groonga/Table.html:2721(h3) -#: doc/reference/en/Groonga/Table.html:2812(h3) -#: doc/reference/en/Groonga/Table.html:3019(h3) -#: doc/reference/en/Groonga/Table.html:3290(h3) -#: doc/reference/en/Groonga/Table.html:3610(h3) -#: doc/reference/en/Groonga/Plugin.html:215(h3) -#: doc/reference/en/Grn/Table.html:994(h3) -#: doc/reference/en/Grn/Table.html:1337(h3) -#: doc/reference/en/Grn/Table.html:1470(h3) -#: doc/reference/en/Grn/Table.html:2318(h3) -#: doc/reference/en/Grn/Table.html:2435(h3) -#: doc/reference/en/Grn/Table.html:2663(h3) -#: doc/reference/en/Grn/Table.html:2803(h3) -#: doc/reference/en/Grn/Table.html:3075(h3) -#: doc/reference/en/Grn/Table.html:3398(h3) -msgid "Parameters:" +#: doc/reference/en/Groonga.html:96(span) +msgid "ANY" msgstr "" -#: doc/reference/en/Groonga/Logger.html:522(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:797(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:992(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1468(tt) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1560(tt) -#: doc/reference/en/Groonga/Context.html:681(tt) -#: doc/reference/en/Groonga/Context.html:1235(tt) -#: doc/reference/en/Groonga/Context.html:1896(tt) -#: doc/reference/en/Groonga/Schema.html:809(tt) -#: doc/reference/en/Groonga/Schema.html:910(tt) -#: doc/reference/en/Groonga/Schema.html:1008(tt) -#: doc/reference/en/Groonga/Schema.html:1131(tt) -#: doc/reference/en/Groonga/Schema.html:1269(tt) -#: doc/reference/en/Groonga/Schema.html:1452(tt) -#: doc/reference/en/Groonga/Schema.html:1653(tt) -#: doc/reference/en/Groonga/Schema.html:1785(tt) -#: doc/reference/en/Groonga/Schema.html:1909(tt) -#: doc/reference/en/Groonga/Schema.html:2053(tt) -#: doc/reference/en/Groonga/Schema.html:2138(tt) -#: doc/reference/en/Groonga/Schema.html:2367(tt) -#: doc/reference/en/Groonga/Schema.html:2470(tt) -#: doc/reference/en/Groonga/Schema.html:2593(tt) -#: doc/reference/en/Groonga/Schema.html:2727(tt) -#: doc/reference/en/Groonga/Schema.html:2898(tt) -#: doc/reference/en/Groonga/Schema.html:3111(tt) -#: doc/reference/en/Groonga/Schema.html:3379(tt) -#: doc/reference/en/Groonga/Schema.html:3465(tt) -#: doc/reference/en/Groonga/Schema.html:3597(tt) -#: doc/reference/en/Groonga/Expression.html:812(tt) -#: doc/reference/en/Groonga/Expression.html:1025(tt) -#: doc/reference/en/Groonga/Expression.html:1159(tt) -#: doc/reference/en/Groonga/Snippet.html:229(tt) -#: doc/reference/en/Groonga/Snippet.html:340(tt) -#: doc/reference/en/Groonga/Hash.html:377(tt) -#: doc/reference/en/Groonga/Hash.html:516(tt) -#: doc/reference/en/Groonga/Array.html:325(tt) -#: doc/reference/en/Groonga/Type.html:446(tt) -#: doc/reference/en/Groonga/Database.html:495(tt) -#: doc/reference/en/Groonga/Database.html:623(tt) -#: doc/reference/en/Groonga/Database.html:789(tt) -#: doc/reference/en/Groonga/Database.html:1152(tt) -#: doc/reference/en/Groonga/Database.html:1282(tt) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:412(tt) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:578(tt) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:689(tt) -#: doc/reference/en/Groonga/View.html:400(tt) -#: doc/reference/en/Groonga/Column.html:1443(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:549(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:715(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:855(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:998(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:1422(tt) -#: doc/reference/en/Groonga/PatriciaTrie.html:1539(tt) -#: doc/reference/en/Groonga/Posting.html:907(tt) -#: doc/reference/en/Groonga/Table.html:1060(tt) -#: doc/reference/en/Groonga/Table.html:1403(tt) -#: doc/reference/en/Groonga/Table.html:1536(tt) -#: doc/reference/en/Groonga/Table.html:2384(tt) -#: doc/reference/en/Groonga/Table.html:2729(tt) -#: doc/reference/en/Groonga/Table.html:2820(tt) -#: doc/reference/en/Groonga/Table.html:3298(tt) -#: doc/reference/en/Groonga/Table.html:3618(tt) -#: doc/reference/en/Groonga/Plugin.html:223(tt) -#: doc/reference/en/Grn/Table.html:1002(tt) -#: doc/reference/en/Grn/Table.html:1345(tt) -#: doc/reference/en/Grn/Table.html:1478(tt) -#: doc/reference/en/Grn/Table.html:2326(tt) -#: doc/reference/en/Grn/Table.html:2671(tt) -#: doc/reference/en/Grn/Table.html:3083(tt) -#: doc/reference/en/Grn/Table.html:3406(tt) -msgid "::Hash" +#: doc/reference/en/Groonga.html:96(span) +msgid "WARRANTY" msgstr "" -#: doc/reference/en/Groonga/Logger.html:527(p) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:804(p) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:997(p) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1473(p) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:1567(p) -#: doc/reference/en/Groonga/Context.html:686(p) -#: doc/reference/en/Groonga/Context.html:1240(p) -#: doc/reference/en/Groonga/Context.html:1903(p) -#: doc/reference/en/Groonga/Schema.html:816(p) -#: doc/reference/en/Groonga/Schema.html:917(p) -#: doc/reference/en/Groonga/Schema.html:1015(p) -#: doc/reference/en/Groonga/Schema.html:1136(p) -#: doc/reference/en/Groonga/Schema.html:1274(p) -#: doc/reference/en/Groonga/Schema.html:1457(p) -#: doc/reference/en/Groonga/Schema.html:1660(p) -#: doc/reference/en/Groonga/Schema.html:1792(p) -#: doc/reference/en/Groonga/Schema.html:1916(p) -#: doc/reference/en/Groonga/Schema.html:2060(p) -#: doc/reference/en/Groonga/Schema.html:2145(p) -#: doc/reference/en/Groonga/Schema.html:2374(p) -#: doc/reference/en/Groonga/Schema.html:2477(p) -#: doc/reference/en/Groonga/Schema.html:2598(p) -#: doc/reference/en/Groonga/Schema.html:2732(p) -#: doc/reference/en/Groonga/Schema.html:2903(p) -#: doc/reference/en/Groonga/Schema.html:3118(p) -#: doc/reference/en/Groonga/Schema.html:3386(p) -#: doc/reference/en/Groonga/Schema.html:3472(p) -#: doc/reference/en/Groonga/Schema.html:3604(p) -#: doc/reference/en/Groonga/Expression.html:817(p) -#: doc/reference/en/Groonga/Expression.html:1030(p) -#: doc/reference/en/Groonga/Expression.html:1164(p) -#: doc/reference/en/Groonga/Snippet.html:234(p) -#: doc/reference/en/Groonga/Snippet.html:345(p) -#: doc/reference/en/Groonga/Array.html:330(p) -#: doc/reference/en/Groonga/Database.html:500(p) -#: doc/reference/en/Groonga/Database.html:794(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:417(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:583(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:694(p) -#: doc/reference/en/Groonga/Record.html:1806(p) -#: doc/reference/en/Groonga/Column.html:1448(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:554(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:720(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:860(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:1003(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:1427(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:1546(p) -#: doc/reference/en/Groonga/Posting.html:912(p) -#: doc/reference/en/Groonga/Table.html:1065(p) -#: doc/reference/en/Groonga/Table.html:1408(p) -#: doc/reference/en/Groonga/Table.html:1541(p) -#: doc/reference/en/Groonga/Table.html:2389(p) -#: doc/reference/en/Groonga/Table.html:2506(p) -#: doc/reference/en/Groonga/Table.html:2734(p) -#: doc/reference/en/Groonga/Table.html:2827(p) -#: doc/reference/en/Groonga/Table.html:3303(p) -#: doc/reference/en/Groonga/Table.html:3623(p) -#: doc/reference/en/Groonga/Plugin.html:228(p) -#: doc/reference/en/Grn/Table.html:1007(p) -#: doc/reference/en/Grn/Table.html:1350(p) -#: doc/reference/en/Grn/Table.html:1483(p) -#: doc/reference/en/Grn/Table.html:2331(p) -#: doc/reference/en/Grn/Table.html:2448(p) -#: doc/reference/en/Grn/Table.html:2676(p) -#: doc/reference/en/Grn/Table.html:3088(p) -#: doc/reference/en/Grn/Table.html:3411(p) -msgid "" -"The name and value pairs. Omitted names are initialized as the default value." +#: doc/reference/en/Groonga.html:97(span) +msgid "MERCHANTABILITY" msgstr "" -#: doc/reference/en/Groonga/Logger.html:546(pre) -msgid "" -" static VALUE rb_grn_logger_s_register (int argc, VALUE " -"*argv, VALUE klass) { VALUE logger, rb_context = Qnil; grn_ctx *context; " -"logger = rb_funcall2(klass, rb_intern(\"new\"), argc, argv); " -"rb_grn_logger_set_handler(logger, rb_block_proc()); context = " -"rb_grn_context_ensure(&rb_context); grn_logger_info_set(context, " -"RVAL2GRNLOGGER(logger)); rb_grn_context_check(context, logger); rb_cv_set" -"(klass, \"@@current_logger\", logger); return Qnil; }" +#: doc/reference/en/Groonga.html:97(span) +msgid "FITNESS" msgstr "" -#: doc/reference/en/Groonga/Logger.html:577(p) -msgid "" -"groonga????????????????????????? ?????????" -"??????????????????" +#: doc/reference/en/Groonga.html:97(span) +msgid "FOR" msgstr "" -#: doc/reference/en/Groonga/Logger.html:579(p) -msgid "" -"Groonga::Logger.register???????????????? ?????????" +#: doc/reference/en/Groonga.html:97(span) +msgid "PARTICULAR" +msgstr "" + +#: doc/reference/en/Groonga.html:97(span) +msgid "PURPOSE" msgstr "" -#: doc/reference/en/Groonga/Logger.html:598(pre) +#: doc/reference/en/Groonga.html:95(p) msgid "" -" static VALUE rb_grn_logger_s_reopen (VALUE klass) { return " -"rb_grn_logger_s_reopen_with_related_object(klass, klass); }" +"This library is distributed in the hope that it will be useful, but " +" ; without even the implied " +"warranty of or A " +" . See the Lesser General " +"Public License for more details." msgstr "" -#: doc/reference/en/Groonga/TooManyLinks.html:6(title) -msgid "Exception: Groonga::TooManyLinks — rroonga" -msgstr "" - -#: doc/reference/en/Groonga/TooManyLinks.html:36(a) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:36(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:36(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:36(a) -#: doc/reference/en/Groonga/TableDumper.html:36(a) -#: doc/reference/en/Groonga/TooSmallLimit.html:36(a) -#: doc/reference/en/Groonga/TooSmallPageSize.html:36(a) -#: doc/reference/en/Groonga/TableCursor.html:36(a) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:36(a) -#: doc/reference/en/Groonga/Type.html:36(a) -#: doc/reference/en/Groonga/TooSmallOffset.html:36(a) -#: doc/reference/en/Groonga/TooLargeOffset.html:36(a) -#: doc/reference/en/Groonga/TokenizerError.html:36(a) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:36(a) -#: doc/reference/en/Groonga/Table.html:36(a) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:36(a) -#: doc/reference/en/Groonga/TooSmallPage.html:36(a) -#: doc/reference/en/Groonga/TooLargePage.html:36(a) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:36(a) -#: doc/reference/en/Grn/Table.html:36(a) -msgid "Index (T)" +#: doc/reference/en/Groonga.html:101(span) +msgid "USA" msgstr "" -#: doc/reference/en/Groonga/TooManyLinks.html:59(h1) -msgid "Exception: Groonga::TooManyLinks" -msgstr "" - -#: doc/reference/en/Groonga/TooManyLinks.html:74(li) -#: doc/reference/en/Groonga/OperationNotPermitted.html:74(li) -#: doc/reference/en/Groonga/BadFileDescriptor.html:74(li) -#: doc/reference/en/Groonga/FileExists.html:74(li) -#: doc/reference/en/Groonga/Schema/Error.html:74(li) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:74(li) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:74(li) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:74(li) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:74(li) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:74(li) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:74(li) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:74(li) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:74(li) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:74(li) -#: doc/reference/en/Groonga/BrokenPipe.html:74(li) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:74(li) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:74(li) -#: doc/reference/en/Groonga/ResultTooLarge.html:74(li) -#: doc/reference/en/Groonga/DomainError.html:74(li) -#: doc/reference/en/Groonga/UnknownError.html:74(li) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:74(li) -#: doc/reference/en/Groonga/Error.html:69(span) -#: doc/reference/en/Groonga/Error.html:74(li) -#: doc/reference/en/Groonga/EndOfData.html:74(li) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:74(li) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:74(li) -#: doc/reference/en/Groonga/InvalidSeek.html:74(li) -#: doc/reference/en/Groonga/ImproperLink.html:74(li) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:74(li) -#: doc/reference/en/Groonga/TooSmallLimit.html:74(li) -#: doc/reference/en/Groonga/NoSuchColumn.html:74(li) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:74(li) -#: doc/reference/en/Groonga/ConnectionRefused.html:74(li) -#: doc/reference/en/Groonga/OperationWouldBlock.html:74(li) -#: doc/reference/en/Groonga/TooSmallPageSize.html:74(li) -#: doc/reference/en/Groonga/CASError.html:74(li) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:74(li) -#: doc/reference/en/Groonga/InputOutputError.html:74(li) -#: doc/reference/en/Groonga/OperationTimeout.html:74(li) -#: doc/reference/en/Groonga/InvalidArgument.html:74(li) -#: doc/reference/en/Groonga/SyntaxError.html:74(li) -#: doc/reference/en/Groonga/StackOverFlow.html:74(li) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:74(li) -#: doc/reference/en/Groonga/NoSuchProcess.html:74(li) -#: doc/reference/en/Groonga/TooSmallOffset.html:74(li) -#: doc/reference/en/Groonga/NoLocksAvailable.html:74(li) -#: doc/reference/en/Groonga/RangeError.html:74(li) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:74(li) -#: doc/reference/en/Groonga/FileCorrupt.html:74(li) -#: doc/reference/en/Groonga/BadAddress.html:74(li) -#: doc/reference/en/Groonga/ExecFormatError.html:74(li) -#: doc/reference/en/Groonga/FilenameTooLong.html:74(li) -#: doc/reference/en/Groonga/ZLibError.html:74(li) -#: doc/reference/en/Groonga/TooLargeOffset.html:74(li) -#: doc/reference/en/Groonga/NotSocket.html:74(li) -#: doc/reference/en/Groonga/TokenizerError.html:74(li) -#: doc/reference/en/Groonga/NoSuchDevice.html:74(li) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:74(li) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:74(li) -#: doc/reference/en/Groonga/NotADirectory.html:74(li) -#: doc/reference/en/Groonga/Closed.html:74(li) -#: doc/reference/en/Groonga/ResourceBusy.html:74(li) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:74(li) -#: doc/reference/en/Groonga/ObjectCorrupt.html:74(li) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:74(li) -#: doc/reference/en/Groonga/PermissionDenied.html:74(li) -#: doc/reference/en/Groonga/OperationNotSupported.html:74(li) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:74(li) -#: doc/reference/en/Groonga/InvalidFormat.html:74(li) -#: doc/reference/en/Groonga/RetryMax.html:74(li) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:74(li) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:74(li) -#: doc/reference/en/Groonga/NetworkIsDown.html:74(li) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:74(li) -#: doc/reference/en/Groonga/AddressIsInUse.html:74(li) -#: doc/reference/en/Groonga/NoBuffer.html:74(li) -#: doc/reference/en/Groonga/SocketNotInitialized.html:74(li) -#: doc/reference/en/Groonga/TooSmallPage.html:74(li) -#: doc/reference/en/Groonga/TooLargePage.html:74(li) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:74(li) -#: doc/reference/en/Groonga/IsADirectory.html:74(li) -#: doc/reference/en/Groonga/IllegalByteSequence.html:74(li) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:74(li) -#: doc/reference/en/Groonga/FileTooLarge.html:74(li) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:74(li) -#: doc/reference/en/Groonga/LZOError.html:74(li) -#: doc/reference/en/Groonga/NotEnoughSpace.html:74(li) -#: doc/reference/en/Groonga/NoChildProcesses.html:74(li) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:74(li) -msgid "StandardError" -msgstr "" - -#: doc/reference/en/Groonga/TooManyLinks.html:78(li) -msgid "Groonga::TooManyLinks" +#: doc/reference/en/Groonga.html:99(p) +msgid "" +"You should have received a copy of the Lesser General " +"Public License along with this library; if not, write to the Free Software " +"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 " +"" msgstr "" -#: doc/reference/en/Groonga/TooManyLinks.html:94(dd) -#: doc/reference/en/Groonga/OperationNotPermitted.html:94(dd) -#: doc/reference/en/Groonga/BadFileDescriptor.html:94(dd) -#: doc/reference/en/Groonga/FileExists.html:94(dd) -#: doc/reference/en/Groonga/BrokenPipe.html:94(dd) -#: doc/reference/en/Groonga/InterruptedFunctionCall.html:94(dd) -#: doc/reference/en/Groonga/UpdateNotAllowed.html:94(dd) -#: doc/reference/en/Groonga/ResultTooLarge.html:94(dd) -#: doc/reference/en/Groonga/DomainError.html:94(dd) -#: doc/reference/en/Groonga/UnknownError.html:94(dd) -#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:94(dd) -#: doc/reference/en/Groonga/Error.html:92(dd) -#: doc/reference/en/Groonga/EndOfData.html:94(dd) -#: doc/reference/en/Groonga/SocketIsNotConnected.html:94(dd) -#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:94(dd) -#: doc/reference/en/Groonga/InvalidSeek.html:94(dd) -#: doc/reference/en/Groonga/ImproperLink.html:94(dd) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:94(dd) -#: doc/reference/en/Groonga/TooSmallLimit.html:94(dd) -#: doc/reference/en/Groonga/NoSuchColumn.html:94(dd) -#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:94(dd) -#: doc/reference/en/Groonga/ConnectionRefused.html:94(dd) -#: doc/reference/en/Groonga/OperationWouldBlock.html:94(dd) -#: doc/reference/en/Groonga/CASError.html:94(dd) -#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:94(dd) -#: doc/reference/en/Groonga/InputOutputError.html:94(dd) -#: doc/reference/en/Groonga/OperationTimeout.html:94(dd) -#: doc/reference/en/Groonga/InvalidArgument.html:94(dd) -#: doc/reference/en/Groonga/SyntaxError.html:94(dd) -#: doc/reference/en/Groonga/StackOverFlow.html:94(dd) -#: doc/reference/en/Groonga/NoMemoryAvailable.html:94(dd) -#: doc/reference/en/Groonga/NoSuchProcess.html:94(dd) -#: doc/reference/en/Groonga/TooSmallOffset.html:94(dd) -#: doc/reference/en/Groonga/NoLocksAvailable.html:94(dd) -#: doc/reference/en/Groonga/RangeError.html:94(dd) -#: doc/reference/en/Groonga/IncompatibleFileFormat.html:94(dd) -#: doc/reference/en/Groonga/FileCorrupt.html:94(dd) -#: doc/reference/en/Groonga/BadAddress.html:94(dd) -#: doc/reference/en/Groonga/ExecFormatError.html:94(dd) -#: doc/reference/en/Groonga/FilenameTooLong.html:94(dd) -#: doc/reference/en/Groonga/ZLibError.html:94(dd) -#: doc/reference/en/Groonga/TooLargeOffset.html:94(dd) -#: doc/reference/en/Groonga/NotSocket.html:94(dd) -#: doc/reference/en/Groonga/TokenizerError.html:94(dd) -#: doc/reference/en/Groonga/NoSuchDevice.html:94(dd) -#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:94(dd) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:94(dd) -#: doc/reference/en/Groonga/NotADirectory.html:94(dd) -#: doc/reference/en/Groonga/Closed.html:94(dd) -#: doc/reference/en/Groonga/ResourceBusy.html:94(dd) -#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:94(dd) -#: doc/reference/en/Groonga/ObjectCorrupt.html:94(dd) -#: doc/reference/en/Groonga/TooManyOpenFiles.html:94(dd) -#: doc/reference/en/Groonga/PermissionDenied.html:94(dd) -#: doc/reference/en/Groonga/OperationNotSupported.html:94(dd) -#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:94(dd) -#: doc/reference/en/Groonga/InvalidFormat.html:94(dd) -#: doc/reference/en/Groonga/RetryMax.html:94(dd) -#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:94(dd) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:94(dd) -#: doc/reference/en/Groonga/NetworkIsDown.html:94(dd) -#: doc/reference/en/Groonga/DirectoryNotEmpty.html:94(dd) -#: doc/reference/en/Groonga/AddressIsInUse.html:94(dd) -#: doc/reference/en/Groonga/NoBuffer.html:94(dd) -#: doc/reference/en/Groonga/SocketNotInitialized.html:94(dd) -#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:94(dd) -#: doc/reference/en/Groonga/IsADirectory.html:94(dd) -#: doc/reference/en/Groonga/IllegalByteSequence.html:94(dd) -#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:94(dd) -#: doc/reference/en/Groonga/FileTooLarge.html:94(dd) -#: doc/reference/en/Groonga/TooManySymbolicLinks.html:94(dd) -#: doc/reference/en/Groonga/LZOError.html:94(dd) -#: doc/reference/en/Groonga/NotEnoughSpace.html:94(dd) -#: doc/reference/en/Groonga/NoChildProcesses.html:94(dd) -#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:94(dd) -msgid "ext/groonga/rb-grn-exception.c" -msgstr "" - -#: doc/reference/en/Groonga/TooManyLinks.html:101(p) -msgid "????????????????" +#: doc/reference/en/Groonga.html:108(h2) +#: doc/reference/en/Groonga/Schema.html:139(h2) +#: doc/reference/en/Groonga/TableCursor.html:116(h2) +#: doc/reference/en/Groonga/Command.html:87(h2) +#: doc/reference/en/Groonga/QueryLog.html:87(h2) +#: doc/reference/en/Groonga/Command/Select/Result.html:104(h2) +#: doc/reference/en/Groonga/Command/Select.html:102(h2) +#: doc/reference/en/Groonga/Table.html:119(h2) +#: doc/reference/en/Groonga/GrntestLog.html:87(h2) +#: doc/reference/en/top-level-namespace.html:84(h2) +msgid "Defined Under Namespace" msgstr "" -#: doc/reference/en/Groonga/OperationNotPermitted.html:6(title) -msgid "Exception: Groonga::OperationNotPermitted — rroonga" +#: doc/reference/en/Groonga.html:112(strong) +#: doc/reference/en/Groonga/TableCursor.html:120(strong) +#: doc/reference/en/Groonga/Table.html:123(strong) +#: doc/reference/en/top-level-namespace.html:88(strong) +msgid "Modules:" msgstr "" -#: doc/reference/en/Groonga/OperationNotPermitted.html:36(a) -#: doc/reference/en/Groonga/OperationWouldBlock.html:36(a) -#: doc/reference/en/Groonga/Operator.html:36(a) -#: doc/reference/en/Groonga/OperationTimeout.html:36(a) -#: doc/reference/en/Groonga/Object.html:36(a) -#: doc/reference/en/Groonga/ObjectCorrupt.html:36(a) -#: doc/reference/en/Groonga/OperationNotSupported.html:36(a) -msgid "Index (O)" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/Context.html:488(span) +#: doc/reference/en/Groonga/Command.html:37(span) +#: doc/reference/en/Groonga/QueryLog.html:93(a) +#: doc/reference/en/Groonga/Command/Builder.html:35(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:35(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:35(a) +#: doc/reference/en/Groonga/Command/Select.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:37(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:413(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:971(span) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:76(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:81(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:112(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:290(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:215(a) +#: doc/reference/en/_index.html:222(a) +msgid "Command" msgstr "" -#: doc/reference/en/Groonga/OperationNotPermitted.html:59(h1) -msgid "Exception: Groonga::OperationNotPermitted" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/Encoding.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:308(a) +msgid "Encoding" msgstr "" -#: doc/reference/en/Groonga/OperationNotPermitted.html:78(li) -msgid "Groonga::OperationNotPermitted" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/EncodingSupport.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:315(a) +msgid "EncodingSupport" msgstr "" -#: doc/reference/en/Groonga/OperationNotPermitted.html:101(p) -msgid "???????????????????" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:35(a) +#: doc/reference/en/Groonga/GrntestLog.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:422(a) +msgid "GrntestLog" msgstr "" -#: doc/reference/en/Groonga/BadFileDescriptor.html:6(title) -msgid "Exception: Groonga::BadFileDescriptor — rroonga" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/Pagination.html:37(span) +#: doc/reference/en/Groonga/Table.html:333(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:788(a) +msgid "Pagination" msgstr "" -#: doc/reference/en/Groonga/BadFileDescriptor.html:36(a) -#: doc/reference/en/Groonga/BrokenPipe.html:36(a) -#: doc/reference/en/Groonga/BadAddress.html:36(a) -#: doc/reference/en/Groonga/Command/Builder.html:36(a) -msgid "Index (B)" +#: doc/reference/en/Groonga.html:112(a) +#: doc/reference/en/Groonga/QueryLog.html:37(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:35(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:35(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:35(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:855(a) +msgid "QueryLog" msgstr "" -#: doc/reference/en/Groonga/BadFileDescriptor.html:59(h1) -msgid "Exception: Groonga::BadFileDescriptor" +#: doc/reference/en/Groonga.html:116(strong) +#: doc/reference/en/Groonga/Schema.html:145(strong) +#: doc/reference/en/Groonga/Command.html:93(strong) +#: doc/reference/en/Groonga/QueryLog.html:93(strong) +#: doc/reference/en/Groonga/Command/Select/Result.html:110(strong) +#: doc/reference/en/Groonga/Command/Select.html:108(strong) +#: doc/reference/en/Groonga/GrntestLog.html:93(strong) +msgid "Classes:" msgstr "" -#: doc/reference/en/Groonga/BadFileDescriptor.html:78(li) -msgid "Groonga::BadFileDescriptor" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Accessor.html:37(span) +#: doc/reference/en/Groonga/Object.html:115(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:94(a) +msgid "Accessor" msgstr "" -#: doc/reference/en/Groonga/BadFileDescriptor.html:101(p) -msgid "?????????????????????????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/AddressIsInUse.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:101(a) +msgid "AddressIsInUse" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:6(title) -msgid "Class: Groonga::Accessor — rroonga" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:108(a) +msgid "AddressIsNotAvailable" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:36(a) -#: doc/reference/en/Groonga/ArgumentListTooLong.html:36(a) -#: doc/reference/en/Groonga/Array.html:36(a) -#: doc/reference/en/Groonga/AddressIsNotAvailable.html:36(a) -#: doc/reference/en/Groonga/AddressIsInUse.html:36(a) -#: doc/reference/en/Groonga/ArrayCursor.html:36(a) -msgid "Index (A)" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:115(a) +msgid "ArgumentListTooLong" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:59(h1) -msgid "Class: Groonga::Accessor" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Context.html:451(a) +#: doc/reference/en/Groonga/Context.html:461(a) +#: doc/reference/en/Groonga/Array.html:37(span) +#: doc/reference/en/Groonga/Command/Builder.html:569(span) +#: doc/reference/en/Groonga/Table.html:117(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/Grn/Table.html:1956(tt) +#: doc/reference/en/Grn/Table.html:1978(tt) +#: doc/reference/en/Grn/Table.html:1993(tt) +#: doc/reference/en/Grn/Table.html:2957(span) +#: doc/reference/en/_index.html:122(a) +msgid "Array" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:76(li) -#: doc/reference/en/method_list.html:1878(small) -msgid "Groonga::Accessor" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/TableCursor.html:114(a) +#: doc/reference/en/Groonga/ArrayCursor.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:129(a) +msgid "ArrayCursor" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:92(dd) -msgid "ext/groonga/rb-grn-accessor.c" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/BadAddress.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:144(a) +msgid "BadAddress" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:99(p) -#: doc/reference/en/Groonga/ViewAccessor.html:99(p) -msgid "" -"???????????????????????????? ???????" -"Groonga::Table#column???????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/BadFileDescriptor.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:151(a) +msgid "BadFileDescriptor" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:125(strong) -#: doc/reference/en/Groonga/Accessor.html:165(strong) -#: doc/reference/en/Groonga/Column.html:210(strong) -#: doc/reference/en/Groonga/Column.html:707(strong) -#: doc/reference/en/Groonga/Column.html:726(span) -msgid "local_name" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/BrokenPipe.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:158(a) +msgid "BrokenPipe" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:138(p) -msgid "?????????." +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/CASError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:180(a) +msgid "CASError" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:154(h3) -#: doc/reference/en/Groonga/Expression.html:369(h3) -#: doc/reference/en/Groonga/ViewCursor.html:122(h3) -#: doc/reference/en/Groonga/Snippet.html:199(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:176(h3) -#: doc/reference/en/Groonga/VariableSizeColumn.html:186(h3) -#: doc/reference/en/Groonga/Hash.html:214(h3) -#: doc/reference/en/Groonga/Hash.html:225(h3) -#: doc/reference/en/Groonga/Array.html:189(h3) -#: doc/reference/en/Groonga/Array.html:200(h3) -#: doc/reference/en/Groonga/FixSizeColumn.html:220(h3) -#: doc/reference/en/Groonga/FixSizeColumn.html:230(h3) -#: doc/reference/en/Groonga/Procedure.html:144(h3) -#: doc/reference/en/Groonga/Type.html:416(h3) -#: doc/reference/en/Groonga/Database.html:399(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:246(h3) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:257(h3) -#: doc/reference/en/Groonga/HashCursor.html:128(h3) -#: doc/reference/en/Groonga/View.html:253(h3) -#: doc/reference/en/Groonga/View.html:264(h3) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:117(h3) -#: doc/reference/en/Groonga/Column.html:439(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:383(h3) -#: doc/reference/en/Groonga/PatriciaTrie.html:394(h3) -#: doc/reference/en/Groonga/IndexCursor.html:170(h3) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:275(h3) -#: doc/reference/en/Groonga/Table.html:940(h3) -#: doc/reference/en/Groonga/Variable.html:174(h3) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:129(h3) -#: doc/reference/en/Groonga/ArrayCursor.html:123(h3) -#: doc/reference/en/Groonga/ViewAccessor.html:122(h3) -msgid "" -"Methods inherited from " +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Closed.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:187(a) +msgid "Closed" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:276(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:44(a) -#: doc/reference/en/method_list.html:52(a) -#: doc/reference/en/method_list.html:60(a) -#: doc/reference/en/method_list.html:68(a) -msgid "#==" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:76(a) +#: doc/reference/en/Groonga/VariableSizeColumn.html:83(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:76(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:83(a) +#: doc/reference/en/Groonga/Object.html:115(a) +#: doc/reference/en/Groonga/Column.html:37(span) +#: doc/reference/en/Groonga/IndexColumn.html:76(a) +#: doc/reference/en/Groonga/IndexColumn.html:83(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:194(a) +msgid "Column" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:195(a) -#: doc/reference/en/Groonga/Hash.html:215(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:190(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:227(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:247(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:254(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:364(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:384(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:76(a) -#: doc/reference/en/method_list.html:92(a) -#: doc/reference/en/method_list.html:100(a) -#: doc/reference/en/method_list.html:108(a) -#: doc/reference/en/method_list.html:116(a) -#: doc/reference/en/method_list.html:124(a) -#: doc/reference/en/method_list.html:132(a) -#: doc/reference/en/method_list.html:140(a) -#: doc/reference/en/method_list.html:148(a) -msgid "#[]" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ConnectionRefused.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:229(a) +msgid "ConnectionRefused" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:195(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:227(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:364(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:156(a) -#: doc/reference/en/method_list.html:164(a) -#: doc/reference/en/method_list.html:172(a) -#: doc/reference/en/method_list.html:180(a) -#: doc/reference/en/method_list.html:188(a) -#: doc/reference/en/method_list.html:196(a) -msgid "#[]=" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga.html:271(span) +#: doc/reference/en/Groonga/Context.html:37(span) +#: doc/reference/en/Groonga/Schema.html:899(span) +#: doc/reference/en/Groonga/SchemaDumper.html:265(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:270(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:211(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:236(a) +msgid "Context" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:260(a) -#: doc/reference/en/method_list.html:268(a) -msgid "#append" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Context.html:295(span) +#: doc/reference/en/Groonga/Context.html:340(span) +#: doc/reference/en/Groonga/Schema.html:1933(span) +#: doc/reference/en/Groonga/Database.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:251(a) +msgid "Database" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:396(a) -msgid "#builtin?" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/DatabaseDumper.html:37(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:181(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:258(a) +msgid "DatabaseDumper" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/ViewCursor.html:123(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/HashCursor.html:129(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:118(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:130(a) -#: doc/reference/en/Groonga/ArrayCursor.html:124(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:468(a) -#: doc/reference/en/method_list.html:476(a) -#: doc/reference/en/method_list.html:484(a) -#: doc/reference/en/method_list.html:492(a) -msgid "#close" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:265(a) +msgid "DirectoryNotEmpty" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/ViewCursor.html:123(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/HashCursor.html:129(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:118(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/PatriciaTrieCursor.html:130(a) -#: doc/reference/en/Groonga/ArrayCursor.html:124(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:500(a) -#: doc/reference/en/method_list.html:508(a) -#: doc/reference/en/method_list.html:516(a) -msgid "#closed?" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/DomainError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:272(a) +msgid "DomainError" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:1004(a) -msgid "#domain" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:37(span) +#: doc/reference/en/Groonga/TableCursor.html:114(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:279(a) +#, fuzzy +msgid "DoubleArrayCursor" +msgstr "????" + +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:37(span) +#: doc/reference/en/Groonga/Table.html:117(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:286(a) +msgid "DoubleArrayTrie" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:195(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:227(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:364(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:1356(a) -#: doc/reference/en/method_list.html:1364(a) -#: doc/reference/en/method_list.html:1372(a) -#: doc/reference/en/method_list.html:1380(a) -msgid "#id" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/EndOfData.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:322(a) +msgid "EndOfData" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:215(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:190(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:247(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:254(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:384(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:1724(a) -#: doc/reference/en/method_list.html:1732(a) -#: doc/reference/en/method_list.html:1740(a) -#: doc/reference/en/method_list.html:1748(a) -msgid "#inspect" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Schema/Error.html:37(span) +#: doc/reference/en/Groonga/Schema/Error.html:76(a) +#: doc/reference/en/Groonga/Schema/Error.html:81(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:76(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:81(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:83(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:76(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:81(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:83(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:76(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:81(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:83(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:76(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:81(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:83(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:76(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:81(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:83(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:76(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:81(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:83(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:76(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:81(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:83(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:76(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:81(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:83(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:76(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:81(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:83(a) +#: doc/reference/en/Groonga/Schema.html:145(a) +#: doc/reference/en/Groonga/Error.html:37(span) +#: doc/reference/en/Groonga/TooSmallPageSize.html:76(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:81(a) +#: doc/reference/en/Groonga/TooSmallPage.html:76(a) +#: doc/reference/en/Groonga/TooSmallPage.html:81(a) +#: doc/reference/en/Groonga/TooLargePage.html:76(a) +#: doc/reference/en/Groonga/TooLargePage.html:81(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:336(a) +#: doc/reference/en/_index.html:343(a) +msgid "Error" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:106(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2092(a) -#: doc/reference/en/method_list.html:2100(a) -#: doc/reference/en/method_list.html:2108(a) -#: doc/reference/en/method_list.html:2116(a) -#: doc/reference/en/method_list.html:2124(a) -#: doc/reference/en/method_list.html:2132(a) -#: doc/reference/en/method_list.html:2140(a) -msgid "#name" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ExecFormatError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:350(a) +msgid "ExecFormatError" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2396(a) -msgid "#path" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Expression.html:37(span) +#: doc/reference/en/Groonga/Object.html:115(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:357(a) +msgid "Expression" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2404(a) -msgid "#persistent?" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FileCorrupt.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:372(a) +msgid "FileCorrupt" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2436(a) -#: doc/reference/en/method_list.html:2444(a) -msgid "#prepend" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FileExists.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:379(a) +msgid "FileExists" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2500(a) -msgid "#range" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FileTooLarge.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:386(a) +msgid "FileTooLarge" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:2652(a) -msgid "#remove" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:393(a) +msgid "FilenameTooLong" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:3260(a) -msgid "#temporary?" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FixSizeColumn.html:37(span) +#: doc/reference/en/Groonga/Column.html:131(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:400(a) +msgid "FixSizeColumn" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(a) -#: doc/reference/en/Groonga/Expression.html:370(a) -#: doc/reference/en/Groonga/Snippet.html:200(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(a) -#: doc/reference/en/Groonga/Hash.html:226(a) -#: doc/reference/en/Groonga/Array.html:201(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:231(a) -#: doc/reference/en/Groonga/Procedure.html:145(a) -#: doc/reference/en/Groonga/Type.html:417(a) -#: doc/reference/en/Groonga/Database.html:400(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(a) -#: doc/reference/en/Groonga/View.html:265(a) -#: doc/reference/en/Groonga/Column.html:440(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(a) -#: doc/reference/en/Groonga/IndexCursor.html:171(a) -#: doc/reference/en/Groonga/Table.html:941(a) -#: doc/reference/en/Groonga/Variable.html:175(a) -#: doc/reference/en/Groonga/ViewAccessor.html:123(a) -#: doc/reference/en/method_list.html:3412(a) -msgid "#unlink" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:407(a) +msgid "FunctionNotImplemented" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:155(p) -#: doc/reference/en/Groonga/Snippet.html:200(p) -#: doc/reference/en/Groonga/VariableSizeColumn.html:187(p) -#: doc/reference/en/Groonga/Hash.html:226(p) -#: doc/reference/en/Groonga/Array.html:201(p) -#: doc/reference/en/Groonga/Procedure.html:145(p) -#: doc/reference/en/Groonga/Type.html:417(p) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:258(p) -#: doc/reference/en/Groonga/View.html:265(p) -#: doc/reference/en/Groonga/Column.html:440(p) -#: doc/reference/en/Groonga/PatriciaTrie.html:395(p) -#: doc/reference/en/Groonga/IndexCursor.html:171(p) -#: doc/reference/en/Groonga/Variable.html:175(p) -#: doc/reference/en/Groonga/ViewAccessor.html:123(p) -msgid "" -", , , , , , , , , , , , , , , , , " +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1142(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1316(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1910(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1994(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2168(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2253(a) +#: doc/reference/en/Groonga/Hash.html:37(span) +#: doc/reference/en/Groonga/Record.html:1885(a) +#: doc/reference/en/Groonga/Table.html:117(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:445(a) +msgid "Hash" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:159(h2) -#: doc/reference/en/Groonga/EncodingSupport.html:136(h2) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:225(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:729(h2) -#: doc/reference/en/Groonga/Context.html:981(h2) -#: doc/reference/en/Groonga/Schema.html:2340(h2) -#: doc/reference/en/Groonga/Expression.html:388(h2) -#: doc/reference/en/Groonga/Snippet.html:312(h2) -#: doc/reference/en/Groonga/TableDumper.html:209(h2) -#: doc/reference/en/Groonga/VariableSizeColumn.html:191(h2) -#: doc/reference/en/Groonga/Hash.html:445(h2) -#: doc/reference/en/Groonga/Array.html:389(h2) -#: doc/reference/en/Groonga/FixSizeColumn.html:235(h2) -#: doc/reference/en/Groonga/TableCursor.html:294(h2) -#: doc/reference/en/Groonga/Pagination.html:659(h2) -#: doc/reference/en/Groonga/ViewRecord.html:403(h2) -#: doc/reference/en/Groonga/Database.html:835(h2) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:482(h2) -#: doc/reference/en/Groonga/SchemaDumper.html:211(h2) -#: doc/reference/en/Groonga/Object.html:524(h2) -#: doc/reference/en/Groonga/Record.html:1100(h2) -#: doc/reference/en/Groonga/View.html:461(h2) -#: doc/reference/en/Groonga/DatabaseDumper.html:210(h2) -#: doc/reference/en/Groonga/Column.html:444(h2) -#: doc/reference/en/Groonga/PatriciaTrie.html:619(h2) -#: doc/reference/en/Groonga/IndexCursor.html:175(h2) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:133(h2) -#: doc/reference/en/Groonga/Command/Builder.html:449(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:629(h2) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:390(h2) -#: doc/reference/en/Groonga/Command/Select.html:215(h2) -#: doc/reference/en/Groonga/Posting.html:815(h2) -#: doc/reference/en/Groonga/QueryLog/Parser.html:199(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:628(h2) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:864(h2) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:286(h2) -#: doc/reference/en/Groonga/Table.html:959(h2) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:558(h2) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:199(h2) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:550(h2) -#: doc/reference/en/Groonga/Variable.html:179(h2) -#: doc/reference/en/Groonga/Table/KeySupport.html:450(h2) -#: doc/reference/en/Grn/Table.html:901(h2) -msgid "Instance Method Details" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/TableCursor.html:114(a) +#: doc/reference/en/Groonga/HashCursor.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:452(a) +msgid "HashCursor" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:171(p) -msgid "?????????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/IllegalByteSequence.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:467(a) +msgid "IllegalByteSequence" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:172(code) -msgid "" -"items = Groonga::Array.create(:name => \"Items\") id = items.column(\"_id" -"\") id.name # => nil id.local_name # => \"_id\"" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ImproperLink.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:474(a) +msgid "ImproperLink" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:195(span) -msgid "# File 'ext/groonga/rb-grn-accessor.c'" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:481(a) +msgid "InappropriateIOControlOperation" msgstr "" -#: doc/reference/en/Groonga/Accessor.html:195(pre) -msgid "" -" static VALUE rb_grn_accessor_get_local_name (VALUE self) " -"{ RbGrnAccessor *rb_grn_accessor; RbGrnNamedObject *rb_grn_named_object; " -"rb_grn_accessor = SELF(self); rb_grn_named_object = RB_GRN_NAMED_OBJECT" -"(rb_grn_accessor); if (rb_grn_named_object->name_size == 0) return Qnil; " -"return rb_str_new(rb_grn_named_object->name, rb_grn_named_object->" -"name_size); }" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:488(a) +msgid "IncompatibleFileFormat" msgstr "" -#: doc/reference/en/Groonga/FileExists.html:6(title) -msgid "Exception: Groonga::FileExists — rroonga" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Column.html:131(a) +#: doc/reference/en/Groonga/IndexColumn.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:495(a) +msgid "IndexColumn" msgstr "" -#: doc/reference/en/Groonga/FileExists.html:36(a) -#: doc/reference/en/Groonga/FixSizeColumn.html:36(a) -#: doc/reference/en/Groonga/FileCorrupt.html:36(a) -#: doc/reference/en/Groonga/FilenameTooLong.html:36(a) -#: doc/reference/en/Groonga/FunctionNotImplemented.html:36(a) -#: doc/reference/en/Groonga/FileTooLarge.html:36(a) -msgid "Index (F)" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InputOutputError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:502(a) +msgid "InputOutputError" msgstr "" -#: doc/reference/en/Groonga/FileExists.html:59(h1) -msgid "Exception: Groonga::FileExists" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:509(a) +msgid "InterruptedFunctionCall" msgstr "" -#: doc/reference/en/Groonga/FileExists.html:78(li) -msgid "Groonga::FileExists" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InvalidArgument.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:516(a) +msgid "InvalidArgument" msgstr "" -#: doc/reference/en/Groonga/FileExists.html:101(p) -msgid "???????????????????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InvalidFormat.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:523(a) +msgid "InvalidFormat" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:6(title) -msgid "Module: Groonga::EncodingSupport — rroonga" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/InvalidSeek.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:530(a) +msgid "InvalidSeek" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:36(a) -#: doc/reference/en/Groonga/Schema/Error.html:36(a) -#: doc/reference/en/Groonga/Expression.html:36(a) -#: doc/reference/en/Groonga/Error.html:36(a) -#: doc/reference/en/Groonga/EndOfData.html:36(a) -#: doc/reference/en/Groonga/Encoding.html:36(a) -#: doc/reference/en/Groonga/ExecFormatError.html:36(a) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:36(a) -msgid "Index (E)" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/IsADirectory.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:537(a) +msgid "IsADirectory" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:59(h1) -msgid "Module: Groonga::EncodingSupport" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/LZOError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:603(a) +msgid "LZOError" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:73(dt) -#: doc/reference/en/Groonga/Table/KeySupport.html:77(dt) -msgid "Included in:" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Logger.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:610(a) +msgid "Logger" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:74(a) -#: doc/reference/en/Groonga/Hash.html:91(a) -#: doc/reference/en/Groonga/Hash.html:194(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:91(a) -#: doc/reference/en/Groonga/DoubleArrayTrie.html:226(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:91(a) -#: doc/reference/en/Groonga/PatriciaTrie.html:363(a) -msgid "Table::KeySupport" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NetworkIsDown.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:625(a) +msgid "NetworkIsDown" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:74(dd) -msgid "" -", " +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoBuffer.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:632(a) +msgid "NoBuffer" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:79(dd) -msgid "ext/groonga/rb-grn-encoding-support.c" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoChildProcesses.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:639(a) +msgid "NoChildProcesses" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:86(p) -msgid "????????????????????????????? ??" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoLocksAvailable.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:646(a) +msgid "NoLocksAvailable" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:112(strong) -#: doc/reference/en/Groonga/EncodingSupport.html:142(strong) -#: doc/reference/en/Groonga/Context.html:362(strong) -#: doc/reference/en/Groonga/Context.html:1414(strong) -#: doc/reference/en/Groonga/PatriciaTrie.html:1621(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1624(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1629(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1639(span) -msgid "encoding" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:653(a) +msgid "NoMemoryAvailable" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:125(p) -msgid "???????????????????." +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:660(a) +msgid "NoSpaceLeftOnDevice" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:148(p) -msgid "???????????????????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:667(a) +msgid "NoSuchColumn" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:166(span) -msgid "# File 'ext/groonga/rb-grn-encoding-support.c'" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSuchDevice.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:674(a) +msgid "NoSuchDevice" msgstr "" -#: doc/reference/en/Groonga/EncodingSupport.html:166(pre) -msgid "" -" static VALUE rb_grn_encoding_support_get_encoding (VALUE " -"self) { grn_ctx *context = NULL; grn_obj *object = NULL; grn_obj " -"*encoding_value; grn_encoding encoding; rb_grn_object_deconstruct(SELF" -"(self), &object, &context, NULL, NULL, NULL, NULL); encoding_value = " -"grn_obj_get_info(context, object, GRN_INFO_ENCODING, NULL); " -"rb_grn_context_check(context, self); memcpy(&encoding, GRN_BULK_HEAD" -"(encoding_value), sizeof(encoding)); grn_obj_unlink(context, " -"encoding_value); return GRNENCODING2RVAL(encoding); }" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:681(a) +msgid "NoSuchDeviceOrAddress" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:6(title) -msgid "Exception: Groonga::Schema::Error — rroonga" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:688(a) +msgid "NoSuchFileOrDirectory" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:17(script) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:17(script) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:17(script) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:17(script) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:17(script) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:17(script) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:17(script) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:17(script) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:17(script) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:17(script) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:17(script) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:17(script) -#: doc/reference/en/Groonga/TableCursor/KeySupport.html:17(script) -#: doc/reference/en/Groonga/Command/Builder.html:17(script) -#: doc/reference/en/Groonga/Command/Select.html:17(script) -#: doc/reference/en/Groonga/QueryLog/Parser.html:17(script) -#: doc/reference/en/Groonga/QueryLog/Command.html:17(script) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:17(script) -#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/Parser.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:17(script) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:17(script) -#: doc/reference/en/Groonga/Table/KeySupport.html:17(script) -msgid "relpath = '../..'; if (relpath != '') relpath += '/';" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NoSuchProcess.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:695(a) +msgid "NoSuchProcess" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:59(h1) -msgid "Exception: Groonga::Schema::Error" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NotADirectory.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:702(a) +msgid "NotADirectory" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:78(li) -msgid "Groonga::Schema::Error" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NotEnoughSpace.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:709(a) +msgid "NotEnoughSpace" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:94(dd) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:90(dd) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:94(dd) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:96(dd) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:96(dd) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:96(dd) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:96(dd) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:96(dd) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:96(dd) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:96(dd) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:96(dd) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:96(dd) -#: doc/reference/en/Groonga/Schema.html:90(dd) -msgid "lib/groonga/schema.rb" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/NotSocket.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:716(a) +msgid "NotSocket" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:101(p) -msgid "??????????????????????" +#: doc/reference/en/Groonga.html:116(a) doc/reference/en/Groonga.html:239(a) +#: doc/reference/en/Groonga.html:281(a) doc/reference/en/Groonga.html:322(a) +#: doc/reference/en/Groonga/DoubleArrayCursor.html:79(li) +#: doc/reference/en/Groonga/Logger.html:76(span) +#: doc/reference/en/Groonga/Logger.html:79(li) +#: doc/reference/en/Groonga/TooManyLinks.html:76(span) +#: doc/reference/en/Groonga/TooManyLinks.html:79(li) +#: doc/reference/en/Groonga/OperationNotPermitted.html:76(span) +#: doc/reference/en/Groonga/OperationNotPermitted.html:79(li) +#: doc/reference/en/Groonga/BadFileDescriptor.html:76(span) +#: doc/reference/en/Groonga/BadFileDescriptor.html:79(li) +#: doc/reference/en/Groonga/Accessor.html:76(a) +#: doc/reference/en/Groonga/Accessor.html:79(li) +#: doc/reference/en/Groonga/Accessor.html:81(a) +#: doc/reference/en/Groonga/FileExists.html:76(span) +#: doc/reference/en/Groonga/FileExists.html:79(li) +#: doc/reference/en/Groonga/Schema/Error.html:79(li) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:76(span) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:79(li) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:198(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:244(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:76(span) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:79(li) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:725(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:771(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:816(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:863(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:874(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:884(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:895(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:912(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:966(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1008(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1103(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1187(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1232(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1277(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1361(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1403(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1449(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1501(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1601(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1701(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1747(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1789(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1831(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1874(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:1955(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2039(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2084(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2129(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:2213(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:79(li) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:285(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:327(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:79(li) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:288(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:330(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:79(li) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:320(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:362(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:404(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:79(li) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:289(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:331(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:79(li) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:256(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:79(li) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:256(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:79(li) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:256(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:79(li) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:287(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:329(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:79(li) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:288(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:330(a) +#: doc/reference/en/Groonga/BrokenPipe.html:76(span) +#: doc/reference/en/Groonga/BrokenPipe.html:79(li) +#: doc/reference/en/Groonga/Context.html:76(span) +#: doc/reference/en/Groonga/Context.html:79(li) +#: doc/reference/en/Groonga/Context.html:243(a) +#: doc/reference/en/Groonga/Context.html:305(a) +#: doc/reference/en/Groonga/Context.html:350(a) +#: doc/reference/en/Groonga/Context.html:403(a) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:76(span) +#: doc/reference/en/Groonga/InterruptedFunctionCall.html:79(li) +#: doc/reference/en/Groonga/Schema.html:76(span) +#: doc/reference/en/Groonga/Schema.html:79(li) +#: doc/reference/en/Groonga/Schema.html:867(a) +#: doc/reference/en/Groonga/Schema.html:917(a) +#: doc/reference/en/Groonga/Schema.html:972(a) +#: doc/reference/en/Groonga/Schema.html:1017(a) +#: doc/reference/en/Groonga/Schema.html:1072(a) +#: doc/reference/en/Groonga/Schema.html:1118(a) +#: doc/reference/en/Groonga/Schema.html:1120(a) +#: doc/reference/en/Groonga/Schema.html:1122(a) +#: doc/reference/en/Groonga/Schema.html:1159(a) +#: doc/reference/en/Groonga/Schema.html:1197(a) +#: doc/reference/en/Groonga/Schema.html:1208(a) +#: doc/reference/en/Groonga/Schema.html:1237(a) +#: doc/reference/en/Groonga/Schema.html:1248(a) +#: doc/reference/en/Groonga/Schema.html:1262(a) +#: doc/reference/en/Groonga/Schema.html:1276(a) +#: doc/reference/en/Groonga/Schema.html:1297(a) +#: doc/reference/en/Groonga/Schema.html:1335(a) +#: doc/reference/en/Groonga/Schema.html:1346(a) +#: doc/reference/en/Groonga/Schema.html:1375(a) +#: doc/reference/en/Groonga/Schema.html:1386(a) +#: doc/reference/en/Groonga/Schema.html:1400(a) +#: doc/reference/en/Groonga/Schema.html:1414(a) +#: doc/reference/en/Groonga/Schema.html:1426(a) +#: doc/reference/en/Groonga/Schema.html:1447(a) +#: doc/reference/en/Groonga/Schema.html:1461(a) +#: doc/reference/en/Groonga/Schema.html:1480(a) +#: doc/reference/en/Groonga/Schema.html:1518(a) +#: doc/reference/en/Groonga/Schema.html:1529(a) +#: doc/reference/en/Groonga/Schema.html:1558(a) +#: doc/reference/en/Groonga/Schema.html:1569(a) +#: doc/reference/en/Groonga/Schema.html:1583(a) +#: doc/reference/en/Groonga/Schema.html:1597(a) +#: doc/reference/en/Groonga/Schema.html:1609(a) +#: doc/reference/en/Groonga/Schema.html:1619(a) +#: doc/reference/en/Groonga/Schema.html:1668(a) +#: doc/reference/en/Groonga/Schema.html:1723(a) +#: doc/reference/en/Groonga/Schema.html:1734(a) +#: doc/reference/en/Groonga/Schema.html:1747(a) +#: doc/reference/en/Groonga/Schema.html:1758(a) +#: doc/reference/en/Groonga/Schema.html:1805(a) +#: doc/reference/en/Groonga/Schema.html:1911(a) +#: doc/reference/en/Groonga/Schema.html:1981(a) +#: doc/reference/en/Groonga/Schema.html:1994(a) +#: doc/reference/en/Groonga/Schema.html:2038(a) +#: doc/reference/en/Groonga/Schema.html:2086(a) +#: doc/reference/en/Groonga/Schema.html:2131(a) +#: doc/reference/en/Groonga/Schema.html:2173(a) +#: doc/reference/en/Groonga/Schema.html:2218(a) +#: doc/reference/en/Groonga/Schema.html:2261(a) +#: doc/reference/en/Groonga/Schema.html:2310(a) +#: doc/reference/en/Groonga/Schema.html:2359(a) +#: doc/reference/en/Groonga/Schema.html:2408(a) +#: doc/reference/en/Groonga/Schema.html:2455(a) +#: doc/reference/en/Groonga/Schema.html:2513(a) +#: doc/reference/en/Groonga/Schema.html:2560(a) +#: doc/reference/en/Groonga/Schema.html:2619(a) +#: doc/reference/en/Groonga/Schema.html:2621(a) +#: doc/reference/en/Groonga/Schema.html:2623(a) +#: doc/reference/en/Groonga/Schema.html:2645(a) +#: doc/reference/en/Groonga/Schema.html:2683(a) +#: doc/reference/en/Groonga/Schema.html:2694(a) +#: doc/reference/en/Groonga/Schema.html:2722(a) +#: doc/reference/en/Groonga/Schema.html:2733(a) +#: doc/reference/en/Groonga/Schema.html:2748(a) +#: doc/reference/en/Groonga/Schema.html:2760(a) +#: doc/reference/en/Groonga/Schema.html:2779(a) +#: doc/reference/en/Groonga/Schema.html:2817(a) +#: doc/reference/en/Groonga/Schema.html:2828(a) +#: doc/reference/en/Groonga/Schema.html:2856(a) +#: doc/reference/en/Groonga/Schema.html:2867(a) +#: doc/reference/en/Groonga/Schema.html:2882(a) +#: doc/reference/en/Groonga/Schema.html:2894(a) +#: doc/reference/en/Groonga/Schema.html:2906(a) +#: doc/reference/en/Groonga/Schema.html:2930(a) +#: doc/reference/en/Groonga/Schema.html:2950(a) +#: doc/reference/en/Groonga/Schema.html:2988(a) +#: doc/reference/en/Groonga/Schema.html:3012(a) +#: doc/reference/en/Groonga/Schema.html:3023(a) +#: doc/reference/en/Groonga/Schema.html:3038(a) +#: doc/reference/en/Groonga/Schema.html:3050(a) +#: doc/reference/en/Groonga/Schema.html:3062(a) +#: doc/reference/en/Groonga/Schema.html:3072(a) +#: doc/reference/en/Groonga/Schema.html:3096(a) +#: doc/reference/en/Groonga/Schema.html:3158(a) +#: doc/reference/en/Groonga/Schema.html:3205(a) +#: doc/reference/en/Groonga/Schema.html:3231(a) +#: doc/reference/en/Groonga/Schema.html:3242(a) +#: doc/reference/en/Groonga/Schema.html:3299(a) +#: doc/reference/en/Groonga/Schema.html:3342(a) +#: doc/reference/en/Groonga/Schema.html:3386(a) +#: doc/reference/en/Groonga/Schema.html:3434(a) +#: doc/reference/en/Groonga/Schema.html:3481(a) +#: doc/reference/en/Groonga/Schema.html:3522(a) +#: doc/reference/en/Groonga/Schema.html:3610(a) +#: doc/reference/en/Groonga/Schema.html:3658(a) +#: doc/reference/en/Groonga/Schema.html:3707(a) +#: doc/reference/en/Groonga/Schema.html:3749(a) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:76(span) +#: doc/reference/en/Groonga/UpdateNotAllowed.html:79(li) +#: doc/reference/en/Groonga/ResultTooLarge.html:76(span) +#: doc/reference/en/Groonga/ResultTooLarge.html:79(li) +#: doc/reference/en/Groonga/DomainError.html:76(span) +#: doc/reference/en/Groonga/DomainError.html:79(li) +#: doc/reference/en/Groonga/UnknownError.html:76(span) +#: doc/reference/en/Groonga/UnknownError.html:79(li) +#: doc/reference/en/Groonga/Expression.html:76(a) +#: doc/reference/en/Groonga/Expression.html:79(li) +#: doc/reference/en/Groonga/Expression.html:81(a) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:76(span) +#: doc/reference/en/Groonga/UnsupportedCommandVersion.html:79(li) +#: doc/reference/en/Groonga/Error.html:76(span) +#: doc/reference/en/Groonga/Error.html:79(li) +#: doc/reference/en/Groonga/EndOfData.html:76(span) +#: doc/reference/en/Groonga/EndOfData.html:79(li) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:76(span) +#: doc/reference/en/Groonga/SocketIsNotConnected.html:79(li) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:76(span) +#: doc/reference/en/Groonga/NoSuchFileOrDirectory.html:79(li) +#: doc/reference/en/Groonga/InvalidSeek.html:76(span) +#: doc/reference/en/Groonga/InvalidSeek.html:79(li) +#: doc/reference/en/Groonga/ViewCursor.html:79(li) +#: doc/reference/en/Groonga/ObjectClosed.html:76(span) +#: doc/reference/en/Groonga/ObjectClosed.html:79(li) +#: doc/reference/en/Groonga/Snippet.html:76(span) +#: doc/reference/en/Groonga/Snippet.html:79(li) +#: doc/reference/en/Groonga/ImproperLink.html:76(span) +#: doc/reference/en/Groonga/ImproperLink.html:79(li) +#: doc/reference/en/Groonga/TableDumper.html:76(span) +#: doc/reference/en/Groonga/TableDumper.html:79(li) +#: doc/reference/en/Groonga/TableDumper.html:226(a) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:76(span) +#: doc/reference/en/Groonga/ArgumentListTooLong.html:79(li) +#: doc/reference/en/Groonga/TooSmallLimit.html:76(span) +#: doc/reference/en/Groonga/TooSmallLimit.html:79(li) +#: doc/reference/en/Groonga/VariableSizeColumn.html:79(li) +#: doc/reference/en/Groonga/VariableSizeColumn.html:81(a) +#: doc/reference/en/Groonga/NoSuchColumn.html:76(span) +#: doc/reference/en/Groonga/NoSuchColumn.html:79(li) +#: doc/reference/en/Groonga/Hash.html:79(li) +#: doc/reference/en/Groonga/Hash.html:81(a) +#: doc/reference/en/Groonga/Array.html:79(li) +#: doc/reference/en/Groonga/Array.html:81(a) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:76(span) +#: doc/reference/en/Groonga/SocketIsAlreadyConnected.html:79(li) +#: doc/reference/en/Groonga/ConnectionRefused.html:76(span) +#: doc/reference/en/Groonga/ConnectionRefused.html:79(li) +#: doc/reference/en/Groonga/OperationWouldBlock.html:76(span) +#: doc/reference/en/Groonga/OperationWouldBlock.html:79(li) +#: doc/reference/en/Groonga/FixSizeColumn.html:79(li) +#: doc/reference/en/Groonga/FixSizeColumn.html:81(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:79(li) +#: doc/reference/en/Groonga/TooSmallPageSize.html:270(a) +#: doc/reference/en/Groonga/TooSmallPageSize.html:312(a) +#: doc/reference/en/Groonga/TableCursor.html:76(span) +#: doc/reference/en/Groonga/TableCursor.html:79(li) +#: doc/reference/en/Groonga/Procedure.html:69(a) +#: doc/reference/en/Groonga/Procedure.html:72(li) +#: doc/reference/en/Groonga/Procedure.html:74(a) +#: doc/reference/en/Groonga/Procedure.html:144(a) +#: doc/reference/en/Groonga/CASError.html:76(span) +#: doc/reference/en/Groonga/CASError.html:79(li) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:76(span) +#: doc/reference/en/Groonga/TooManyOpenFilesInSystem.html:79(li) +#: doc/reference/en/Groonga/Pagination.html:533(a) +#: doc/reference/en/Groonga/Pagination.html:575(a) +#: doc/reference/en/Groonga/Pagination.html:617(a) +#: doc/reference/en/Groonga/Pagination.html:659(a) +#: doc/reference/en/Groonga/Pagination.html:705(a) +#: doc/reference/en/Groonga/Pagination.html:750(a) +#: doc/reference/en/Groonga/Pagination.html:997(a) +#: doc/reference/en/Groonga/Pagination.html:1088(a) +#: doc/reference/en/Groonga/Pagination.html:1127(a) +#: doc/reference/en/Groonga/Pagination.html:1167(a) +#: doc/reference/en/Groonga/Pagination.html:1208(a) +#: doc/reference/en/Groonga/Pagination.html:1248(a) +#: doc/reference/en/Groonga/InputOutputError.html:76(span) +#: doc/reference/en/Groonga/InputOutputError.html:79(li) +#: doc/reference/en/Groonga/ViewRecord.html:76(span) +#: doc/reference/en/Groonga/ViewRecord.html:79(li) +#: doc/reference/en/Groonga/ViewRecord.html:303(a) +#: doc/reference/en/Groonga/ViewRecord.html:345(a) +#: doc/reference/en/Groonga/ViewRecord.html:387(a) +#: doc/reference/en/Groonga/ViewRecord.html:433(a) +#: doc/reference/en/Groonga/ViewRecord.html:475(a) +#: doc/reference/en/Groonga/Type.html:76(span) +#: doc/reference/en/Groonga/Type.html:79(li) +#: doc/reference/en/Groonga/OperationTimeout.html:76(span) +#: doc/reference/en/Groonga/OperationTimeout.html:79(li) +#: doc/reference/en/Groonga/Database.html:76(span) +#: doc/reference/en/Groonga/Database.html:79(li) +#: doc/reference/en/Groonga/InvalidArgument.html:76(span) +#: doc/reference/en/Groonga/InvalidArgument.html:79(li) +#: doc/reference/en/Groonga/SyntaxError.html:76(span) +#: doc/reference/en/Groonga/SyntaxError.html:79(li) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:79(li) +#: doc/reference/en/Groonga/DoubleArrayTrie.html:81(a) +#: doc/reference/en/Groonga/StackOverFlow.html:76(span) +#: doc/reference/en/Groonga/StackOverFlow.html:79(li) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:76(span) +#: doc/reference/en/Groonga/NoMemoryAvailable.html:79(li) +#: doc/reference/en/Groonga/SchemaDumper.html:76(span) +#: doc/reference/en/Groonga/SchemaDumper.html:79(li) +#: doc/reference/en/Groonga/SchemaDumper.html:228(a) +#: doc/reference/en/Groonga/Object.html:37(span) +#: doc/reference/en/Groonga/Object.html:76(span) +#: doc/reference/en/Groonga/Object.html:79(li) +#: doc/reference/en/Groonga/NoSuchProcess.html:76(span) +#: doc/reference/en/Groonga/NoSuchProcess.html:79(li) +#: doc/reference/en/Groonga/HashCursor.html:79(li) +#: doc/reference/en/Groonga/TooSmallOffset.html:76(span) +#: doc/reference/en/Groonga/TooSmallOffset.html:79(li) +#: doc/reference/en/Groonga/NoLocksAvailable.html:76(span) +#: doc/reference/en/Groonga/NoLocksAvailable.html:79(li) +#: doc/reference/en/Groonga/RangeError.html:76(span) +#: doc/reference/en/Groonga/RangeError.html:79(li) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:76(span) +#: doc/reference/en/Groonga/IncompatibleFileFormat.html:79(li) +#: doc/reference/en/Groonga/FileCorrupt.html:76(span) +#: doc/reference/en/Groonga/FileCorrupt.html:79(li) +#: doc/reference/en/Groonga/Record.html:76(span) +#: doc/reference/en/Groonga/Record.html:79(li) +#: doc/reference/en/Groonga/Record.html:1042(a) +#: doc/reference/en/Groonga/Record.html:1112(a) +#: doc/reference/en/Groonga/Record.html:1158(a) +#: doc/reference/en/Groonga/Record.html:1201(a) +#: doc/reference/en/Groonga/Record.html:1240(a) +#: doc/reference/en/Groonga/Record.html:1332(a) +#: doc/reference/en/Groonga/Record.html:1372(a) +#: doc/reference/en/Groonga/Record.html:1416(a) +#: doc/reference/en/Groonga/Record.html:1456(a) +#: doc/reference/en/Groonga/Record.html:1495(a) +#: doc/reference/en/Groonga/Record.html:1535(a) +#: doc/reference/en/Groonga/Record.html:1626(a) +#: doc/reference/en/Groonga/Record.html:1719(a) +#: doc/reference/en/Groonga/Record.html:1812(a) +#: doc/reference/en/Groonga/Record.html:1861(a) +#: doc/reference/en/Groonga/Record.html:1999(a) +#: doc/reference/en/Groonga/Record.html:2041(a) +#: doc/reference/en/Groonga/Record.html:2081(a) +#: doc/reference/en/Groonga/Record.html:2130(a) +#: doc/reference/en/Groonga/Record.html:2278(a) +#: doc/reference/en/Groonga/Record.html:2318(a) +#: doc/reference/en/Groonga/Record.html:2375(a) +#: doc/reference/en/Groonga/Record.html:2575(a) +#: doc/reference/en/Groonga/Record.html:2667(a) +#: doc/reference/en/Groonga/Record.html:2706(a) +#: doc/reference/en/Groonga/BadAddress.html:76(span) +#: doc/reference/en/Groonga/BadAddress.html:79(li) +#: doc/reference/en/Groonga/ExecFormatError.html:76(span) +#: doc/reference/en/Groonga/ExecFormatError.html:79(li) +#: doc/reference/en/Groonga/View.html:79(li) +#: doc/reference/en/Groonga/View.html:81(a) +#: doc/reference/en/Groonga/FilenameTooLong.html:76(span) +#: doc/reference/en/Groonga/FilenameTooLong.html:79(li) +#: doc/reference/en/Groonga/DatabaseDumper.html:76(span) +#: doc/reference/en/Groonga/DatabaseDumper.html:79(li) +#: doc/reference/en/Groonga/DatabaseDumper.html:227(a) +#: doc/reference/en/Groonga/DoubleArrayTrieCursor.html:72(li) +#: doc/reference/en/Groonga/ZLibError.html:76(span) +#: doc/reference/en/Groonga/ZLibError.html:79(li) +#: doc/reference/en/Groonga/TooLargeOffset.html:76(span) +#: doc/reference/en/Groonga/TooLargeOffset.html:79(li) +#: doc/reference/en/Groonga/NotSocket.html:76(span) +#: doc/reference/en/Groonga/NotSocket.html:79(li) +#: doc/reference/en/Groonga/TokenizerError.html:76(span) +#: doc/reference/en/Groonga/TokenizerError.html:79(li) +#: doc/reference/en/Groonga/NoSuchDevice.html:76(span) +#: doc/reference/en/Groonga/NoSuchDevice.html:79(li) +#: doc/reference/en/Groonga/Column.html:76(a) +#: doc/reference/en/Groonga/Column.html:79(li) +#: doc/reference/en/Groonga/Column.html:81(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:76(span) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:79(li) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:76(span) +#: doc/reference/en/Groonga/FunctionNotImplemented.html:79(li) +#: doc/reference/en/Groonga/NotADirectory.html:76(span) +#: doc/reference/en/Groonga/NotADirectory.html:79(li) +#: doc/reference/en/Groonga/Closed.html:76(span) +#: doc/reference/en/Groonga/Closed.html:79(li) +#: doc/reference/en/Groonga/ResourceBusy.html:76(span) +#: doc/reference/en/Groonga/ResourceBusy.html:79(li) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:76(span) +#: doc/reference/en/Groonga/NoSpaceLeftOnDevice.html:79(li) +#: doc/reference/en/Groonga/PatriciaTrie.html:79(li) +#: doc/reference/en/Groonga/PatriciaTrie.html:81(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:188(a) +#: doc/reference/en/Groonga/ObjectCorrupt.html:76(span) +#: doc/reference/en/Groonga/ObjectCorrupt.html:79(li) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:76(span) +#: doc/reference/en/Groonga/TooManyOpenFiles.html:79(li) +#: doc/reference/en/Groonga/PermissionDenied.html:76(span) +#: doc/reference/en/Groonga/PermissionDenied.html:79(li) +#: doc/reference/en/Groonga/IndexCursor.html:69(a) +#: doc/reference/en/Groonga/IndexCursor.html:72(li) +#: doc/reference/en/Groonga/IndexCursor.html:74(a) +#: doc/reference/en/Groonga/IndexCursor.html:170(a) +#: doc/reference/en/Groonga/IndexCursor.html:181(a) +#: doc/reference/en/Groonga/IndexCursor.html:191(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:76(span) +#: doc/reference/en/Groonga/OperationNotSupported.html:79(li) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:76(span) +#: doc/reference/en/Groonga/InappropriateIOControlOperation.html:79(li) +#: doc/reference/en/Groonga/InvalidFormat.html:76(span) +#: doc/reference/en/Groonga/InvalidFormat.html:79(li) +#: doc/reference/en/Groonga/Command/Builder.html:76(span) +#: doc/reference/en/Groonga/Command/Builder.html:79(li) +#: doc/reference/en/Groonga/Command/Builder.html:355(a) +#: doc/reference/en/Groonga/Command/Builder.html:397(a) +#: doc/reference/en/Groonga/Command/Builder.html:443(a) +#: doc/reference/en/Groonga/Command/Builder.html:481(a) +#: doc/reference/en/Groonga/Command/Builder.html:511(a) +#: doc/reference/en/Groonga/Command/Builder.html:541(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:79(li) +#: doc/reference/en/Groonga/Command/Select/Result.html:217(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:263(a) +#: doc/reference/en/Groonga/Command/Select/Result.html:319(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:79(li) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:235(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:255(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:293(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:313(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:351(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:371(a) +#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:413(a) +#: doc/reference/en/Groonga/Command/Select.html:76(span) +#: doc/reference/en/Groonga/Command/Select.html:79(li) +#: doc/reference/en/Groonga/Command/Select.html:232(a) +#: doc/reference/en/Groonga/Posting.html:76(span) +#: doc/reference/en/Groonga/Posting.html:79(li) +#: doc/reference/en/Groonga/Posting.html:397(a) +#: doc/reference/en/Groonga/Posting.html:458(a) +#: doc/reference/en/Groonga/Posting.html:514(a) +#: doc/reference/en/Groonga/Posting.html:570(a) +#: doc/reference/en/Groonga/Posting.html:626(a) +#: doc/reference/en/Groonga/Posting.html:682(a) +#: doc/reference/en/Groonga/Posting.html:738(a) +#: doc/reference/en/Groonga/Posting.html:794(a) +#: doc/reference/en/Groonga/Posting.html:854(a) +#: doc/reference/en/Groonga/Posting.html:923(a) +#: doc/reference/en/Groonga/RetryMax.html:76(span) +#: doc/reference/en/Groonga/RetryMax.html:79(li) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:76(span) +#: doc/reference/en/Groonga/SocketIsAlreadyShutdowned.html:79(li) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:76(span) +#: doc/reference/en/Groonga/AddressIsNotAvailable.html:79(li) +#: doc/reference/en/Groonga/NetworkIsDown.html:76(span) +#: doc/reference/en/Groonga/NetworkIsDown.html:79(li) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:76(span) +#: doc/reference/en/Groonga/DirectoryNotEmpty.html:79(li) +#: doc/reference/en/Groonga/AddressIsInUse.html:76(span) +#: doc/reference/en/Groonga/AddressIsInUse.html:79(li) +#: doc/reference/en/Groonga/NoBuffer.html:76(span) +#: doc/reference/en/Groonga/NoBuffer.html:79(li) +#: doc/reference/en/Groonga/IndexColumn.html:79(li) +#: doc/reference/en/Groonga/IndexColumn.html:81(a) +#: doc/reference/en/Groonga/QueryLog/Parser.html:76(span) +#: doc/reference/en/Groonga/QueryLog/Parser.html:79(li) +#: doc/reference/en/Groonga/QueryLog/Parser.html:216(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:76(span) +#: doc/reference/en/Groonga/QueryLog/Command.html:79(li) +#: doc/reference/en/Groonga/QueryLog/Command.html:464(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:506(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:548(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:594(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:632(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:668(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:754(a) +#: doc/reference/en/Groonga/QueryLog/Command.html:818(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:76(span) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:79(li) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:623(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:665(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:707(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:749(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:791(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:833(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:875(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:921(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:951(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:981(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1057(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1087(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1119(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1149(a) +#: doc/reference/en/Groonga/QueryLog/Statistic.html:1291(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:79(li) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:307(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:347(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:377(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:407(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:437(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:467(a) +#: doc/reference/en/Groonga/QueryLog/SelectCommand.html:497(a) +#: doc/reference/en/Groonga/Table.html:76(a) +#: doc/reference/en/Groonga/Table.html:79(li) +#: doc/reference/en/Groonga/Table.html:81(a) +#: doc/reference/en/Groonga/Table.html:185(a) +#: doc/reference/en/Groonga/SocketNotInitialized.html:76(span) +#: doc/reference/en/Groonga/SocketNotInitialized.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:76(span) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:592(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:622(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:652(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:682(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:712(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:742(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:772(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:802(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:832(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:862(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:892(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:922(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:952(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:982(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1012(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1042(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1072(a) +#: doc/reference/en/Groonga/GrntestLog/EnvironmentEvent.html:1102(a) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:76(span) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/Parser.html:216(a) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:76(span) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:229(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:76(span) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:403(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:445(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:487(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:529(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:571(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:613(a) +#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:655(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:285(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:305(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:343(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:363(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:401(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:421(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:459(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:479(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:517(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:537(a) +#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:579(a) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:76(span) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:79(li) +#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:229(a) +#: doc/reference/en/Groonga/TooSmallPage.html:79(li) +#: doc/reference/en/Groonga/TooSmallPage.html:270(a) +#: doc/reference/en/Groonga/TooSmallPage.html:312(a) +#: doc/reference/en/Groonga/Plugin.html:76(span) +#: doc/reference/en/Groonga/Plugin.html:79(li) +#: doc/reference/en/Groonga/TooLargePage.html:79(li) +#: doc/reference/en/Groonga/TooLargePage.html:270(a) +#: doc/reference/en/Groonga/TooLargePage.html:312(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:76(span) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:79(li) +#: doc/reference/en/Groonga/Variable.html:76(a) +#: doc/reference/en/Groonga/Variable.html:79(li) +#: doc/reference/en/Groonga/Variable.html:81(a) +#: doc/reference/en/Groonga/IsADirectory.html:76(span) +#: doc/reference/en/Groonga/IsADirectory.html:79(li) +#: doc/reference/en/Groonga/IllegalByteSequence.html:76(span) +#: doc/reference/en/Groonga/IllegalByteSequence.html:79(li) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:76(span) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:79(li) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:79(li) +#: doc/reference/en/Groonga/FileTooLarge.html:76(span) +#: doc/reference/en/Groonga/FileTooLarge.html:79(li) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:76(span) +#: doc/reference/en/Groonga/TooManySymbolicLinks.html:79(li) +#: doc/reference/en/Groonga/LZOError.html:76(span) +#: doc/reference/en/Groonga/LZOError.html:79(li) +#: doc/reference/en/Groonga/NotEnoughSpace.html:76(span) +#: doc/reference/en/Groonga/NotEnoughSpace.html:79(li) +#: doc/reference/en/Groonga/NoChildProcesses.html:76(span) +#: doc/reference/en/Groonga/NoChildProcesses.html:79(li) +#: doc/reference/en/Groonga/ArrayCursor.html:79(li) +#: doc/reference/en/Groonga/ViewAccessor.html:76(a) +#: doc/reference/en/Groonga/ViewAccessor.html:79(li) +#: doc/reference/en/Groonga/ViewAccessor.html:81(a) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:76(span) +#: doc/reference/en/Groonga/NoSuchDeviceOrAddress.html:79(li) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/Grn/Table.html:72(li) +#: doc/reference/en/Grn/Table.html:890(tt) +#: doc/reference/en/Grn/Table.html:980(tt) +#: doc/reference/en/Grn/Table.html:1170(tt) +#: doc/reference/en/Grn/Table.html:1172(tt) +#: doc/reference/en/Grn/Table.html:1321(tt) +#: doc/reference/en/Grn/Table.html:1323(tt) +#: doc/reference/en/Grn/Table.html:1650(tt) +#: doc/reference/en/Grn/Table.html:1858(tt) +#: doc/reference/en/Grn/Table.html:1906(tt) +#: doc/reference/en/Grn/Table.html:2078(tt) +#: doc/reference/en/Grn/Table.html:2264(tt) +#: doc/reference/en/Grn/Table.html:2266(tt) +#: doc/reference/en/Grn/Table.html:2288(tt) +#: doc/reference/en/Grn/Table.html:2421(tt) +#: doc/reference/en/Grn/Table.html:2584(tt) +#: doc/reference/en/Grn/Table.html:2633(tt) +#: doc/reference/en/Grn/Table.html:2790(tt) +#: doc/reference/en/Grn/Table.html:3140(tt) +#: doc/reference/en/Grn/Table.html:3142(tt) +#: doc/reference/en/Grn/Table.html:3212(tt) +#: doc/reference/en/Grn/Table.html:3214(tt) +#: doc/reference/en/Grn/Table.html:3282(tt) +#: doc/reference/en/Grn/Table.html:3476(tt) +#: doc/reference/en/Grn/Table.html:3516(tt) +#: doc/reference/en/Grn/Table.html:3563(tt) +#: doc/reference/en/Grn/Table.html:3675(tt) +#: doc/reference/en/Grn/Table.html:3757(tt) +#: doc/reference/en/Grn/Table.html:3759(tt) +#: doc/reference/en/_index.html:731(a) +msgid "Object" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:109(h2) -#: doc/reference/en/Groonga/Error.html:107(h2) -#: doc/reference/en/Groonga/TableCursor.html:110(h2) -#: doc/reference/en/Groonga/Object.html:107(h2) -#: doc/reference/en/Groonga/Column.html:123(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:96(h2) -#: doc/reference/en/Groonga/Table.html:115(h2) -msgid "Direct Known Subclasses" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ObjectClosed.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:738(a) +msgid "ObjectClosed" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:39(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:222(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:197(a) -msgid "ColumnCreationWithDifferentOptions" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ObjectCorrupt.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:745(a) +msgid "ObjectCorrupt" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:39(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:197(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:204(a) -msgid "ColumnNotExists" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/OperationNotPermitted.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:752(a) +msgid "OperationNotPermitted" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:39(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:222(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1050(a) -msgid "TableCreationWithDifferentOptions" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/OperationNotSupported.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:759(a) +msgid "OperationNotSupported" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:39(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:197(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1078(a) -msgid "TableNotExists" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/OperationTimeout.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:766(a) +msgid "OperationTimeout" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:39(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:221(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1184(a) -msgid "UnguessableReferenceTable" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/OperationWouldBlock.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:773(a) +msgid "OperationWouldBlock" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:39(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:221(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1198(a) -msgid "UnknownIndexTarget" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/PatriciaTrie.html:37(span) +#: doc/reference/en/Groonga/PatriciaTrie.html:212(span) +#: doc/reference/en/Groonga/Table.html:117(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:809(a) +msgid "PatriciaTrie" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:39(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:197(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1205(a) -msgid "UnknownIndexTargetTable" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/TableCursor.html:114(a) +#: doc/reference/en/Groonga/PatriciaTrieCursor.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:816(a) +msgid "PatriciaTrieCursor" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:39(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:245(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1212(a) -msgid "UnknownOptions" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/PermissionDenied.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:823(a) +msgid "PermissionDenied" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(a) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:39(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:221(a) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1219(a) -msgid "UnknownTableType" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Context.html:390(span) +#: doc/reference/en/Groonga/Context.html:392(span) +#: doc/reference/en/Groonga/Plugin.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:830(a) +msgid "Plugin" msgstr "" -#: doc/reference/en/Groonga/Schema/Error.html:110(p) -msgid "" -", , , , , , , , " -msgstr "" - -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:6(title) -msgid "Class: Groonga::Schema::ViewDefinition — rroonga" -msgstr "" - -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:36(a) -#: doc/reference/en/Groonga/ViewCursor.html:36(a) -#: doc/reference/en/Groonga/VariableSizeColumn.html:36(a) -#: doc/reference/en/Groonga/ViewRecord.html:36(a) -#: doc/reference/en/Groonga/View.html:36(a) -#: doc/reference/en/Groonga/Variable.html:36(a) -#: doc/reference/en/Groonga/ViewAccessor.html:36(a) -msgid "Index (V)" -msgstr "" - -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:39(span) -#: doc/reference/en/Groonga/Schema.html:136(a) -#: doc/reference/en/Groonga/Schema.html:2540(span) -#: doc/reference/en/Groonga/Schema.html:3217(span) -#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:1283(a) -msgid "ViewDefinition" -msgstr "" - -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:59(h1) -msgid "Class: Groonga::Schema::ViewDefinition" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Posting.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:837(a) +msgid "Posting" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:74(li) -#: doc/reference/en/method_list.html:214(small) -#: doc/reference/en/method_list.html:2118(small) -msgid "Groonga::Schema::ViewDefinition" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/RangeError.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:870(a) +msgid "RangeError" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:97(p) -msgid "" -"????????Groonga::Schema.create_view? Groonga::Schema#create_view??" -"??????????? ??????" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ReadOnlyFileSystem.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:877(a) +msgid "ReadOnlyFileSystem" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:113(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:117(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:114(h2) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:115(h2) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:114(h2) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:114(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:114(h2) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:114(h2) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:114(h2) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:114(h2) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:115(h2) -#: doc/reference/en/Groonga/TooSmallPageSize.html:103(h2) -#: doc/reference/en/Groonga/Pagination.html:95(h2) -#: doc/reference/en/Groonga/ViewRecord.html:99(h2) -#: doc/reference/en/Groonga/Record.html:99(h2) -#: doc/reference/en/Groonga/Command/Builder.html:99(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:111(h2) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:101(h2) -#: doc/reference/en/Groonga/Posting.html:122(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:115(h2) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:99(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:99(h2) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:99(h2) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:101(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:99(h2) -#: doc/reference/en/Groonga/TooSmallPage.html:103(h2) -#: doc/reference/en/Groonga/TooLargePage.html:103(h2) -msgid "Instance Attribute Summary " +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Record.html:37(span) +#: doc/reference/en/Groonga/Record.html:975(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:884(a) +msgid "Record" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:126(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:130(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:127(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:151(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:128(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:152(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:127(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:151(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:175(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:127(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:151(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:127(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:127(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:127(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:127(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:151(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:128(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:152(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:116(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:140(span) -#: doc/reference/en/Groonga/Pagination.html:108(span) -#: doc/reference/en/Groonga/Pagination.html:132(span) -#: doc/reference/en/Groonga/Pagination.html:156(span) -#: doc/reference/en/Groonga/Pagination.html:180(span) -#: doc/reference/en/Groonga/ViewRecord.html:112(span) -#: doc/reference/en/Groonga/ViewRecord.html:136(span) -#: doc/reference/en/Groonga/Record.html:112(span) -#: doc/reference/en/Groonga/Command/Builder.html:112(span) -#: doc/reference/en/Groonga/Command/Builder.html:136(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:128(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:176(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:112(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:136(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:160(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:184(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:256(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:112(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:112(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:136(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:160(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:184(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:208(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:232(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:256(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:112(span) -#: doc/reference/en/Groonga/TooSmallPage.html:116(span) -#: doc/reference/en/Groonga/TooSmallPage.html:140(span) -#: doc/reference/en/Groonga/TooLargePage.html:116(span) -#: doc/reference/en/Groonga/TooLargePage.html:140(span) -msgid "readonly" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ResourceBusy.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:891(a) +msgid "ResourceBusy" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:135(p) -msgid "??????." +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ResourceDeadlockAvoided.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:898(a) +msgid "ResourceDeadlockAvoided" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:156(strong) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:231(strong) -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:259(span) -#: doc/reference/en/Groonga/Array.html:159(strong) -#: doc/reference/en/Groonga/Array.html:395(strong) -#: doc/reference/en/Groonga/Array.html:422(span) -#: doc/reference/en/Groonga/Array.html:425(span) -#: doc/reference/en/Groonga/Array.html:428(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1515(span) -#: doc/reference/en/Groonga/PatriciaTrie.html:1516(span) -#: doc/reference/en/Groonga/Table.html:3174(span) -#: doc/reference/en/Groonga/Table.html:3175(span) -#: doc/reference/en/Groonga/Table.html:3176(span) -#: doc/reference/en/Groonga/Table/KeySupport.html:159(strong) -#: doc/reference/en/Groonga/Table/KeySupport.html:599(strong) -#: doc/reference/en/Grn/Table.html:2959(span) -#: doc/reference/en/Grn/Table.html:2960(span) -#: doc/reference/en/Grn/Table.html:2961(span) -msgid "add" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ResourceTemporarilyUnavailable.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:905(a) +msgid "ResourceTemporarilyUnavailable" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:156(a) -#: doc/reference/en/Groonga/View.html:160(a) -msgid "- (Object) (table)" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/ResultTooLarge.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:919(a) +msgid "ResultTooLarge" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:169(p) -msgid "???_table_???????????????." +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/RetryMax.html:37(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:926(a) +msgid "RetryMax" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:179(h2) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:683(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:262(h2) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:265(h2) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:294(h2) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:266(h2) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:236(h2) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:236(h2) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:236(h2) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:264(h2) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:265(h2) -#: doc/reference/en/Groonga/TooSmallPageSize.html:248(h2) -#: doc/reference/en/Groonga/Pagination.html:493(h2) -#: doc/reference/en/Groonga/ViewRecord.html:317(h2) -#: doc/reference/en/Groonga/Record.html:1054(h2) -#: doc/reference/en/Groonga/Command/Builder.html:327(h2) -#: doc/reference/en/Groonga/Command/Select/Result.html:301(h2) -#: doc/reference/en/Groonga/Command/Select/Result/DrillDownResult.html:216(h2) -#: doc/reference/en/Groonga/Posting.html:431(h2) -#: doc/reference/en/Groonga/QueryLog/Command.html:432(h2) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:578(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:208(h2) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:364(h2) -#: doc/reference/en/Groonga/GrntestLog/TaskEvent.html:264(h2) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:208(h2) -#: doc/reference/en/Groonga/TooSmallPage.html:248(h2) -#: doc/reference/en/Groonga/TooLargePage.html:248(h2) -msgid "Instance Attribute Details" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Schema/Error.html:35(a) +#: doc/reference/en/Groonga/Schema/ViewDefinition.html:35(a) +#: doc/reference/en/Groonga/Schema/TableDefinition.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:35(a) +#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownOptions.html:35(a) +#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:35(a) +#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:35(a) +#: doc/reference/en/Groonga/Schema/TableNotExists.html:35(a) +#: doc/reference/en/Groonga/Schema/UnknownTableType.html:35(a) +#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:35(a) +#: doc/reference/en/Groonga/Schema.html:37(span) +#: doc/reference/en/Groonga/Schema.html:119(span) +#: doc/reference/en/Groonga/Schema.html:824(a) +#: doc/reference/en/Groonga/Schema.html:927(span) +#: doc/reference/en/Groonga/Schema.html:1027(span) +#: doc/reference/en/Groonga/Schema.html:1146(span) +#: doc/reference/en/Groonga/Schema.html:1678(span) +#: doc/reference/en/Groonga/Schema.html:1927(span) +#: doc/reference/en/Groonga/Schema.html:1932(span) +#: doc/reference/en/Groonga/Schema.html:1934(span) +#: doc/reference/en/Groonga/Schema.html:1941(span) +#: doc/reference/en/Groonga/Schema.html:2048(span) +#: doc/reference/en/Groonga/Schema.html:2271(span) +#: doc/reference/en/Groonga/Schema.html:2321(span) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:941(a) +msgid "Schema" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:187(span) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:691(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:270(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:310(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:273(span) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:313(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:302(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:342(span) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:382(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:274(span) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:314(span) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:244(span) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:244(span) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:244(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:272(span) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:312(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:273(span) -#: doc/reference/en/Groonga/Schema/ColumnCreationWithDifferentOptions.html:313(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:256(span) -#: doc/reference/en/Groonga/TooSmallPageSize.html:296(span) -#: doc/reference/en/Groonga/Pagination.html:501(span) -#: doc/reference/en/Groonga/Pagination.html:541(span) -#: doc/reference/en/Groonga/Pagination.html:581(span) -#: doc/reference/en/Groonga/Pagination.html:621(span) -#: doc/reference/en/Groonga/ViewRecord.html:325(span) -#: doc/reference/en/Groonga/ViewRecord.html:365(span) -#: doc/reference/en/Groonga/Record.html:1062(span) -#: doc/reference/en/Groonga/Command/Builder.html:335(span) -#: doc/reference/en/Groonga/Command/Builder.html:375(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:440(span) -#: doc/reference/en/Groonga/QueryLog/Command.html:520(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:586(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:626(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:666(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:706(span) -#: doc/reference/en/Groonga/QueryLog/Statistic.html:826(span) -#: doc/reference/en/Groonga/GrntestLog/JobsEndEvent.html:216(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:372(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:412(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:452(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:492(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:532(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:572(span) -#: doc/reference/en/Groonga/GrntestLog/JobSummaryEvent.html:612(span) -#: doc/reference/en/Groonga/GrntestLog/JobsStartEvent.html:216(span) -#: doc/reference/en/Groonga/TooSmallPage.html:256(span) -#: doc/reference/en/Groonga/TooSmallPage.html:296(span) -#: doc/reference/en/Groonga/TooLargePage.html:256(span) -#: doc/reference/en/Groonga/TooLargePage.html:296(span) -msgid "(readonly)" +#: doc/reference/en/Groonga.html:116(a) +#: doc/reference/en/Groonga/Schema.html:3374(span) +#: doc/reference/en/Groonga/SchemaDumper.html:37(span) +#: doc/reference/en/Groonga/SchemaDumper.html:182(a) +#: doc/reference/en/class_list.html:48(a) doc/reference/en/_index.html:948(a) +msgid "SchemaDumper" msgstr "" -#: doc/reference/en/Groonga/Schema/ViewDefinition.html:185(p) -#: doc/reference/en/Groonga/Schema/TableDefinition.html:689(p) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:268(p) -#: doc/reference/en/Groonga/Schema/UnknownIndexTarget.html:308(p) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:271(p) -#: doc/reference/en/Groonga/Schema/TableCreationWithDifferentOptions.html:311(p) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:300(p) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:340(p) -#: doc/reference/en/Groonga/Schema/UnknownOptions.html:380(p) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:272(p) -#: doc/reference/en/Groonga/Schema/UnguessableReferenceTable.html:312(p) -#: doc/reference/en/Groonga/Schema/UnknownIndexTargetTable.html:242(p) -#: doc/reference/en/Groonga/Schema/ColumnNotExists.html:242(p) -#: doc/reference/en/Groonga/Schema/TableNotExists.html:242(p) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:270(p) -#: doc/reference/en/Groonga/Schema/UnknownTableType.html:310(p) -#: doc/refer