From null+ranguba at clear-code.com Fri Sep 2 09:23:32 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 02 Sep 2011 13:23:32 +0000 Subject: [groonga-commit:3975] ranguba/rroonga [master] support "!=" expression operater in Ruby 1.9. Message-ID: <20110902132647.C35C52C418B@taiyaki.ru> Kouhei Sutou 2011-09-02 13:23:32 +0000 (Fri, 02 Sep 2011) New Revision: 8ff1e18ffd260967894901e54646422cc7da0a9e Log: support "!=" expression operater in Ruby 1.9. Added files: lib/groonga/expression-builder-19.rb Modified files: lib/groonga/expression-builder.rb test/groonga-test-utils.rb test/test-table-select.rb Added: lib/groonga/expression-builder-19.rb (+40 -0) 100644 =================================================================== --- /dev/null +++ lib/groonga/expression-builder-19.rb 2011-09-02 13:23:32 +0000 (dfc5c6d) @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2011 Kouhei Sutou +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU 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 USA + +module Groonga + module ExpressionBuildable + class ColumnValueExpressionBuilder + def !=(other) + NotEqualExpressionBuilder.new(self, normalize(other)) + end + end + + # @private + class NotEqualExpressionBuilder < BinaryExpressionBuilder + def initialize(column_value_builder, value) + super(Groonga::Operation::NOT_EQUAL, column_value_builder, value) + end + end + end + + # @private + class ColumnExpressionBuilder + def !=(other) + column_value_builder != other + end + end +end Modified: lib/groonga/expression-builder.rb (+4 -0) =================================================================== --- lib/groonga/expression-builder.rb 2011-08-28 15:50:25 +0000 (1bed748) +++ lib/groonga/expression-builder.rb 2011-09-02 13:23:32 +0000 (410acbb) @@ -564,3 +564,7 @@ module Groonga end end end + +if RUBY_VERSION >= "1.9" + require "groonga/expression-builder-19" +end Modified: test/groonga-test-utils.rb (+8 -0) =================================================================== --- test/groonga-test-utils.rb 2011-08-28 15:50:25 +0000 (d1c019c) +++ test/groonga-test-utils.rb 2011-09-02 13:23:32 +0000 (2711299) @@ -128,4 +128,12 @@ module GroongaTestUtils actual.collect(&normalizer), actual.expression.inspect) end + + def ruby19? + RUBY_VERSION >= "1.9" + end + + def only_ruby19 + omit("Ruby 1.9 is needed.") unless ruby19? + end end Modified: test/test-table-select.rb (+9 -0) =================================================================== --- test/test-table-select.rb 2011-08-28 15:50:25 +0000 (f36a98e) +++ test/test-table-select.rb 2011-09-02 13:23:32 +0000 (f481344) @@ -146,6 +146,15 @@ class TableSelectTest < Test::Unit::TestCase result) end + def test_not_equal_block + only_ruby19 + result = @comments.select do |record| + record.user != "darashi" + end + assert_equal_select_result([@comment1, @comment2, @comment3], + result) + end + def test_equal_reference_column_by_nonexistent_key result = @comments.select do |record| record["user"] == "nonexistent" From null+ranguba at clear-code.com Sat Sep 3 22:06:57 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 02:06:57 +0000 Subject: [groonga-commit:3976] ranguba/racknga [master] [cache] run defrag after purging old responses. Message-ID: <20110904021040.60B582C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 02:06:57 +0000 (Sun, 04 Sep 2011) New Revision: f04c6b0ca64b95f25962bd1fc9ed37e15cd7b125 Log: [cache] run defrag after purging old responses. Modified files: lib/racknga/cache_database.rb Modified: lib/racknga/cache_database.rb (+2 -0) =================================================================== --- lib/racknga/cache_database.rb 2011-08-21 07:48:15 +0000 (5559e69) +++ lib/racknga/cache_database.rb 2011-09-04 02:06:57 +0000 (4d0adb5) @@ -72,6 +72,8 @@ module Racknga target_responses.each do |response| response.key.delete end + + responses.defrag if responses.respond_to?(:defrag) end def ensure_database From null+ranguba at clear-code.com Sun Sep 4 07:01:59 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 11:01:59 +0000 Subject: [groonga-commit:3977] ranguba/activegroonga [master] require ActiveModel 3.1.0. Message-ID: <20110904110505.4A6BF2C466D@taiyaki.ru> Kouhei Sutou 2011-09-04 11:01:59 +0000 (Sun, 04 Sep 2011) New Revision: 5d959a1ed067171dbfe7a178a412a78a30a1466a Log: require ActiveModel 3.1.0. Modified files: Gemfile Modified: Gemfile (+1 -1) =================================================================== --- Gemfile 2011-08-28 14:49:57 +0000 (e3dd149) +++ Gemfile 2011-09-04 11:01:59 +0000 (a0cdbcd) @@ -18,7 +18,7 @@ source "http://rubygems.org/" gem "rroonga" -gem "activemodel", ">= 3.1.0rc6" +gem "activemodel", ">= 3.1.0" group :development, :test do gem "test-unit" From null+ranguba at clear-code.com Sun Sep 4 07:25:55 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 11:25:55 +0000 Subject: [groonga-commit:3978] ranguba/activegroonga [master] suppress warnings for Rails 3.1.0. Message-ID: <20110904112859.699E02C466B@taiyaki.ru> Kouhei Sutou 2011-09-04 11:25:55 +0000 (Sun, 04 Sep 2011) New Revision: b544a10e20dee307468179cd76435e9833975131 Log: suppress warnings for Rails 3.1.0. Modified files: lib/active_groonga/railtie.rb Modified: lib/active_groonga/railtie.rb (+6 -5) =================================================================== --- lib/active_groonga/railtie.rb 2011-09-04 11:25:45 +0000 (9372832) +++ lib/active_groonga/railtie.rb 2011-09-04 11:25:55 +0000 (0dd02dd) @@ -1,4 +1,4 @@ -# Copyright (C) 2010 Kouhei Sutou +# Copyright (C) 2010-2011 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -23,14 +23,15 @@ module ActiveGroonga class Railtie < Rails::Railtie config.active_groonga = ActiveSupport::OrderedOptions.new - config.generators.orm(:active_groonga, - :migration => true, - :timestamps => true) + config.app_generators.orm(:active_groonga, + :migration => true, + :timestamps => true) config.before_configuration do application_config = Rails.application.config application_config.extend(Railties::Configurable) - application_config.paths.config.groonga("config/groonga.yml") + application_config.paths.add("config/groonga", + :with => "config/groonga.yml") end rake_tasks do From null+ranguba at clear-code.com Sun Sep 4 07:25:45 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 11:25:45 +0000 Subject: [groonga-commit:3979] ranguba/activegroonga [master] add missing files. Message-ID: <20110904112859.5B1772C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 11:25:45 +0000 (Sun, 04 Sep 2011) New Revision: 7e77ae82eee3d855add066914770a9157fc9e50c Log: add missing files. Modified files: Rakefile Modified: Rakefile (+2 -0) =================================================================== --- Rakefile 2011-09-04 11:01:59 +0000 (6a876bf) +++ Rakefile 2011-09-04 11:25:45 +0000 (6db5668) @@ -60,6 +60,8 @@ Jeweler::Tasks.new do |_spec| spec.summary, spec.description, = description.split(/\n\n+/, 3) spec.license = "LGPLv2" spec.files = FileList["{lib,test}/**/*.rb", + "lib/**/railties/**/*.rake", + "lib/**/locale/**/*.yml", "Rakefile", "README.textile", "doc/text/**/*"] From null+ranguba at clear-code.com Sun Sep 4 08:40:24 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 12:40:24 +0000 Subject: [groonga-commit:3980] ranguba/rroonga [master] accept Hash like object as options. Message-ID: <20110904124346.45C402C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 12:40:24 +0000 (Sun, 04 Sep 2011) New Revision: 937426c995812b4f2583ccd0d587631a1ea7f78d Log: accept Hash like object as options. Modified files: ext/groonga/rb-grn-utils.c ext/groonga/rb-grn.h Modified: ext/groonga/rb-grn-utils.c (+6 -5) =================================================================== --- ext/groonga/rb-grn-utils.c 2011-09-02 13:23:32 +0000 (165ece2) +++ ext/groonga/rb-grn-utils.c 2011-09-04 12:40:24 +0000 (82ad0b1) @@ -1,7 +1,7 @@ /* -*- c-file-style: "ruby" -*- */ /* vim: set sts=4 sw=4 ts=8 noet: */ /* - Copyright (C) 2009-2010 Kouhei Sutou + Copyright (C) 2009-2011 Kouhei Sutou This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -33,17 +33,18 @@ rb_grn_inspect (VALUE object) void rb_grn_scan_options (VALUE options, ...) { + VALUE original_options = options; VALUE available_keys; const char *key; VALUE *value; va_list args; - if (NIL_P(options)) + options = rb_check_convert_type(options, T_HASH, "Hash", "to_hash"); + if (NIL_P(options)) { options = rb_hash_new(); - else + } else if (options == original_options) { options = rb_funcall(options, rb_intern("dup"), 0); - - Check_Type(options, T_HASH); + } available_keys = rb_ary_new(); va_start(args, options); Modified: ext/groonga/rb-grn.h (+3 -0) =================================================================== --- ext/groonga/rb-grn.h 2011-09-02 13:23:32 +0000 (0b4eb39) +++ ext/groonga/rb-grn.h 2011-09-04 12:40:24 +0000 (13e7060) @@ -24,6 +24,9 @@ #ifdef HAVE_RUBY_ENCODING_H # include #endif +#ifdef HAVE_RUBY_INTERN_H +# include +#endif #include From null+ranguba at clear-code.com Sun Sep 4 09:28:24 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 13:28:24 +0000 Subject: [groonga-commit:3981] ranguba/activegroonga [master] [test] enable --show-detail-immediately option by default. Message-ID: <20110904133145.12CC22C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 13:28:24 +0000 (Sun, 04 Sep 2011) New Revision: e1f9453334619892b6d509df508d8de099001e15 Log: [test] enable --show-detail-immediately option by default. Modified files: test/run-test.rb Modified: test/run-test.rb (+4 -1) =================================================================== --- test/run-test.rb 2011-09-04 11:25:55 +0000 (31eb208) +++ test/run-test.rb 2011-09-04 13:28:24 +0000 (6af1c3e) @@ -59,4 +59,7 @@ Dir.glob("test/**/test{_,-}*.rb") do |file| require file.sub(/\.rb$/, '') end -exit Test::Unit::AutoRunner.run(false) +success = Test::Unit::AutoRunner.run do |runner| + runner.runner_options[:show_detail_immediately] = true +end +exit(success) From null+ranguba at clear-code.com Sun Sep 4 09:28:39 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 13:28:39 +0000 Subject: [groonga-commit:3982] ranguba/activegroonga [master] [test] add fixture data. Message-ID: <20110904133145.249162C466B@taiyaki.ru> Kouhei Sutou 2011-09-04 13:28:39 +0000 (Sun, 04 Sep 2011) New Revision: e12ce89801a34a467a8dda7034612423bd844e76 Log: [test] add fixture data. Modified files: test/active-groonga-test-utils.rb test/test-base.rb Modified: test/active-groonga-test-utils.rb (+6 -0) =================================================================== --- test/active-groonga-test-utils.rb 2011-09-04 13:28:24 +0000 (7e53678) +++ test/active-groonga-test-utils.rb 2011-09-04 13:28:39 +0000 (758d2dc) @@ -208,6 +208,12 @@ module ActiveGroongaTestUtils "fulltext search engine", "groonga") + @bookmark_records[:rroonga] = + create_bookmark(@user_records[:daijiro], + "http://groonga.rubyforge.org/", + "The Ruby bindings for groonga", + "rroonga") + @bookmark_records[:cutter] = create_bookmark(@user_records[:gunyarakun], "http://cutter.sourceforge.net/", Modified: test/test-base.rb (+10 -4) =================================================================== --- test/test-base.rb 2011-09-04 13:28:24 +0000 (d187fbf) +++ test/test-base.rb 2011-09-04 13:28:39 +0000 (151f5ea) @@ -19,7 +19,9 @@ class TestBase < Test::Unit::TestCase def test_select bookmarks = Bookmark.select - assert_equal(["http://groonga.org/", "http://cutter.sourceforge.net/"].sort, + assert_equal(["http://groonga.org/", + "http://groonga.rubyforge.org/", + "http://cutter.sourceforge.net/"].sort, bookmarks.collect(&:uri).sort) end @@ -158,14 +160,17 @@ class TestBase < Test::Unit::TestCase bookmarks = Bookmark.select do |record| record.user == daijiro end - assert_equal([Bookmark.find(@bookmark_records[:groonga].id), google], + assert_equal([Bookmark.find(@bookmark_records[:groonga].id), + Bookmark.find(@bookmark_records[:rroonga].id), + google], bookmarks.to_a) end def test_find_reference_by_id daijiro = @user_records[:daijiro] bookmarks = Bookmark.select {|record| record.user == daijiro} - assert_equal([Bookmark.find(@bookmark_records[:groonga])], + assert_equal([Bookmark.find(@bookmark_records[:groonga]), + Bookmark.find(@bookmark_records[:rroonga])], bookmarks.to_a) end @@ -225,7 +230,8 @@ class TestBase < Test::Unit::TestCase end target =~ "groonga" end - assert_equal([["http://groonga.org/", 10]], + assert_equal([["http://groonga.org/", 10], + ["http://groonga.rubyforge.org/", 5]], bookmarks.collect {|bookmark| [bookmark.uri, bookmark.score]}) end end From null+ranguba at clear-code.com Sun Sep 4 09:31:29 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 13:31:29 +0000 Subject: [groonga-commit:3983] ranguba/activegroonga [master] support default limit. Message-ID: <20110904133441.C923B2C466B@taiyaki.ru> Kouhei Sutou 2011-09-04 13:31:29 +0000 (Sun, 04 Sep 2011) New Revision: 266d3130fa757cadcdf63e5d5e4409dfd6b0f81a Log: support default limit. Modified files: lib/active_groonga/base.rb lib/active_groonga/result_set.rb test/test-result-set.rb Modified: lib/active_groonga/base.rb (+50 -2) =================================================================== --- lib/active_groonga/base.rb 2011-09-04 13:31:19 +0000 (b0d9eeb) +++ lib/active_groonga/base.rb 2011-09-04 13:31:29 +0000 (3bccb93) @@ -38,6 +38,45 @@ module ActiveGroonga @@encoding = "utf8" cattr_reader :encoding, :instance_reader => false + # The default sort keys for {ResultSet#sort} and + # {ResultSet#paginate}. + # + # @scope class + # @attribute [rw] sort_keys + # @return [Array>] An array of + # sort key. Each sort key is an array of sort key + # column name and order. + # @example + # # Sorts by "name" column value in ascending order by default. + # User.sort_keys = [["name", :ascending]] + # + # # Sorts by "name" column value in ascending order and + # # sorts by "age" column value in descending order for + # # the same name records by default. + # User.sort_keys = [["name", :ascending], ["age", :descending]] + # + # # Sorts by id value in ascending order by default. + # User.sort_keys = nil + # + # @since 1.0.5 + class_attribute :sort_keys + + # The default limit for {ResultSet#sort} and + # {ResultSet#paginate}. + # + # @scope class + # @attribute [rw] limit + # @return [Integer] The default limit value. + # @example + # # Limits sorted records by default. + # User.limit = 20 + # + # # Doesn't limit sorted records by default. + # User.limit = nil + # + # @since 1.0.5 + class_attribute :limit + class << self def configure(configuration) case configuration @@ -100,11 +139,11 @@ module ActiveGroonga records = table.select do |record| yield(record) end - ResultSet.new(records, self, :expression => records.expression) + create_result_set(records, :expression => records.expression) end def all(options={}) - ResultSet.new(table, self) + create_result_set(table) end def count @@ -207,6 +246,15 @@ module ActiveGroonga def instance_method_already_implemented?(method_name) super(method_name) end + + private + def create_result_set(records, options={}) + default_options = { + :default_sort_keys => sort_keys, + :default_limit => limit, + } + ResultSet.new(records, self, default_options.merge(options)) + end end def initialize(record_or_attributes=nil) Modified: lib/active_groonga/result_set.rb (+36 -6) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-04 13:31:19 +0000 (db3aec6) +++ lib/active_groonga/result_set.rb 2011-09-04 13:31:29 +0000 (5ae98ff) @@ -27,21 +27,25 @@ module ActiveGroonga @expression = @records.expression end @n_records = options[:n_records] || @records.size + @default_sort_keys = options[:default_sort_keys] + @default_limit = options[:default_limit] compute_n_key_nested end def paginate(sort_keys, options={}) - options[:page] = normalize_page_value(options[:page]) + options[:size] = normalize_limit(options[:size]) + options[:page] = normalize_page(options[:page]) + sort_keys = normalize_sort_keys(sort_keys) records = @records.paginate(sort_keys, options) - set = self.class.new(records, @klass, - :expression => @expression) + set = create_result_set(records) set.extend(PaginationProxy) set end def sort(keys, options={}) - self.class.new(@records.sort(keys, options), @klass, - :expression => @expression) + keys = normalize_sort_keys(keys) + options[:limit] = normalize_limit(options[:limit]) || @n_records + create_result_set(@records.sort(keys, options)) end def group(key) @@ -82,7 +86,18 @@ module ActiveGroonga end end - def normalize_page_value(page) + def normalize_limit(limit) + unless limit.blank? + begin + Integer(limit) + rescue + limit = nil + end + end + limit || @default_limit + end + + def normalize_page(page) if page.blank? 1 else @@ -94,6 +109,21 @@ module ActiveGroonga end end + def normalize_sort_keys(keys) + if keys.blank? + [["_id", :ascending]] + else + keys + end + end + + def create_result_set(records) + self.class.new(records, @klass, + :default_sort_keys => @default_sort_keys, + :default_limit => @default_limit, + :expression => @expression) + end + module PaginationProxy Groonga::Pagination.instance_methods.each do |method_name| define_method(method_name) do Modified: test/test-result-set.rb (+48 -9) =================================================================== --- test/test-result-set.rb 2011-09-04 13:31:19 +0000 (ab839db) +++ test/test-result-set.rb 2011-09-04 13:31:29 +0000 (ab45c34) @@ -1,4 +1,4 @@ -# Copyright (C) 2010 Kouhei Sutou +# Copyright (C) 2010-2011 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -17,15 +17,54 @@ class TestResultSet < Test::Unit::TestCase include ActiveGroongaTestUtils - def test_paginate - bookmarks = Bookmark.select - assert_equal(["http://cutter.sourceforge.net/"].sort, - bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) + def teardown + Bookmark.sort_keys = nil + Bookmark.limit = nil end - def test_sort - bookmarks = Bookmark.select - assert_equal(["http://cutter.sourceforge.net/"].sort, - bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) + class TestPaginateLimit < self + def test_implicit + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/", + "http://groonga.org/"].sort, + bookmarks.paginate(["uri"]).collect(&:uri)) + end + + def test_explicit + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) + end + + def test_explicit_override + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) + end + end + + class TestSortLimit < self + def test_implicit + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/", + "http://groonga.org/",].sort, + bookmarks.sort(["uri"]).collect(&:uri)) + end + + def test_explicit + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) + end + + def test_explicit_override + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) + end end end From null+ranguba at clear-code.com Sun Sep 4 09:31:19 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 13:31:19 +0000 Subject: [groonga-commit:3984] ranguba/activegroonga [master] [doc] use Texttile for document markup. Message-ID: <20110904133441.B9EBA2C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 13:31:19 +0000 (Sun, 04 Sep 2011) New Revision: 2d356bc8120bc5aa1b8ca114565cfd787e11d22c Log: [doc] use Texttile for document markup. Modified files: Rakefile Modified: Rakefile (+1 -0) =================================================================== --- Rakefile 2011-09-04 13:28:39 +0000 (6db5668) +++ Rakefile 2011-09-04 13:31:19 +0000 (395a16d) @@ -78,6 +78,7 @@ end Packnga::DocumentTask.new(spec) do |task| task.yard do |yard_task| yard_task.options += ["--exclude", "/templates/"] + yard_task.options += ["--markup", "textile"] end task.reference do |reference_task| # reference_task.mode = "xhtml" From null+ranguba at clear-code.com Sun Sep 4 10:24:48 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 14:24:48 +0000 Subject: [groonga-commit:3985] ranguba/activegroonga [master] support the default sort keys. Message-ID: <20110904142753.B9B9F2C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 14:24:48 +0000 (Sun, 04 Sep 2011) New Revision: 922fb2121f5883764be7d1d587e193a36257783a Log: support the default sort keys. Modified files: lib/active_groonga/result_set.rb test/test-result-set.rb Modified: lib/active_groonga/result_set.rb (+104 -7) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-04 13:31:29 +0000 (5ae98ff) +++ lib/active_groonga/result_set.rb 2011-09-04 14:24:48 +0000 (6b3fb27) @@ -32,7 +32,56 @@ module ActiveGroonga compute_n_key_nested end - def paginate(sort_keys, options={}) + # Paginates the result set. + # + # @overload paginate(sort_keys, options={}) + # @param [Array>] sort_keys + # The array of sort key for paginating. Each sort + # key is an array of sort key column name and order. + # @option options [Integer] :size The page size. + # {Base.limit} is used as the default value. + # @option options [Integer] :page The current page. + # The page is 1 origin not 0 origin. 1 is used as + # the default value. + # @return [ResultSet] paginated result set. + # + # @example + # result_set = User.all + # # Paginates by sorting by "name" column value in + # # ascending order. The paginated result set has + # # less than or equal 10 records. And the current + # # page is user requested page. If user doesn't + # # specify page, the first page is returned. + # result_set.paginate([["name", :ascending]], + # :size => 10, + # :page => param[:page]) + # + # @overload paginate(options={}) + # @option options [Integer] :size The page size. + # {Base.limit} is used as the default value. + # @option options [Integer] :page The current page. + # 1 is used as the default value. + # @return [ResultSet] paginated result set. + # + # @example + # # The default sort keys. + # User.sort_keys = [["name", :ascending]] + # result_set = User.all + # # Paginates by sorting by "name" column value in + # # ascending order because it is the default sort + # # keys. The paginated result set has + # # less than or equal 10 records. And the current + # # page is user requested page. If user doesn't + # # specify page, the first page is returned. + # result_set.paginate(:size => 10, + # :page => param[:page]) + # + # {Base.sort_keys} is used as the sort keys. + def paginate(sort_keys=nil, options={}) + if sort_keys.is_a?(Hash) and options.empty? + options = sort_keys + sort_keys = nil + end options[:size] = normalize_limit(options[:size]) options[:page] = normalize_page(options[:page]) sort_keys = normalize_sort_keys(sort_keys) @@ -42,7 +91,57 @@ module ActiveGroonga set end - def sort(keys, options={}) + # Sorts the result set. + # + # @overload sort(keys, options={}) + # @param [Array>] keys + # The array of sort key for sort. Each sort + # key is an array of sort key column name and order. + # @option options [Integer] :limit The max number of records. + # {Base.limit} is used as the default value. + # If {Base.limit} is nil, all records are returned. + # @option options [Integer] :offset The record start offset. + # The offset is 0-origin not 1-origin. + # {Base.offset} is used as the default value. + # If {Base.offset} is nil, 0 is used. + # @return [ResultSet] sorted result set. + # + # @example + # result_set = User.all + # # Sorts by "name" column value in + # # ascending order. The sorted result set has + # # from the 5th records to the 14th records. + # result_set.paginate([["name", :ascending]], + # :limit => 10, + # :offset => 4) + # + # @overload sort(options={}) + # @option options [Integer] :limit The max number of records. + # {Base.limit} is used as the default value. + # If {Base.limit} is nil, all records are returned. + # @option options [Integer] :offset The record start offset. + # The offset is 0-origin not 1-origin. + # {Base.offset} is used as the default value. + # If {Base.offset} is nil, 0 is used. + # @return [ResultSet] sorted result set. + # + # @example + # # The default sort keys. + # User.sort_keys = [["name", :ascending]] + # result_set = User.all + # # Sorts by "name" column value in + # # ascending order because it is the default sort + # # keys. The sorted result set has + # # from the 5th records to the 14th records. + # result_set.paginate(:limit => 10, + # :offset => 4) + # + # {Base.sort_keys} is used as the sort keys. + def sort(keys=nil, options={}) + if keys.is_a?(Hash) and options.empty? + options = keys + keys = nil + end keys = normalize_sort_keys(keys) options[:limit] = normalize_limit(options[:limit]) || @n_records create_result_set(@records.sort(keys, options)) @@ -110,11 +209,9 @@ module ActiveGroonga end def normalize_sort_keys(keys) - if keys.blank? - [["_id", :ascending]] - else - keys - end + keys = @default_sort_keys if keys.blank? + keys = [["_id", :ascending]] if keys.blank? + keys end def create_result_set(records) Modified: test/test-result-set.rb (+78 -5) =================================================================== --- test/test-result-set.rb 2011-09-04 13:31:29 +0000 (ab45c34) +++ test/test-result-set.rb 2011-09-04 14:24:48 +0000 (a5e7427) @@ -22,6 +22,30 @@ class TestResultSet < Test::Unit::TestCase Bookmark.limit = nil end + class TestPaginate < self + def test_explicit + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) + end + end + + class TestPaginateSortKeys < self + def test_implicit + Bookmark.sort_keys = ["uri"] + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.paginate(:size => 1).collect(&:uri)) + end + + def test_explicit + Bookmark.sort_keys = ["uri"] + bookmarks = Bookmark.select + assert_equal([User.find(@user_records[:daijiro].id)].sort, + bookmarks.paginate(["user"], :size => 1).collect(&:user)) + end + end + class TestPaginateLimit < self def test_implicit Bookmark.limit = 2 @@ -32,16 +56,52 @@ class TestResultSet < Test::Unit::TestCase end def test_explicit + Bookmark.limit = 2 bookmarks = Bookmark.select assert_equal(["http://cutter.sourceforge.net/"].sort, bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) end + end - def test_explicit_override + class TestPaginateAll < self + def test_implicit + Bookmark.sort_keys = ["uri"] Bookmark.limit = 2 bookmarks = Bookmark.select assert_equal(["http://cutter.sourceforge.net/"].sort, - bookmarks.paginate(["uri"], :size => 1).collect(&:uri)) + bookmarks.paginate(:size => 1).collect(&:uri)) + end + + def test_explicit + Bookmark.sort_keys = ["uri"] + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal([User.find(@user_records[:daijiro].id)].sort, + bookmarks.paginate(["user"], :size => 1).collect(&:user)) + end + end + + class TestSort < self + def test_explicit + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) + end + end + + class TestSortSortKeys < self + def test_implicit + Bookmark.sort_keys = ["uri"] + bookmarks = Bookmark.select + assert_equal(["http://cutter.sourceforge.net/"].sort, + bookmarks.sort(:limit => 1).collect(&:uri)) + end + + def test_explicit + Bookmark.sort_keys = ["uri"] + bookmarks = Bookmark.select + assert_equal([User.find(@user_records[:daijiro].id)].sort, + bookmarks.sort(["user"], :limit => 1).collect(&:user)) end end @@ -55,16 +115,29 @@ class TestResultSet < Test::Unit::TestCase end def test_explicit + Bookmark.limit = 2 bookmarks = Bookmark.select assert_equal(["http://cutter.sourceforge.net/"].sort, bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) end + end - def test_explicit_override + class TestSortAll < self + def test_implicit + Bookmark.sort_keys = ["uri"] Bookmark.limit = 2 bookmarks = Bookmark.select - assert_equal(["http://cutter.sourceforge.net/"].sort, - bookmarks.sort(["uri"], :limit => 1).collect(&:uri)) + assert_equal(["http://cutter.sourceforge.net/", + "http://groonga.org/"].sort, + bookmarks.sort.collect(&:uri)) + end + + def test_explicit + Bookmark.sort_keys = ["uri"] + Bookmark.limit = 2 + bookmarks = Bookmark.select + assert_equal([User.find(@user_records[:daijiro].id)].sort, + bookmarks.sort(["user"], :limit => 1).collect(&:user)) end end end From null+ranguba at clear-code.com Sun Sep 4 10:27:02 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 14:27:02 +0000 Subject: [groonga-commit:3986] ranguba/activegroonga [master] don't use Base.offset. Message-ID: <20110904143007.DCD7F2C466B@taiyaki.ru> Kouhei Sutou 2011-09-04 14:27:02 +0000 (Sun, 04 Sep 2011) New Revision: 6a71d7e7b79e97f92173e6873c255ddf2ea2fae0 Log: don't use Base.offset. Modified files: lib/active_groonga/result_set.rb Modified: lib/active_groonga/result_set.rb (+4 -6) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-04 14:24:48 +0000 (6b3fb27) +++ lib/active_groonga/result_set.rb 2011-09-04 14:27:02 +0000 (7d5dc08) @@ -101,9 +101,8 @@ module ActiveGroonga # {Base.limit} is used as the default value. # If {Base.limit} is nil, all records are returned. # @option options [Integer] :offset The record start offset. - # The offset is 0-origin not 1-origin. - # {Base.offset} is used as the default value. - # If {Base.offset} is nil, 0 is used. + # Offset is 0-origin not 1-origin. + # The default value is 0. # @return [ResultSet] sorted result set. # # @example @@ -120,9 +119,8 @@ module ActiveGroonga # {Base.limit} is used as the default value. # If {Base.limit} is nil, all records are returned. # @option options [Integer] :offset The record start offset. - # The offset is 0-origin not 1-origin. - # {Base.offset} is used as the default value. - # If {Base.offset} is nil, 0 is used. + # Offset is 0-origin not 1-origin. + # The default value is 0. # @return [ResultSet] sorted result set. # # @example From null+ranguba at clear-code.com Sun Sep 4 10:57:04 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 14:57:04 +0000 Subject: [groonga-commit:3987] ranguba/activegroonga [master] [doc][ja] translate documents. Message-ID: <20110904150012.D12A22C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 14:57:04 +0000 (Sun, 04 Sep 2011) New Revision: c51de1a5e03d1debb6c413e8e7af5a84dc9d8939 Log: [doc][ja] translate documents. Modified files: doc/po/ja.po lib/active_groonga/result_set.rb Modified: doc/po/ja.po (+4402 -3688) =================================================================== --- doc/po/ja.po 2011-09-04 14:27:02 +0000 (18c9164) +++ doc/po/ja.po 2011-09-04 14:57:04 +0000 (428824a) @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ActiveGroonga 1.0.5\n" -"POT-Creation-Date: 2011-08-28 23:34+0900\n" -"PO-Revision-Date: 2011-08-28 23:49+0900\n" +"POT-Creation-Date: 2011-09-04 23:48+0900\n" +"PO-Revision-Date: 2011-09-04 23:56+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" "Language: ja\n" @@ -87,11 +87,11 @@ msgstr "????: ????" #: doc/reference/en/file.README.html:40(span) #: doc/reference/en/ActiveGroonga.html:42(span) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:251(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:42(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:221(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:223(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) #: doc/reference/en/ActiveGroonga/Generators.html:42(span) #: doc/reference/en/ActiveGroonga/Railtie.html:42(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) @@ -119,42 +119,42 @@ msgstr "????: ????" #: doc/reference/en/ActiveGroonga/Persistence.html:771(span) #: doc/reference/en/ActiveGroonga/Persistence.html:802(span) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:223(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) #: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) #: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:352(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:383(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:379(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) #: doc/reference/en/ActiveGroonga/Schema.html:42(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) #: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) #: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Schema.html:408(span) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Schema.html:404(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) #: doc/reference/en/ActiveGroonga/Validations.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) @@ -167,90 +167,90 @@ msgstr "????: ????" #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) #: doc/reference/en/ActiveGroonga/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1123(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1197(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1339(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1401(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1439(span) -#: doc/reference/en/ActiveGroonga/Base.html:1471(span) -#: doc/reference/en/ActiveGroonga/Base.html:1473(span) -#: doc/reference/en/ActiveGroonga/Base.html:1474(span) -#: doc/reference/en/ActiveGroonga/Base.html:1508(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) -#: doc/reference/en/ActiveGroonga/Base.html:1546(span) -#: doc/reference/en/ActiveGroonga/Base.html:1612(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1618(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1666(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1674(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1174(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1388(span) +#: doc/reference/en/ActiveGroonga/Base.html:1422(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:1564(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:1626(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1664(span) +#: doc/reference/en/ActiveGroonga/Base.html:1696(span) +#: doc/reference/en/ActiveGroonga/Base.html:1698(span) +#: doc/reference/en/ActiveGroonga/Base.html:1699(span) +#: doc/reference/en/ActiveGroonga/Base.html:1733(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:1771(span) +#: doc/reference/en/ActiveGroonga/Base.html:1837(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1843(span) #: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:1849(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1945(span) -#: doc/reference/en/ActiveGroonga/Base.html:1980(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2040(span) -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) -#: doc/reference/en/ActiveGroonga/Base.html:2122(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) -#: doc/reference/en/ActiveGroonga/Base.html:2280(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2311(span) -#: doc/reference/en/ActiveGroonga/Base.html:2435(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1891(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1899(span) +#: doc/reference/en/ActiveGroonga/Base.html:1999(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2170(span) +#: doc/reference/en/ActiveGroonga/Base.html:2205(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2265(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) +#: doc/reference/en/ActiveGroonga/Base.html:2347(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) +#: doc/reference/en/ActiveGroonga/Base.html:2505(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2536(span) +#: doc/reference/en/ActiveGroonga/Base.html:2660(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) #: doc/reference/en/ActiveGroonga/Migrator.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) #: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:304(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) #: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) #: doc/reference/en/ActiveGroonga/Database.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:255(span) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:372(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:403(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) #: doc/reference/en/ActiveGroonga/VERSION.html:42(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) @@ -258,46 +258,56 @@ msgstr "????: ????" #: doc/reference/en/ActiveGroonga/Error.html:42(span) #: doc/reference/en/ActiveGroonga/Railties.html:42(span) #: doc/reference/en/ActiveGroonga/Migration.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) -#: doc/reference/en/ActiveGroonga/Migration.html:589(span) -#: doc/reference/en/ActiveGroonga/Migration.html:593(span) -#: doc/reference/en/ActiveGroonga/Migration.html:595(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) +#: doc/reference/en/ActiveGroonga/Migration.html:581(span) +#: doc/reference/en/ActiveGroonga/Migration.html:583(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) #: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:421(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) #: doc/reference/en/ActiveGroonga/Vector.html:42(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) #: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:262(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) @@ -358,11 +368,11 @@ msgstr "" #: doc/reference/en/file.README.html:40(span) #: doc/reference/en/ActiveGroonga.html:42(span) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:251(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:42(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:221(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:223(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) #: doc/reference/en/ActiveGroonga/Generators.html:42(span) #: doc/reference/en/ActiveGroonga/Railtie.html:42(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) @@ -390,41 +400,41 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:771(span) #: doc/reference/en/ActiveGroonga/Persistence.html:802(span) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:223(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:227(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) #: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) #: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:353(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:349(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) #: doc/reference/en/ActiveGroonga/Schema.html:42(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) #: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) #: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Schema.html:408(span) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Schema.html:404(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) #: doc/reference/en/ActiveGroonga/Validations.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) @@ -437,90 +447,90 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) #: doc/reference/en/ActiveGroonga/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1123(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1197(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1339(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1401(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1439(span) -#: doc/reference/en/ActiveGroonga/Base.html:1471(span) -#: doc/reference/en/ActiveGroonga/Base.html:1473(span) -#: doc/reference/en/ActiveGroonga/Base.html:1474(span) -#: doc/reference/en/ActiveGroonga/Base.html:1508(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) -#: doc/reference/en/ActiveGroonga/Base.html:1546(span) -#: doc/reference/en/ActiveGroonga/Base.html:1612(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1618(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1666(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1674(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1174(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1388(span) +#: doc/reference/en/ActiveGroonga/Base.html:1422(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:1564(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:1626(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1664(span) +#: doc/reference/en/ActiveGroonga/Base.html:1696(span) +#: doc/reference/en/ActiveGroonga/Base.html:1698(span) +#: doc/reference/en/ActiveGroonga/Base.html:1699(span) +#: doc/reference/en/ActiveGroonga/Base.html:1733(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:1771(span) +#: doc/reference/en/ActiveGroonga/Base.html:1837(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1843(span) #: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:1849(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1945(span) -#: doc/reference/en/ActiveGroonga/Base.html:1980(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2040(span) -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) -#: doc/reference/en/ActiveGroonga/Base.html:2122(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) -#: doc/reference/en/ActiveGroonga/Base.html:2280(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2311(span) -#: doc/reference/en/ActiveGroonga/Base.html:2435(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1891(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1899(span) +#: doc/reference/en/ActiveGroonga/Base.html:1999(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2170(span) +#: doc/reference/en/ActiveGroonga/Base.html:2205(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2265(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) +#: doc/reference/en/ActiveGroonga/Base.html:2347(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) +#: doc/reference/en/ActiveGroonga/Base.html:2505(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2536(span) +#: doc/reference/en/ActiveGroonga/Base.html:2660(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) #: doc/reference/en/ActiveGroonga/Migrator.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) #: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:304(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) #: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) #: doc/reference/en/ActiveGroonga/Database.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:255(span) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:372(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:403(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) #: doc/reference/en/ActiveGroonga/VERSION.html:42(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) @@ -528,47 +538,56 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Error.html:42(span) #: doc/reference/en/ActiveGroonga/Railties.html:42(span) #: doc/reference/en/ActiveGroonga/Migration.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) -#: doc/reference/en/ActiveGroonga/Migration.html:589(span) -#: doc/reference/en/ActiveGroonga/Migration.html:593(span) -#: doc/reference/en/ActiveGroonga/Migration.html:595(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) +#: doc/reference/en/ActiveGroonga/Migration.html:581(span) +#: doc/reference/en/ActiveGroonga/Migration.html:583(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) #: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:421(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:648(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) #: doc/reference/en/ActiveGroonga/Vector.html:42(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) #: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:262(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) @@ -813,7 +832,7 @@ msgid "Top Level Namespace" msgstr "" #: doc/reference/en/top-level-namespace.html:77(h2) -#: doc/reference/en/ActiveGroonga.html:110(h2) +#: doc/reference/en/ActiveGroonga.html:105(h2) #: doc/reference/en/ActiveGroonga/Generators.html:82(h2) #: doc/reference/en/ActiveGroonga/Validations.html:92(h2) #: doc/reference/en/ActiveGroonga/TestFixtures.html:84(h2) @@ -823,7 +842,7 @@ msgid "Defined Under Namespace" msgstr "" #: doc/reference/en/top-level-namespace.html:81(strong) -#: doc/reference/en/ActiveGroonga.html:114(strong) +#: doc/reference/en/ActiveGroonga.html:109(strong) #: doc/reference/en/ActiveGroonga/Validations.html:96(strong) #: doc/reference/en/ActiveGroonga/Railties.html:84(strong) #: doc/reference/en/ActiveGroonga/ResultSet.html:103(strong) @@ -910,13 +929,13 @@ msgstr "" #: doc/reference/en/method_list.html:46(small) #: doc/reference/en/method_list.html:102(small) #: doc/reference/en/method_list.html:150(small) -#: doc/reference/en/method_list.html:166(small) +#: doc/reference/en/method_list.html:158(small) #: doc/reference/en/method_list.html:382(small) -#: doc/reference/en/method_list.html:574(small) +#: doc/reference/en/method_list.html:614(small) #: doc/reference/en/method_list.html:678(small) -#: doc/reference/en/method_list.html:814(small) -#: doc/reference/en/method_list.html:1110(small) -#: doc/reference/en/method_list.html:1190(small) +#: doc/reference/en/method_list.html:822(small) +#: doc/reference/en/method_list.html:1126(small) +#: doc/reference/en/method_list.html:1206(small) #: doc/reference/en/ActiveGroonga/Vector.html:74(li) msgid "ActiveGroonga::Vector" msgstr "" @@ -946,34 +965,40 @@ msgstr "" #: doc/reference/en/method_list.html:454(small) #: doc/reference/en/method_list.html:462(small) #: doc/reference/en/method_list.html:470(small) -#: doc/reference/en/method_list.html:598(small) +#: doc/reference/en/method_list.html:518(small) #: doc/reference/en/method_list.html:630(small) #: doc/reference/en/method_list.html:638(small) #: doc/reference/en/method_list.html:646(small) -#: doc/reference/en/method_list.html:662(small) +#: doc/reference/en/method_list.html:654(small) #: doc/reference/en/method_list.html:670(small) -#: doc/reference/en/method_list.html:870(small) -#: doc/reference/en/method_list.html:886(small) +#: doc/reference/en/method_list.html:686(small) +#: doc/reference/en/method_list.html:878(small) #: doc/reference/en/method_list.html:894(small) -#: doc/reference/en/method_list.html:918(small) -#: doc/reference/en/method_list.html:1014(small) +#: doc/reference/en/method_list.html:902(small) +#: doc/reference/en/method_list.html:926(small) #: doc/reference/en/method_list.html:1022(small) #: doc/reference/en/method_list.html:1030(small) -#: doc/reference/en/method_list.html:1054(small) +#: doc/reference/en/method_list.html:1038(small) #: doc/reference/en/method_list.html:1062(small) +#: doc/reference/en/method_list.html:1078(small) #: doc/reference/en/method_list.html:1086(small) -#: doc/reference/en/method_list.html:1094(small) -#: doc/reference/en/method_list.html:1118(small) -#: doc/reference/en/method_list.html:1254(small) +#: doc/reference/en/method_list.html:1102(small) +#: doc/reference/en/method_list.html:1110(small) +#: doc/reference/en/method_list.html:1134(small) +#: doc/reference/en/method_list.html:1270(small) #: doc/reference/en/ActiveGroonga/Base.html:74(li) msgid "ActiveGroonga::Base" msgstr "" #: doc/reference/en/method_list.html:60(a) -#: doc/reference/en/ActiveGroonga/Base.html:177(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1145(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:232(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1370(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) msgid "all" msgstr "" @@ -986,37 +1011,37 @@ msgid "#attributes=" msgstr "" #: doc/reference/en/method_list.html:84(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:192(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:136(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:191(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:208(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:265(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:188(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:134(strong) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:187(strong) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:263(a) msgid "base_root" msgstr "" #: doc/reference/en/method_list.html:86(small) -#: doc/reference/en/method_list.html:798(small) +#: doc/reference/en/method_list.html:806(small) #: doc/reference/en/ActiveGroonga/Generators/Base.html:76(li) msgid "ActiveGroonga::Generators::Base" msgstr "" #: doc/reference/en/method_list.html:92(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#becomes" msgstr "" #: doc/reference/en/method_list.html:94(small) #: doc/reference/en/method_list.html:310(small) -#: doc/reference/en/method_list.html:326(small) +#: doc/reference/en/method_list.html:318(small) #: doc/reference/en/method_list.html:334(small) -#: doc/reference/en/method_list.html:790(small) -#: doc/reference/en/method_list.html:854(small) -#: doc/reference/en/method_list.html:934(small) +#: doc/reference/en/method_list.html:798(small) +#: doc/reference/en/method_list.html:862(small) +#: doc/reference/en/method_list.html:942(small) #: doc/reference/en/method_list.html:990(small) -#: doc/reference/en/method_list.html:998(small) -#: doc/reference/en/method_list.html:1150(small) -#: doc/reference/en/method_list.html:1158(small) +#: doc/reference/en/method_list.html:1006(small) #: doc/reference/en/method_list.html:1166(small) +#: doc/reference/en/method_list.html:1174(small) +#: doc/reference/en/method_list.html:1182(small) msgid "ActiveGroonga::Persistence" msgstr "" @@ -1030,55 +1055,55 @@ msgstr "" #: doc/reference/en/method_list.html:110(small) #: doc/reference/en/method_list.html:398(small) -#: doc/reference/en/method_list.html:502(small) -#: doc/reference/en/method_list.html:942(small) -#: doc/reference/en/method_list.html:974(small) +#: doc/reference/en/method_list.html:510(small) +#: doc/reference/en/method_list.html:950(small) +#: doc/reference/en/method_list.html:982(small) #: doc/reference/en/ActiveGroonga/Database.html:74(li) msgid "ActiveGroonga::Database" msgstr "" #: doc/reference/en/method_list.html:116(a) -#: doc/reference/en/ActiveGroonga/Base.html:198(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1174(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1197(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) +#: doc/reference/en/ActiveGroonga/Base.html:253(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1399(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1422(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) msgid "configure" msgstr "" #: doc/reference/en/method_list.html:124(a) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) #: doc/reference/en/ActiveGroonga/Validations.html:295(span) #: doc/reference/en/ActiveGroonga/Validations.html:296(span) #: doc/reference/en/ActiveGroonga/Validations.html:297(span) -#: doc/reference/en/ActiveGroonga/Base.html:219(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1215(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1232(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Base.html:274(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1440(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1457(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) msgid "context" msgstr "" #: doc/reference/en/method_list.html:132(a) -#: doc/reference/en/ActiveGroonga/Base.html:240(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1244(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1261(span) +#: doc/reference/en/ActiveGroonga/Base.html:295(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1469(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1486(span) msgid "count" msgstr "" #: doc/reference/en/method_list.html:140(a) -#: doc/reference/en/ActiveGroonga/Base.html:261(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1273(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Vector.html:242(strong) +#: doc/reference/en/ActiveGroonga/Base.html:316(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1498(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Database.html:336(span) +#: doc/reference/en/ActiveGroonga/Vector.html:236(strong) msgid "create" msgstr "" @@ -1091,7 +1116,7 @@ msgstr "" msgid "#create!" msgstr "" -#: doc/reference/en/method_list.html:158(small) +#: doc/reference/en/method_list.html:166(small) msgid "ActiveGroonga::Validations::ClassMethods" msgstr "" @@ -1101,17 +1126,17 @@ msgstr "" #: doc/reference/en/method_list.html:174(small) #: doc/reference/en/method_list.html:478(small) -#: doc/reference/en/method_list.html:542(small) -#: doc/reference/en/method_list.html:774(small) -#: doc/reference/en/method_list.html:806(small) -#: doc/reference/en/method_list.html:910(small) -#: doc/reference/en/method_list.html:926(small) -#: doc/reference/en/method_list.html:950(small) -#: doc/reference/en/method_list.html:1134(small) -#: doc/reference/en/method_list.html:1198(small) -#: doc/reference/en/method_list.html:1230(small) -#: doc/reference/en/method_list.html:1238(small) +#: doc/reference/en/method_list.html:550(small) +#: doc/reference/en/method_list.html:782(small) +#: doc/reference/en/method_list.html:814(small) +#: doc/reference/en/method_list.html:918(small) +#: doc/reference/en/method_list.html:934(small) +#: doc/reference/en/method_list.html:958(small) +#: doc/reference/en/method_list.html:1150(small) +#: doc/reference/en/method_list.html:1214(small) #: doc/reference/en/method_list.html:1246(small) +#: doc/reference/en/method_list.html:1254(small) +#: doc/reference/en/method_list.html:1262(small) #: doc/reference/en/ActiveGroonga/Generators/Column.html:74(li) msgid "ActiveGroonga::Generators::Column" msgstr "" @@ -1122,7 +1147,7 @@ msgid "#create_migration_file" msgstr "" #: doc/reference/en/method_list.html:182(small) -#: doc/reference/en/method_list.html:614(small) +#: doc/reference/en/method_list.html:566(small) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:78(li) msgid "ActiveGroonga::Generators::MigrationGenerator" msgstr "" @@ -1131,8 +1156,8 @@ msgstr "" #: doc/reference/en/method_list.html:198(small) #: doc/reference/en/method_list.html:206(small) #: doc/reference/en/method_list.html:214(small) -#: doc/reference/en/method_list.html:526(small) -#: doc/reference/en/method_list.html:958(small) +#: doc/reference/en/method_list.html:494(small) +#: doc/reference/en/method_list.html:966(small) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:78(li) msgid "ActiveGroonga::Generators::ModelGenerator" msgstr "" @@ -1156,124 +1181,124 @@ msgstr "" #: doc/reference/en/method_list.html:222(small) #: doc/reference/en/method_list.html:350(small) -#: doc/reference/en/method_list.html:582(small) -#: doc/reference/en/method_list.html:694(small) +#: doc/reference/en/method_list.html:598(small) #: doc/reference/en/method_list.html:702(small) #: doc/reference/en/method_list.html:726(small) -#: doc/reference/en/method_list.html:1142(small) +#: doc/reference/en/method_list.html:742(small) +#: doc/reference/en/method_list.html:1158(small) #: doc/reference/en/ActiveGroonga/Migrator.html:74(li) msgid "ActiveGroonga::Migrator" msgstr "" #: doc/reference/en/method_list.html:230(small) -#: doc/reference/en/method_list.html:510(small) +#: doc/reference/en/method_list.html:606(small) #: doc/reference/en/method_list.html:734(small) -#: doc/reference/en/method_list.html:966(small) -#: doc/reference/en/method_list.html:1174(small) +#: doc/reference/en/method_list.html:974(small) +#: doc/reference/en/method_list.html:1190(small) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:74(li) msgid "ActiveGroonga::SchemaManagementTable" msgstr "" #: doc/reference/en/method_list.html:236(a) -#: doc/reference/en/ActiveGroonga/Base.html:282(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1320(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1339(span) +#: doc/reference/en/ActiveGroonga/Base.html:337(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1545(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1564(span) msgid "custom_reference_class" msgstr "" #: doc/reference/en/method_list.html:244(a) -#: doc/reference/en/ActiveGroonga/Base.html:303(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1353(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1370(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1552(span) +#: doc/reference/en/ActiveGroonga/Base.html:358(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1578(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1595(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) +#: doc/reference/en/ActiveGroonga/Base.html:1777(span) msgid "database" msgstr "" #: doc/reference/en/method_list.html:252(a) -#: doc/reference/en/ActiveGroonga/Base.html:324(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1382(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1401(span) +#: doc/reference/en/ActiveGroonga/Base.html:379(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1607(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1626(span) msgid "database_path=" msgstr "" #: doc/reference/en/method_list.html:260(a) -#: doc/reference/en/ActiveGroonga/Schema.html:111(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:162(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:288(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) -#: doc/reference/en/ActiveGroonga/Schema.html:366(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Schema.html:409(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -msgid "define" +msgid "#define" msgstr "" #: doc/reference/en/method_list.html:262(small) #: doc/reference/en/method_list.html:270(small) #: doc/reference/en/method_list.html:358(small) #: doc/reference/en/method_list.html:366(small) -#: doc/reference/en/method_list.html:518(small) +#: doc/reference/en/method_list.html:558(small) #: doc/reference/en/ActiveGroonga/Schema.html:74(li) msgid "ActiveGroonga::Schema" msgstr "" #: doc/reference/en/method_list.html:268(a) -msgid "#define" +#: doc/reference/en/ActiveGroonga/Schema.html:111(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:162(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:284(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:362(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Schema.html:405(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +msgid "define" msgstr "" #: doc/reference/en/method_list.html:276(a) -#: doc/reference/en/ActiveGroonga/Base.html:345(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1114(span) -#: doc/reference/en/ActiveGroonga/Base.html:1415(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1435(span) +#: doc/reference/en/ActiveGroonga/Base.html:400(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +#: doc/reference/en/ActiveGroonga/Base.html:1640(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1660(span) msgid "define_column_accessors" msgstr "" #: doc/reference/en/method_list.html:284(a) -#: doc/reference/en/ActiveGroonga/Base.html:366(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1450(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1471(span) +#: doc/reference/en/ActiveGroonga/Base.html:421(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1675(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1696(span) msgid "define_method_attribute" msgstr "" #: doc/reference/en/method_list.html:292(a) -#: doc/reference/en/ActiveGroonga/Base.html:387(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1487(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1508(span) +#: doc/reference/en/ActiveGroonga/Base.html:442(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1712(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1733(span) msgid "define_method_attribute=" msgstr "" #: doc/reference/en/method_list.html:300(a) #: doc/reference/en/method_list.html:308(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#delete" msgstr "" #: doc/reference/en/method_list.html:302(small) #: doc/reference/en/method_list.html:342(small) -#: doc/reference/en/method_list.html:534(small) +#: doc/reference/en/method_list.html:486(small) #: doc/reference/en/method_list.html:622(small) -#: doc/reference/en/method_list.html:862(small) -#: doc/reference/en/method_list.html:1126(small) +#: doc/reference/en/method_list.html:870(small) +#: doc/reference/en/method_list.html:1142(small) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:74(li) msgid "ActiveGroonga::TestFixtures::ConnectionMock" msgstr "" #: doc/reference/en/method_list.html:316(a) #: doc/reference/en/method_list.html:324(a) -#: doc/reference/en/ActiveGroonga/Base.html:1040(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/ActiveGroonga/Base.html:1093(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#destroy" msgstr "" -#: doc/reference/en/method_list.html:318(small) +#: doc/reference/en/method_list.html:326(small) msgid "ActiveGroonga::Callbacks" msgstr "" #: doc/reference/en/method_list.html:332(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#destroyed?" msgstr "" @@ -1286,22 +1311,22 @@ msgid "#down?" msgstr "" #: doc/reference/en/method_list.html:356(a) -msgid "#dump" -msgstr "" - -#: doc/reference/en/method_list.html:364(a) #: doc/reference/en/ActiveGroonga/Schema.html:132(strong) #: doc/reference/en/ActiveGroonga/Schema.html:183(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:317(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:421(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:313(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:345(span) +#: doc/reference/en/ActiveGroonga/Schema.html:417(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) msgid "dump" msgstr "" -#: doc/reference/en/method_list.html:372(a) +#: doc/reference/en/method_list.html:364(a) +msgid "#dump" +msgstr "" + +#: doc/reference/en/method_list.html:372(a) #: doc/reference/en/method_list.html:380(a) msgid "#each" msgstr "" @@ -1309,20 +1334,20 @@ msgstr "" #: doc/reference/en/method_list.html:374(small) #: doc/reference/en/method_list.html:414(small) #: doc/reference/en/method_list.html:438(small) -#: doc/reference/en/method_list.html:566(small) -#: doc/reference/en/method_list.html:758(small) -#: doc/reference/en/method_list.html:822(small) -#: doc/reference/en/method_list.html:902(small) -#: doc/reference/en/method_list.html:1046(small) +#: doc/reference/en/method_list.html:542(small) +#: doc/reference/en/method_list.html:766(small) +#: doc/reference/en/method_list.html:830(small) +#: doc/reference/en/method_list.html:910(small) +#: doc/reference/en/method_list.html:1054(small) #: doc/reference/en/class_list.html:42(small) #: doc/reference/en/ActiveGroonga/ResultSet.html:74(li) msgid "ActiveGroonga::ResultSet" msgstr "" #: doc/reference/en/method_list.html:388(a) -#: doc/reference/en/ActiveGroonga/Base.html:408(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1524(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1546(span) +#: doc/reference/en/ActiveGroonga/Base.html:463(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1749(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1771(span) msgid "encoding=" msgstr "" @@ -1331,9 +1356,9 @@ msgid "#ensure_available" msgstr "" #: doc/reference/en/method_list.html:404(a) -#: doc/reference/en/ActiveGroonga/Base.html:429(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1563(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1612(span) +#: doc/reference/en/ActiveGroonga/Base.html:484(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1788(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1837(span) msgid "exists?" msgstr "" @@ -1342,9 +1367,9 @@ msgid "#expression" msgstr "" #: doc/reference/en/method_list.html:420(a) -#: doc/reference/en/ActiveGroonga/Base.html:450(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1634(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) +#: doc/reference/en/ActiveGroonga/Base.html:505(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1859(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) msgid "find" msgstr "" @@ -1369,9 +1394,9 @@ msgid "#have_column?" msgstr "" #: doc/reference/en/method_list.html:460(a) -#: doc/reference/en/ActiveGroonga/Base.html:471(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1685(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1702(span) +#: doc/reference/en/ActiveGroonga/Base.html:526(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1910(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1927(span) msgid "i18n_scope" msgstr "" @@ -1403,76 +1428,76 @@ msgstr "" msgid "#initialize" msgstr "" -#: doc/reference/en/method_list.html:486(small) -#: doc/reference/en/method_list.html:878(small) +#: doc/reference/en/method_list.html:502(small) +#: doc/reference/en/method_list.html:886(small) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:78(li) msgid "ActiveGroonga::RecordInvalid" msgstr "" -#: doc/reference/en/method_list.html:494(small) -#: doc/reference/en/method_list.html:1070(small) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:78(li) -msgid "ActiveGroonga::NoKeyTableError" +#: doc/reference/en/method_list.html:526(small) +#: doc/reference/en/method_list.html:718(small) +#: doc/reference/en/method_list.html:750(small) +#: doc/reference/en/method_list.html:758(small) +#: doc/reference/en/method_list.html:790(small) +#: doc/reference/en/method_list.html:838(small) +#: doc/reference/en/method_list.html:1222(small) +#: doc/reference/en/ActiveGroonga/Migration.html:74(li) +msgid "ActiveGroonga::Migration" msgstr "" -#: doc/reference/en/method_list.html:550(small) +#: doc/reference/en/method_list.html:534(small) #: doc/reference/en/method_list.html:710(small) -#: doc/reference/en/method_list.html:782(small) -#: doc/reference/en/method_list.html:838(small) -#: doc/reference/en/method_list.html:1222(small) +#: doc/reference/en/method_list.html:774(small) +#: doc/reference/en/method_list.html:846(small) +#: doc/reference/en/method_list.html:1238(small) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:74(li) msgid "ActiveGroonga::MigrationEntry" msgstr "" -#: doc/reference/en/method_list.html:558(small) -#: doc/reference/en/method_list.html:654(small) -#: doc/reference/en/method_list.html:1078(small) +#: doc/reference/en/method_list.html:574(small) +#: doc/reference/en/method_list.html:662(small) +#: doc/reference/en/method_list.html:1094(small) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:78(li) msgid "ActiveGroonga::KeyOverrideError" msgstr "" +#: doc/reference/en/method_list.html:582(small) +#: doc/reference/en/method_list.html:1070(small) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:78(li) +msgid "ActiveGroonga::NoKeyTableError" +msgstr "" + #: doc/reference/en/method_list.html:590(small) -#: doc/reference/en/method_list.html:830(small) -#: doc/reference/en/method_list.html:1214(small) +#: doc/reference/en/method_list.html:854(small) +#: doc/reference/en/method_list.html:1230(small) #: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:78(li) msgid "ActiveGroonga::DuplicateMigrationVersionError" msgstr "" -#: doc/reference/en/method_list.html:606(small) -#: doc/reference/en/method_list.html:718(small) -#: doc/reference/en/method_list.html:742(small) -#: doc/reference/en/method_list.html:750(small) -#: doc/reference/en/method_list.html:766(small) -#: doc/reference/en/method_list.html:846(small) -#: doc/reference/en/method_list.html:1206(small) -#: doc/reference/en/ActiveGroonga/Migration.html:74(li) -msgid "ActiveGroonga::Migration" -msgstr "" - #: doc/reference/en/method_list.html:620(a) msgid "#insert_fixture" msgstr "" #: doc/reference/en/method_list.html:628(a) -#: doc/reference/en/ActiveGroonga/Base.html:492(strong) -#: doc/reference/en/ActiveGroonga/Base.html:799(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1714(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1735(span) -#: doc/reference/en/ActiveGroonga/Base.html:2163(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2189(span) -msgid "inspect" +msgid "#inspect" msgstr "" #: doc/reference/en/method_list.html:636(a) -msgid "#inspect" +#: doc/reference/en/ActiveGroonga/Base.html:547(strong) +#: doc/reference/en/ActiveGroonga/Base.html:852(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1939(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1960(span) +#: doc/reference/en/ActiveGroonga/Base.html:2388(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2414(span) +msgid "inspect" msgstr "" #: doc/reference/en/method_list.html:644(a) -#: doc/reference/en/ActiveGroonga/Base.html:513(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1674(span) -#: doc/reference/en/ActiveGroonga/Base.html:1751(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/Base.html:568(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1899(span) +#: doc/reference/en/ActiveGroonga/Base.html:1976(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1999(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) msgid "instantiate" msgstr "" @@ -1490,380 +1515,406 @@ msgid "#klass" msgstr "" #: doc/reference/en/method_list.html:684(a) +#: doc/reference/en/ActiveGroonga/Base.html:154(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1197(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1215(span) +#: doc/reference/en/ActiveGroonga/Base.html:1218(span) +msgid "limit" +msgstr "" + +#: doc/reference/en/method_list.html:692(a) #: doc/reference/en/ActiveSupport/TestCase.html:124(a) msgid "#load_active_groonga_fixtures" msgstr "" -#: doc/reference/en/method_list.html:686(small) -#: doc/reference/en/method_list.html:1038(small) -#: doc/reference/en/method_list.html:1102(small) +#: doc/reference/en/method_list.html:694(small) +#: doc/reference/en/method_list.html:1046(small) +#: doc/reference/en/method_list.html:1118(small) #: doc/reference/en/class_list.html:42(small) #: doc/reference/en/ActiveSupport/TestCase.html:87(a) #: doc/reference/en/ActiveSupport/TestCase.html:123(a) msgid "ActiveGroonga::TestFixtures" msgstr "" -#: doc/reference/en/method_list.html:692(a) +#: doc/reference/en/method_list.html:700(a) msgid "#management_table" msgstr "" -#: doc/reference/en/method_list.html:700(a) #: doc/reference/en/method_list.html:708(a) #: doc/reference/en/method_list.html:716(a) +#: doc/reference/en/method_list.html:724(a) msgid "#migrate" msgstr "" -#: doc/reference/en/method_list.html:724(a) #: doc/reference/en/method_list.html:732(a) +#: doc/reference/en/method_list.html:740(a) msgid "#migrated_versions" msgstr "" -#: doc/reference/en/method_list.html:740(a) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:432(span) -#: doc/reference/en/ActiveGroonga/Migration.html:181(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:492(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:509(span) -#: doc/reference/en/ActiveGroonga/Migration.html:635(span) +#: doc/reference/en/method_list.html:748(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:420(span) +#: doc/reference/en/ActiveGroonga/Migration.html:177(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:480(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:497(span) +#: doc/reference/en/ActiveGroonga/Migration.html:623(span) msgid "migration_name" msgstr "" -#: doc/reference/en/method_list.html:748(a) -#: doc/reference/en/ActiveGroonga/Migration.html:202(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:521(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:538(span) +#: doc/reference/en/method_list.html:756(a) +#: doc/reference/en/ActiveGroonga/Migration.html:198(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:509(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:526(span) msgid "migrations" msgstr "" -#: doc/reference/en/method_list.html:756(a) +#: doc/reference/en/method_list.html:764(a) msgid "#n_records" msgstr "" -#: doc/reference/en/method_list.html:764(a) #: doc/reference/en/method_list.html:772(a) #: doc/reference/en/method_list.html:780(a) +#: doc/reference/en/method_list.html:788(a) msgid "#name" msgstr "" -#: doc/reference/en/method_list.html:788(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:796(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#new_record?" msgstr "" -#: doc/reference/en/method_list.html:796(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:192(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:157(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:220(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:265(a) +#: doc/reference/en/method_list.html:804(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:188(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:155(strong) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:216(strong) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:263(a) msgid "next_migration_number" msgstr "" -#: doc/reference/en/method_list.html:804(a) +#: doc/reference/en/method_list.html:812(a) msgid "#options" msgstr "" -#: doc/reference/en/method_list.html:812(a) +#: doc/reference/en/method_list.html:820(a) msgid "#owner" msgstr "" -#: doc/reference/en/method_list.html:820(a) +#: doc/reference/en/method_list.html:828(a) msgid "#paginate" msgstr "" -#: doc/reference/en/method_list.html:828(a) #: doc/reference/en/method_list.html:836(a) #: doc/reference/en/method_list.html:844(a) +#: doc/reference/en/method_list.html:852(a) msgid "#path" msgstr "" -#: doc/reference/en/method_list.html:852(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:860(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#persisted?" msgstr "" -#: doc/reference/en/method_list.html:860(a) +#: doc/reference/en/method_list.html:868(a) msgid "#quote_table_name" msgstr "" -#: doc/reference/en/method_list.html:868(a) +#: doc/reference/en/method_list.html:876(a) msgid "#read_attribute" msgstr "" -#: doc/reference/en/method_list.html:876(a) +#: doc/reference/en/method_list.html:884(a) msgid "#record" msgstr "" -#: doc/reference/en/method_list.html:884(a) +#: doc/reference/en/method_list.html:892(a) msgid "#record_id" msgstr "" -#: doc/reference/en/method_list.html:892(a) +#: doc/reference/en/method_list.html:900(a) msgid "#record_raw_id" msgstr "" -#: doc/reference/en/method_list.html:900(a) +#: doc/reference/en/method_list.html:908(a) msgid "#records" msgstr "" -#: doc/reference/en/method_list.html:908(a) +#: doc/reference/en/method_list.html:916(a) msgid "#reference?" msgstr "" -#: doc/reference/en/method_list.html:916(a) -#: doc/reference/en/ActiveGroonga/Base.html:534(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1792(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) +#: doc/reference/en/method_list.html:924(a) +#: doc/reference/en/ActiveGroonga/Base.html:589(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2017(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) msgid "reference_class" msgstr "" -#: doc/reference/en/method_list.html:924(a) +#: doc/reference/en/method_list.html:932(a) msgid "#reference_table_name" msgstr "" -#: doc/reference/en/method_list.html:932(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:940(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#reload" msgstr "" -#: doc/reference/en/method_list.html:940(a) +#: doc/reference/en/method_list.html:948(a) msgid "#remove" msgstr "" -#: doc/reference/en/method_list.html:948(a) +#: doc/reference/en/method_list.html:956(a) msgid "#remove_code" msgstr "" -#: doc/reference/en/method_list.html:956(a) +#: doc/reference/en/method_list.html:964(a) msgid "#remove_table_code" msgstr "" -#: doc/reference/en/method_list.html:964(a) +#: doc/reference/en/method_list.html:972(a) msgid "#remove_version" msgstr "" -#: doc/reference/en/method_list.html:972(a) +#: doc/reference/en/method_list.html:980(a) msgid "#reopen" msgstr "" -#: doc/reference/en/method_list.html:980(a) #: doc/reference/en/method_list.html:988(a) -#: doc/reference/en/ActiveGroonga/Base.html:1051(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:996(a) +#: doc/reference/en/ActiveGroonga/Base.html:1104(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#save" msgstr "" -#: doc/reference/en/method_list.html:982(small) -#: doc/reference/en/method_list.html:1006(small) -#: doc/reference/en/method_list.html:1182(small) +#: doc/reference/en/method_list.html:998(small) +#: doc/reference/en/method_list.html:1014(small) +#: doc/reference/en/method_list.html:1198(small) #: doc/reference/en/class_list.html:42(small) msgid "ActiveGroonga::Validations" msgstr "" -#: doc/reference/en/method_list.html:996(a) #: doc/reference/en/method_list.html:1004(a) -#: doc/reference/en/ActiveGroonga/Base.html:1051(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:1012(a) +#: doc/reference/en/ActiveGroonga/Base.html:1104(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#save!" msgstr "" -#: doc/reference/en/method_list.html:1012(a) +#: doc/reference/en/method_list.html:1020(a) msgid "#score" msgstr "" -#: doc/reference/en/method_list.html:1020(a) +#: doc/reference/en/method_list.html:1028(a) msgid "#score=" msgstr "" -#: doc/reference/en/method_list.html:1028(a) -#: doc/reference/en/ActiveGroonga/Base.html:555(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1825(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) +#: doc/reference/en/method_list.html:1036(a) +#: doc/reference/en/ActiveGroonga/Base.html:610(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2050(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) msgid "select" msgstr "" -#: doc/reference/en/method_list.html:1036(a) +#: doc/reference/en/method_list.html:1044(a) #: doc/reference/en/ActiveSupport/TestCase.html:124(a) msgid "#setup_fixtures_with_active_groonga" msgstr "" -#: doc/reference/en/method_list.html:1044(a) +#: doc/reference/en/method_list.html:1052(a) msgid "#sort" msgstr "" -#: doc/reference/en/method_list.html:1052(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:138(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:249(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:313(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:341(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:221(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:222(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:242(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:270(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:453(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:647(span) -#: doc/reference/en/ActiveGroonga/Base.html:576(strong) -#: doc/reference/en/ActiveGroonga/Base.html:967(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1262(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1614(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:1862(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1879(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) -#: doc/reference/en/ActiveGroonga/Base.html:2191(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2345(span) -#: doc/reference/en/ActiveGroonga/Base.html:2447(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2464(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) -msgid "table" +#: doc/reference/en/method_list.html:1060(a) +#: doc/reference/en/ActiveGroonga/Base.html:179(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1278(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1304(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:628(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:802(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:803(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +msgid "sort_keys" msgstr "" -#: doc/reference/en/method_list.html:1060(a) #: doc/reference/en/method_list.html:1068(a) #: doc/reference/en/method_list.html:1076(a) +#: doc/reference/en/method_list.html:1092(a) msgid "#table" msgstr "" #: doc/reference/en/method_list.html:1084(a) -#: doc/reference/en/ActiveGroonga/Base.html:597(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Base.html:1891(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1916(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:421(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:423(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:136(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:241(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:303(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:329(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:236(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:262(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:453(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:647(span) +#: doc/reference/en/ActiveGroonga/Base.html:631(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1020(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1388(span) +#: doc/reference/en/ActiveGroonga/Base.html:1487(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1839(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:1889(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2087(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2104(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) +#: doc/reference/en/ActiveGroonga/Base.html:2416(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2570(span) +#: doc/reference/en/ActiveGroonga/Base.html:2672(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2689(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +msgid "table" +msgstr "" + +#: doc/reference/en/method_list.html:1100(a) +#: doc/reference/en/ActiveGroonga/Base.html:652(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2116(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2141(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:419(span) msgid "table_name" msgstr "" -#: doc/reference/en/method_list.html:1092(a) -#: doc/reference/en/ActiveGroonga/Base.html:618(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1928(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1945(span) +#: doc/reference/en/method_list.html:1108(a) +#: doc/reference/en/ActiveGroonga/Base.html:673(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2153(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2170(span) msgid "table_name=" msgstr "" -#: doc/reference/en/method_list.html:1100(a) +#: doc/reference/en/method_list.html:1116(a) #: doc/reference/en/ActiveSupport/TestCase.html:124(a) msgid "#teardown_fixtures_with_active_groonga" msgstr "" -#: doc/reference/en/method_list.html:1108(a) +#: doc/reference/en/method_list.html:1124(a) msgid "#to_ary" msgstr "" -#: doc/reference/en/method_list.html:1116(a) +#: doc/reference/en/method_list.html:1132(a) msgid "#to_key" msgstr "" -#: doc/reference/en/method_list.html:1124(a) +#: doc/reference/en/method_list.html:1140(a) msgid "#transaction" msgstr "" -#: doc/reference/en/method_list.html:1132(a) +#: doc/reference/en/method_list.html:1148(a) msgid "#type" msgstr "" -#: doc/reference/en/method_list.html:1140(a) +#: doc/reference/en/method_list.html:1156(a) msgid "#up?" msgstr "" -#: doc/reference/en/method_list.html:1148(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:1164(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#update_attribute" msgstr "" -#: doc/reference/en/method_list.html:1156(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:1172(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#update_attributes" msgstr "" -#: doc/reference/en/method_list.html:1164(a) -#: doc/reference/en/ActiveGroonga/Base.html:1063(a) +#: doc/reference/en/method_list.html:1180(a) +#: doc/reference/en/ActiveGroonga/Base.html:1116(a) msgid "#update_attributes!" msgstr "" -#: doc/reference/en/method_list.html:1172(a) +#: doc/reference/en/method_list.html:1188(a) msgid "#update_version" msgstr "" -#: doc/reference/en/method_list.html:1180(a) -#: doc/reference/en/ActiveGroonga/Base.html:1051(a) +#: doc/reference/en/method_list.html:1196(a) +#: doc/reference/en/ActiveGroonga/Base.html:1104(a) msgid "#valid?" msgstr "" -#: doc/reference/en/method_list.html:1188(a) +#: doc/reference/en/method_list.html:1204(a) msgid "#values" msgstr "" -#: doc/reference/en/method_list.html:1196(a) +#: doc/reference/en/method_list.html:1212(a) msgid "#vector?" msgstr "" -#: doc/reference/en/method_list.html:1204(a) -#: doc/reference/en/method_list.html:1212(a) #: doc/reference/en/method_list.html:1220(a) +#: doc/reference/en/method_list.html:1228(a) +#: doc/reference/en/method_list.html:1236(a) msgid "#version" msgstr "" -#: doc/reference/en/method_list.html:1228(a) +#: doc/reference/en/method_list.html:1244(a) msgid "#with_position?" msgstr "" -#: doc/reference/en/method_list.html:1236(a) +#: doc/reference/en/method_list.html:1252(a) msgid "#with_section?" msgstr "" -#: doc/reference/en/method_list.html:1244(a) +#: doc/reference/en/method_list.html:1260(a) msgid "#with_weight?" msgstr "" -#: doc/reference/en/method_list.html:1252(a) +#: doc/reference/en/method_list.html:1268(a) msgid "#write_attribute" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Generators.html:88(a) #: doc/reference/en/ActiveGroonga/Persistence.html:74(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:69(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:191(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:187(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:39(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:69(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:264(a) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:262(a) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) #: doc/reference/en/ActiveGroonga/Validations.html:82(a) #: doc/reference/en/ActiveGroonga/Base.html:39(span) -#: doc/reference/en/ActiveGroonga/Base.html:1072(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Base.html:1125(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) #: doc/reference/en/ActiveGroonga/Callbacks.html:78(a) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) #: doc/reference/en/_index.html:103(a) doc/reference/en/_index.html:110(a) msgid "Base" msgstr "" @@ -1875,30 +1926,30 @@ msgid "" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1039(a) +#: doc/reference/en/ActiveGroonga/Base.html:1092(a) #: doc/reference/en/ActiveGroonga/Callbacks.html:39(span) #: doc/reference/en/_index.html:125(a) msgid "Callbacks" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) +#: doc/reference/en/ActiveGroonga.html:113(a) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) #: doc/reference/en/ActiveGroonga/Database.html:39(span) -#: doc/reference/en/ActiveGroonga/Database.html:226(a) +#: doc/reference/en/ActiveGroonga/Database.html:224(a) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) #: doc/reference/en/_index.html:168(a) msgid "Database" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) -#: doc/reference/en/ActiveGroonga/Error.html:110(a) +#: doc/reference/en/ActiveGroonga.html:113(a) +#: doc/reference/en/ActiveGroonga/Error.html:108(a) #: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:39(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:229(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:221(a) #: doc/reference/en/_index.html:175(a) msgid "DuplicateMigrationVersionError" msgstr "" @@ -1910,14 +1961,14 @@ msgid "" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:69(a) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:76(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:69(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:76(a) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:69(a) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:69(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:76(a) #: doc/reference/en/ActiveGroonga/Error.html:39(span) @@ -1934,7 +1985,7 @@ msgid "" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/Generators.html:39(span) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:37(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:37(a) @@ -1957,7 +2008,7 @@ msgstr "" #: doc/reference/en/class_list.html:42(a) #: doc/reference/en/ActiveGroonga/Generators.html:88(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:425(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:415(a) #: doc/reference/en/_index.html:139(a) msgid "Column" msgstr "" @@ -1965,8 +2016,8 @@ msgstr "" #: doc/reference/en/class_list.html:42(a) #: doc/reference/en/ActiveGroonga/Generators.html:88(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:201(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:114(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:197(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:112(a) #: doc/reference/en/_index.html:252(a) msgid "MigrationGenerator" msgstr "" @@ -1978,69 +2029,69 @@ msgstr "" #: doc/reference/en/class_list.html:42(a) #: doc/reference/en/ActiveGroonga/Generators.html:88(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:114(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:112(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:274(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(a) #: doc/reference/en/_index.html:266(a) msgid "ModelGenerator" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:39(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:218(a) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Error.html:110(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:212(a) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Error.html:108(a) #: doc/reference/en/_index.html:220(a) msgid "KeyOverrideError" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Migration.html:39(span) -#: doc/reference/en/ActiveGroonga/Migration.html:305(a) +#: doc/reference/en/ActiveGroonga/Migration.html:299(a) #: doc/reference/en/_index.html:238(a) msgid "Migration" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:39(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:241(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:235(a) #: doc/reference/en/_index.html:245(a) msgid "MigrationEntry" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Migrator.html:39(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:268(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:266(a) #: doc/reference/en/_index.html:259(a) msgid "Migrator" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:39(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:192(a) -#: doc/reference/en/ActiveGroonga/Base.html:2257(a) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Error.html:110(a) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:188(a) +#: doc/reference/en/ActiveGroonga/Base.html:2482(a) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Error.html:108(a) #: doc/reference/en/_index.html:281(a) msgid "NoKeyTableError" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/Persistence.html:39(span) #: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1062(a) +#: doc/reference/en/ActiveGroonga/Base.html:1115(a) #: doc/reference/en/_index.html:303(a) msgid "Persistence" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Railtie.html:39(span) #: doc/reference/en/_index.html:318(a) msgid "Railtie" @@ -2053,7 +2104,7 @@ msgid "" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:37(a) #: doc/reference/en/ActiveGroonga/Railties.html:39(span) #: doc/reference/en/_index.html:325(a) @@ -2072,31 +2123,41 @@ msgid "ActiveGroonga::Railties" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:39(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:192(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:188(a) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Error.html:110(a) +#: doc/reference/en/ActiveGroonga/Error.html:108(a) #: doc/reference/en/_index.html:332(a) msgid "RecordInvalid" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Persistence.html:709(span) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:39(span) -#: doc/reference/en/ActiveGroonga/Error.html:110(a) +#: doc/reference/en/ActiveGroonga/Error.html:108(a) #: doc/reference/en/_index.html:339(a) msgid "RecordNotSaved" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:37(a) #: doc/reference/en/ActiveGroonga/ResultSet.html:39(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:326(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:318(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:578(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:580(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:598(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:697(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:760(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:823(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:825(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:843(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:925(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:941(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1004(a) #: doc/reference/en/_index.html:346(a) msgid "ResultSet" msgstr "" @@ -2110,33 +2171,33 @@ msgstr "" #: doc/reference/en/class_list.html:42(a) #: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:39(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:103(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) #: doc/reference/en/_index.html:296(a) msgid "PaginationProxy" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Schema.html:39(span) -#: doc/reference/en/ActiveGroonga/Schema.html:235(a) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:233(a) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) #: doc/reference/en/_index.html:361(a) msgid "Schema" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:421(span) +#: doc/reference/en/ActiveGroonga.html:113(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:39(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:239(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:237(a) #: doc/reference/en/_index.html:368(a) msgid "SchemaManagementTable" msgstr "" #: doc/reference/en/class_list.html:42(a) #: doc/reference/en/ActiveSupport/TestCase.html:39(span) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/TestCase.html:39(span) #: doc/reference/en/_index.html:383(a) doc/reference/en/_index.html:390(a) msgid "TestCase" @@ -2149,7 +2210,7 @@ msgid "" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:39(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:37(a) #: doc/reference/en/_index.html:397(a) @@ -2160,23 +2221,23 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:90(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:212(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:39(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:247(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:245(a) #: doc/reference/en/_index.html:153(a) msgid "ConnectionMock" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/VERSION.html:39(span) #: doc/reference/en/_index.html:412(a) msgid "VERSION" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:114(a) +#: doc/reference/en/ActiveGroonga.html:109(a) #: doc/reference/en/ActiveGroonga/Validations.html:39(span) #: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1050(a) +#: doc/reference/en/ActiveGroonga/Base.html:1103(a) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:37(a) #: doc/reference/en/_index.html:419(a) msgid "Validations" @@ -2190,9 +2251,9 @@ msgid "ClassMethods" msgstr "" #: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:118(a) +#: doc/reference/en/ActiveGroonga.html:113(a) #: doc/reference/en/ActiveGroonga/Vector.html:39(span) -#: doc/reference/en/ActiveGroonga/Vector.html:358(a) +#: doc/reference/en/ActiveGroonga/Vector.html:350(a) #: doc/reference/en/_index.html:426(a) msgid "Vector" msgstr "" @@ -2636,7 +2697,8 @@ msgstr "" #: doc/reference/en/index.html:61(p) doc/reference/en/file.README.html:61(p) msgid "A library to use groonga with ActiveRecord like ." -msgstr "ActiveRecord??????groonga??????????????" +msgstr "" +"ActiveRecord??????groonga??????????????" #: doc/reference/en/index.html:64(span) #: doc/reference/en/file.README.html:64(span) @@ -2648,13 +2710,18 @@ msgid "" "groonga provides both of full text search and column store features. " "ActiveGroonga + groonga can be used as an alternative of ActiveRecord + " "." -msgstr "groonga??????????????????????????ActiveRecord?????????????ActiveGroonga?groonga?????????????????" +msgstr "" +"groonga??????????????????????????ActiveRecord?" +"????????????ActiveGroonga?groonga???????" +"??????????" #: doc/reference/en/index.html:65(p) doc/reference/en/file.README.html:65(p) msgid "" "ActiveGroonga is based on rroonga. See the following URLs about rroonga and " "groonga." -msgstr "rroonga???????????rroonga?groonga??????????????????\n" +msgstr "" +"rroonga???????????rroonga?groonga????????????????" +"??" #: doc/reference/en/index.html:68(a) doc/reference/en/index.html:81(li) #: doc/reference/en/file.README.html:68(a) @@ -2686,12 +2753,15 @@ msgstr "" #: doc/reference/en/index.html:76(p) doc/reference/en/file.README.html:76(p) msgid " 2.1. See license/ for details." -msgstr " 2.1???????license/????????" +msgstr "" +" 2.1???????license/????????" #: doc/reference/en/index.html:77(p) doc/reference/en/file.README.html:77(p) msgid "" "(Kouhei Sutou has a right to change license inclidng contributed patches.)" -msgstr "?????????????????????Kouhei Sutou????????????????????" +msgstr "" +"?????????????????????Kouhei Sutou???????????" +"?????????" #: doc/reference/en/index.html:79(h2) doc/reference/en/file.README.html:79(h2) msgid "Dependencies" @@ -2817,10 +2887,10 @@ msgstr "" #: doc/reference/en/ActiveSupport/TestCase.html:69(span) #: doc/reference/en/ActiveSupport/TestCase.html:72(li) #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:72(li) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:270(tt) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:313(tt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:262(tt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:303(tt) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:72(li) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:242(tt) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:236(tt) #: doc/reference/en/ActiveGroonga/Railtie.html:72(li) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:126(tt) #: doc/reference/en/ActiveGroonga/Persistence.html:361(tt) @@ -2833,32 +2903,32 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:753(tt) #: doc/reference/en/ActiveGroonga/Persistence.html:784(tt) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:72(li) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:246(tt) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:240(tt) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:72(li) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:250(tt) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:244(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:69(span) #: doc/reference/en/ActiveGroonga/Generators/Column.html:72(li) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:483(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:526(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:569(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:616(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:755(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:784(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:471(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:512(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:553(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:598(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:737(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:766(tt) #: doc/reference/en/ActiveGroonga/Generators/Base.html:72(li) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:191(tt) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:220(tt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:187(tt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:216(tt) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:72(li) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:331(tt) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:364(tt) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:395(tt) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:430(tt) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:475(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:327(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:360(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:391(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:426(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:471(tt) #: doc/reference/en/ActiveGroonga/Schema.html:69(span) #: doc/reference/en/ActiveGroonga/Schema.html:72(li) -#: doc/reference/en/ActiveGroonga/Schema.html:288(tt) -#: doc/reference/en/ActiveGroonga/Schema.html:317(tt) -#: doc/reference/en/ActiveGroonga/Schema.html:366(tt) -#: doc/reference/en/ActiveGroonga/Schema.html:421(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:284(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:313(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:362(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:417(tt) #: doc/reference/en/ActiveGroonga/Validations.html:196(tt) #: doc/reference/en/ActiveGroonga/Validations.html:225(tt) #: doc/reference/en/ActiveGroonga/TestFixtures.html:182(tt) @@ -2866,104 +2936,102 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:270(tt) #: doc/reference/en/ActiveGroonga/Base.html:69(span) #: doc/reference/en/ActiveGroonga/Base.html:72(li) -#: doc/reference/en/ActiveGroonga/Base.html:1145(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1174(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1215(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1244(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1273(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1320(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1353(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1382(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1415(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1450(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1487(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1524(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1634(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1685(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1714(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1751(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1792(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1825(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1862(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1891(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1928(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1963(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1992(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2021(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2054(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2134(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2163(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2210(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2239(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2294(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2323(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2360(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2389(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2418(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2447(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2476(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2505(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1370(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1399(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1440(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1469(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1498(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1545(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1578(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1607(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1640(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1675(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1712(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1749(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1859(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1910(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1939(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1976(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2017(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2050(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2087(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2116(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2153(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2188(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2217(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2246(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2279(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2359(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2388(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2435(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2464(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2519(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2548(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2585(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2614(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2643(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2672(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2701(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2730(tt) #: doc/reference/en/ActiveGroonga/Migrator.html:69(span) #: doc/reference/en/ActiveGroonga/Migrator.html:72(li) -#: doc/reference/en/ActiveGroonga/Migrator.html:323(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:403(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:432(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:497(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:319(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:399(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:428(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:493(tt) #: doc/reference/en/ActiveGroonga/Database.html:69(span) #: doc/reference/en/ActiveGroonga/Database.html:72(li) -#: doc/reference/en/ActiveGroonga/Database.html:275(tt) -#: doc/reference/en/ActiveGroonga/Database.html:308(tt) -#: doc/reference/en/ActiveGroonga/Database.html:353(tt) -#: doc/reference/en/ActiveGroonga/Database.html:388(tt) +#: doc/reference/en/ActiveGroonga/Database.html:271(tt) +#: doc/reference/en/ActiveGroonga/Database.html:304(tt) +#: doc/reference/en/ActiveGroonga/Database.html:349(tt) +#: doc/reference/en/ActiveGroonga/Database.html:384(tt) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:69(span) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:72(li) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:293(tt) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:336(tt) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(tt) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:414(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:285(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:326(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:371(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(tt) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:69(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:72(li) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:288(tt) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:317(tt) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:354(tt) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:385(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:284(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:313(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:350(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:381(tt) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:72(li) #: doc/reference/en/ActiveGroonga/TestCase.html:72(li) #: doc/reference/en/ActiveGroonga/Error.html:72(li) #: doc/reference/en/ActiveGroonga/Migration.html:69(span) #: doc/reference/en/ActiveGroonga/Migration.html:72(li) -#: doc/reference/en/ActiveGroonga/Migration.html:357(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:402(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:445(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:492(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:521(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:556(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:617(tt) -#: doc/reference/en/ActiveGroonga/Callbacks.html:139(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:349(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:394(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:435(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:480(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:509(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:544(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:605(tt) +#: doc/reference/en/ActiveGroonga/Callbacks.html:137(tt) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:69(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:72(li) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:294(tt) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:327(tt) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:356(tt) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:403(tt) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:434(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:290(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:323(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:352(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:399(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:430(tt) #: doc/reference/en/ActiveGroonga/ResultSet.html:69(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:72(li) -#: doc/reference/en/ActiveGroonga/ResultSet.html:390(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:433(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:476(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:523(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:560(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:589(tt) -#: doc/reference/en/ActiveGroonga/ResultSet.html:628(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:384(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:425(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:466(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:511(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:548(tt) #: doc/reference/en/ActiveGroonga/Vector.html:69(span) #: doc/reference/en/ActiveGroonga/Vector.html:72(li) -#: doc/reference/en/ActiveGroonga/Vector.html:412(tt) -#: doc/reference/en/ActiveGroonga/Vector.html:455(tt) -#: doc/reference/en/ActiveGroonga/Vector.html:498(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:402(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:443(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:484(tt) #: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:72(li) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:281(tt) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:324(tt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:271(tt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:312(tt) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:126(tt) msgid "Object" msgstr "" @@ -3045,8 +3113,8 @@ msgid "lib/active_groonga/test_help.rb" msgstr "" #: doc/reference/en/ActiveSupport/TestCase.html:100(h2) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:113(h2) -#: doc/reference/en/ActiveGroonga/Error.html:109(h2) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:111(h2) +#: doc/reference/en/ActiveGroonga/Error.html:107(h2) msgid "Direct Known Subclasses" msgstr "" @@ -3060,15 +3128,15 @@ msgid "Method Summary" msgstr "" #: doc/reference/en/ActiveSupport/TestCase.html:123(h3) -#: doc/reference/en/ActiveGroonga/Base.html:1039(h3) -#: doc/reference/en/ActiveGroonga/Base.html:1050(h3) -#: doc/reference/en/ActiveGroonga/Base.html:1062(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1092(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1103(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1115(h3) msgid "" "Methods included from " msgstr "" #: doc/reference/en/ActiveSupport/TestCase.html:124(p) -#: doc/reference/en/ActiveGroonga/Base.html:1051(p) +#: doc/reference/en/ActiveGroonga/Base.html:1104(p) msgid "" ", , Lesser General Public License " +"version 2.1 as published by the Free Software Foundation." +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:93(span) +msgid "WITHOUT" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:93(span) +msgid "ANY" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:93(span) +msgid "WARRANTY" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:94(span) +msgid "MERCHANTABILITY" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:94(span) +msgid "FITNESS" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:94(span) +msgid "FOR" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:94(span) +msgid "PARTICULAR" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:94(span) +msgid "PURPOSE" +msgstr "" + +#: doc/reference/en/ActiveGroonga.html:92(p) msgid "" -"This library is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details." +"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/ActiveGroonga.html:98(span) +msgid "USA" msgstr "" -#: doc/reference/en/ActiveGroonga.html:100(p) +#: doc/reference/en/ActiveGroonga.html:96(p) msgid "" -"You should have received a copy of the GNU 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 USA" +"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/ActiveGroonga.html:118(strong) +#: doc/reference/en/ActiveGroonga.html:113(strong) #: doc/reference/en/ActiveGroonga/Generators.html:88(strong) #: doc/reference/en/ActiveGroonga/TestFixtures.html:90(strong) msgid "Classes:" msgstr "" -#: doc/reference/en/ActiveGroonga.html:111(p) +#: doc/reference/en/ActiveGroonga.html:106(p) msgid "" " , , )" msgstr "" @@ -3316,281 +3442,281 @@ msgstr "" #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:106(h2) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:106(h2) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:106(h2) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:108(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:106(h2) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:97(h2) #: doc/reference/en/ActiveGroonga/Migration.html:110(h2) #: doc/reference/en/ActiveGroonga/ResultSet.html:112(h2) #: doc/reference/en/ActiveGroonga/Vector.html:102(h2) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:117(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:115(h2) msgid "Instance Attribute Summary " msgstr "" #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:112(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:250(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:270(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:298(span) -#: doc/reference/en/ActiveGroonga/Base.html:820(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Base.html:2210(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2227(span) -#: doc/reference/en/ActiveGroonga/Base.html:2280(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2283(span) -#: doc/reference/en/ActiveGroonga/Base.html:2346(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:262(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:288(span) +#: doc/reference/en/ActiveGroonga/Base.html:873(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Base.html:2435(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2452(span) +#: doc/reference/en/ActiveGroonga/Base.html:2505(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2508(span) +#: doc/reference/en/ActiveGroonga/Base.html:2571(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) msgid "key" msgstr "" #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:112(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:138(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:136(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(a) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:96(a) #: doc/reference/en/ActiveGroonga/Persistence.html:121(a) #: doc/reference/en/ActiveGroonga/Persistence.html:142(a) #: doc/reference/en/ActiveGroonga/Persistence.html:226(a) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:112(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:137(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:114(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:140(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:166(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:205(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:293(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:314(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:135(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:112(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:136(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:160(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:197(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:283(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:304(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:126(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:147(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:168(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:189(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:235(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:233(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:110(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:131(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:152(a) -#: doc/reference/en/ActiveGroonga/Base.html:669(a) -#: doc/reference/en/ActiveGroonga/Base.html:711(a) -#: doc/reference/en/ActiveGroonga/Base.html:753(a) -#: doc/reference/en/ActiveGroonga/Base.html:799(a) -#: doc/reference/en/ActiveGroonga/Base.html:820(a) -#: doc/reference/en/ActiveGroonga/Base.html:883(a) -#: doc/reference/en/ActiveGroonga/Base.html:904(a) -#: doc/reference/en/ActiveGroonga/Base.html:925(a) -#: doc/reference/en/ActiveGroonga/Base.html:967(a) -#: doc/reference/en/ActiveGroonga/Base.html:988(a) +#: doc/reference/en/ActiveGroonga/Base.html:724(a) +#: doc/reference/en/ActiveGroonga/Base.html:766(a) +#: doc/reference/en/ActiveGroonga/Base.html:808(a) +#: doc/reference/en/ActiveGroonga/Base.html:852(a) +#: doc/reference/en/ActiveGroonga/Base.html:873(a) +#: doc/reference/en/ActiveGroonga/Base.html:936(a) +#: doc/reference/en/ActiveGroonga/Base.html:957(a) +#: doc/reference/en/ActiveGroonga/Base.html:978(a) +#: doc/reference/en/ActiveGroonga/Base.html:1020(a) +#: doc/reference/en/ActiveGroonga/Base.html:1041(a) #: doc/reference/en/ActiveGroonga/Migrator.html:111(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:178(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:220(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:176(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:218(a) #: doc/reference/en/ActiveGroonga/Database.html:111(a) #: doc/reference/en/ActiveGroonga/Database.html:132(a) -#: doc/reference/en/ActiveGroonga/Database.html:178(a) -#: doc/reference/en/ActiveGroonga/Database.html:199(a) +#: doc/reference/en/ActiveGroonga/Database.html:176(a) +#: doc/reference/en/ActiveGroonga/Database.html:197(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:103(a) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:129(a) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:214(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:127(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:208(a) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:124(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:170(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:168(a) #: doc/reference/en/ActiveGroonga/Migration.html:116(a) -#: doc/reference/en/ActiveGroonga/Migration.html:142(a) -#: doc/reference/en/ActiveGroonga/Migration.html:278(a) +#: doc/reference/en/ActiveGroonga/Migration.html:140(a) +#: doc/reference/en/ActiveGroonga/Migration.html:272(a) #: doc/reference/en/ActiveGroonga/Callbacks.html:106(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:132(a) #: doc/reference/en/ActiveGroonga/ResultSet.html:118(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:144(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:170(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:210(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:142(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:166(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:204(a) #: doc/reference/en/ActiveGroonga/Vector.html:108(a) -#: doc/reference/en/ActiveGroonga/Vector.html:134(a) -#: doc/reference/en/ActiveGroonga/Vector.html:160(a) -#: doc/reference/en/ActiveGroonga/Vector.html:284(a) -#: doc/reference/en/ActiveGroonga/Vector.html:330(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:123(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:149(a) +#: doc/reference/en/ActiveGroonga/Vector.html:132(a) +#: doc/reference/en/ActiveGroonga/Vector.html:156(a) +#: doc/reference/en/ActiveGroonga/Vector.html:278(a) +#: doc/reference/en/ActiveGroonga/Vector.html:322(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:121(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:145(a) msgid "- (Object) " msgstr "" #: doc/reference/en/ActiveGroonga/KeyOverrideError.html:119(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:145(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:143(span) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:119(span) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:119(span) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:110(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:136(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:134(span) #: doc/reference/en/ActiveGroonga/Migration.html:123(span) -#: doc/reference/en/ActiveGroonga/Migration.html:149(span) +#: doc/reference/en/ActiveGroonga/Migration.html:147(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:125(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:151(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:177(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:149(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:173(span) #: doc/reference/en/ActiveGroonga/Vector.html:115(span) -#: doc/reference/en/ActiveGroonga/Vector.html:141(span) -#: doc/reference/en/ActiveGroonga/Vector.html:167(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:130(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:156(span) +#: doc/reference/en/ActiveGroonga/Vector.html:139(span) +#: doc/reference/en/ActiveGroonga/Vector.html:163(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:128(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:152(span) msgid "readonly" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:129(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:128(p) msgid "Returns the value of attribute key." msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:155(p) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:129(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:152(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:128(p) msgid "Returns the value of attribute table." msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:171(h2) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:145(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:167(h2) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:143(h2) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:86(h2) #: doc/reference/en/ActiveGroonga/Persistence.html:90(h2) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:145(h2) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:127(h2) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:195(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:143(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:125(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:187(h2) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:116(h2) #: doc/reference/en/ActiveGroonga/Schema.html:152(h2) #: doc/reference/en/ActiveGroonga/Validations.html:112(h2) #: doc/reference/en/ActiveGroonga/TestFixtures.html:100(h2) -#: doc/reference/en/ActiveGroonga/Base.html:638(h2) +#: doc/reference/en/ActiveGroonga/Base.html:693(h2) #: doc/reference/en/ActiveGroonga/Migrator.html:101(h2) #: doc/reference/en/ActiveGroonga/Database.html:101(h2) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:158(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:154(h2) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:114(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:222(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:218(h2) #: doc/reference/en/ActiveGroonga/Callbacks.html:96(h2) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:101(h2) -#: doc/reference/en/ActiveGroonga/ResultSet.html:200(h2) -#: doc/reference/en/ActiveGroonga/Vector.html:190(h2) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:182(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:194(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:184(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:176(h2) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:86(h2) msgid "Instance Method Summary " msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:181(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:218(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:155(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:192(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:221(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:155(strong) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:192(strong) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:223(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:158(strong) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:201(strong) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:247(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:425(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:177(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:212(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:153(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:188(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:153(strong) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:188(strong) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:156(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:197(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:239(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:415(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:210(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:274(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) #: doc/reference/en/ActiveGroonga/Schema.html:204(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:235(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Base.html:774(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1072(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) +#: doc/reference/en/ActiveGroonga/Schema.html:233(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Base.html:829(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1125(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) #: doc/reference/en/ActiveGroonga/Migrator.html:153(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:268(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:266(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) #: doc/reference/en/ActiveGroonga/Database.html:153(strong) -#: doc/reference/en/ActiveGroonga/Database.html:226(strong) -#: doc/reference/en/ActiveGroonga/Database.html:255(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:168(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:241(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) +#: doc/reference/en/ActiveGroonga/Database.html:224(strong) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:164(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:235(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:145(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:239(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:268(span) -#: doc/reference/en/ActiveGroonga/Migration.html:232(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:305(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:237(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/Migration.html:228(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:299(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:153(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:247(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:275(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:252(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:326(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/Vector.html:305(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:358(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:192(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:229(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:245(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:271(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:246(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:318(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/Vector.html:299(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:350(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:186(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:221(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) msgid "initialize" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:181(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:177(a) msgid "- (KeyOverrideError) (table, key)" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:187(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:161(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:161(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:164(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:253(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:183(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:159(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:159(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:162(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:245(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:216(span) #: doc/reference/en/ActiveGroonga/Schema.html:210(span) -#: doc/reference/en/ActiveGroonga/Base.html:780(span) +#: doc/reference/en/ActiveGroonga/Base.html:835(span) #: doc/reference/en/ActiveGroonga/Migrator.html:159(span) #: doc/reference/en/ActiveGroonga/Database.html:159(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:174(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:170(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:151(span) -#: doc/reference/en/ActiveGroonga/Migration.html:238(span) +#: doc/reference/en/ActiveGroonga/Migration.html:234(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:159(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:258(span) -#: doc/reference/en/ActiveGroonga/Vector.html:311(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:198(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:252(span) +#: doc/reference/en/ActiveGroonga/Vector.html:305(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:192(span) msgid "constructor" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:197(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:192(p) msgid "A new instance of KeyOverrideError." msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:213(h2) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:187(h2) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:187(h2) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:196(h2) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:420(h2) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:269(h2) -#: doc/reference/en/ActiveGroonga/Schema.html:230(h2) -#: doc/reference/en/ActiveGroonga/Base.html:1067(h2) -#: doc/reference/en/ActiveGroonga/Migrator.html:263(h2) -#: doc/reference/en/ActiveGroonga/Database.html:221(h2) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:236(h2) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:234(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:300(h2) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:242(h2) -#: doc/reference/en/ActiveGroonga/ResultSet.html:321(h2) -#: doc/reference/en/ActiveGroonga/Vector.html:353(h2) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:224(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:207(h2) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:183(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:183(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:192(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:410(h2) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:267(h2) +#: doc/reference/en/ActiveGroonga/Schema.html:228(h2) +#: doc/reference/en/ActiveGroonga/Base.html:1120(h2) +#: doc/reference/en/ActiveGroonga/Migrator.html:261(h2) +#: doc/reference/en/ActiveGroonga/Database.html:219(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:230(h2) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:232(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:294(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:240(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:313(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:345(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:216(h2) msgid "Constructor Details" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:216(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:210(p) msgid "" "- () " "(table, key)" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:225(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:218(p) msgid "A new instance of KeyOverrideError" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:236(pre) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:228(pre) msgid "34 35 36 37 38" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:246(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:238(span) msgid "# File 'lib/active_groonga/error.rb', line 34" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:298(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:341(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:221(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:270(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:288(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:329(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:262(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:154(span) #: doc/reference/en/ActiveGroonga/Persistence.html:383(span) #: doc/reference/en/ActiveGroonga/Persistence.html:419(span) @@ -3604,139 +3730,139 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:739(span) #: doc/reference/en/ActiveGroonga/Persistence.html:771(span) #: doc/reference/en/ActiveGroonga/Persistence.html:802(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:223(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:274(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:268(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:511(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:554(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:597(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:637(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:692(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:743(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:772(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:805(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:860(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:911(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:962(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1013(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:208(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:350(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:382(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:415(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:492(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:266(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:262(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:497(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:538(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:579(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:619(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:674(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:725(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:754(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:787(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:842(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:893(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:944(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:995(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:346(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:378(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:411(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:488(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) #: doc/reference/en/ActiveGroonga/Validations.html:295(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:209(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:253(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:287(span) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1197(span) -#: doc/reference/en/ActiveGroonga/Base.html:1232(span) -#: doc/reference/en/ActiveGroonga/Base.html:1261(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1339(span) -#: doc/reference/en/ActiveGroonga/Base.html:1370(span) -#: doc/reference/en/ActiveGroonga/Base.html:1401(span) -#: doc/reference/en/ActiveGroonga/Base.html:1435(span) -#: doc/reference/en/ActiveGroonga/Base.html:1471(span) -#: doc/reference/en/ActiveGroonga/Base.html:1508(span) -#: doc/reference/en/ActiveGroonga/Base.html:1546(span) -#: doc/reference/en/ActiveGroonga/Base.html:1612(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1702(span) -#: doc/reference/en/ActiveGroonga/Base.html:1735(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Base.html:1879(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1945(span) -#: doc/reference/en/ActiveGroonga/Base.html:1980(span) -#: doc/reference/en/ActiveGroonga/Base.html:2009(span) -#: doc/reference/en/ActiveGroonga/Base.html:2040(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1422(span) +#: doc/reference/en/ActiveGroonga/Base.html:1457(span) +#: doc/reference/en/ActiveGroonga/Base.html:1486(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1564(span) +#: doc/reference/en/ActiveGroonga/Base.html:1595(span) +#: doc/reference/en/ActiveGroonga/Base.html:1626(span) +#: doc/reference/en/ActiveGroonga/Base.html:1660(span) +#: doc/reference/en/ActiveGroonga/Base.html:1696(span) +#: doc/reference/en/ActiveGroonga/Base.html:1733(span) +#: doc/reference/en/ActiveGroonga/Base.html:1771(span) +#: doc/reference/en/ActiveGroonga/Base.html:1837(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:1927(span) +#: doc/reference/en/ActiveGroonga/Base.html:1960(span) +#: doc/reference/en/ActiveGroonga/Base.html:1999(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) #: doc/reference/en/ActiveGroonga/Base.html:2071(span) -#: doc/reference/en/ActiveGroonga/Base.html:2122(span) -#: doc/reference/en/ActiveGroonga/Base.html:2151(span) -#: doc/reference/en/ActiveGroonga/Base.html:2189(span) -#: doc/reference/en/ActiveGroonga/Base.html:2227(span) -#: doc/reference/en/ActiveGroonga/Base.html:2280(span) -#: doc/reference/en/ActiveGroonga/Base.html:2311(span) -#: doc/reference/en/ActiveGroonga/Base.html:2344(span) -#: doc/reference/en/ActiveGroonga/Base.html:2377(span) -#: doc/reference/en/ActiveGroonga/Base.html:2406(span) -#: doc/reference/en/ActiveGroonga/Base.html:2435(span) -#: doc/reference/en/ActiveGroonga/Base.html:2464(span) -#: doc/reference/en/ActiveGroonga/Base.html:2493(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:340(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:391(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:420(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:514(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:565(span) -#: doc/reference/en/ActiveGroonga/Database.html:255(span) -#: doc/reference/en/ActiveGroonga/Database.html:294(span) -#: doc/reference/en/ActiveGroonga/Database.html:333(span) -#: doc/reference/en/ActiveGroonga/Database.html:373(span) -#: doc/reference/en/ActiveGroonga/Database.html:406(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:321(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:364(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:431(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:268(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:305(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:338(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:372(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:403(span) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:430(span) -#: doc/reference/en/ActiveGroonga/Migration.html:473(span) -#: doc/reference/en/ActiveGroonga/Migration.html:509(span) -#: doc/reference/en/ActiveGroonga/Migration.html:538(span) -#: doc/reference/en/ActiveGroonga/Migration.html:589(span) -#: doc/reference/en/ActiveGroonga/Migration.html:634(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:167(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:275(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:344(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:421(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:418(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:461(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:504(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:544(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:440(span) -#: doc/reference/en/ActiveGroonga/Vector.html:483(span) -#: doc/reference/en/ActiveGroonga/Vector.html:526(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:309(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:352(span) +#: doc/reference/en/ActiveGroonga/Base.html:2104(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2170(span) +#: doc/reference/en/ActiveGroonga/Base.html:2205(span) +#: doc/reference/en/ActiveGroonga/Base.html:2234(span) +#: doc/reference/en/ActiveGroonga/Base.html:2265(span) +#: doc/reference/en/ActiveGroonga/Base.html:2296(span) +#: doc/reference/en/ActiveGroonga/Base.html:2347(span) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2414(span) +#: doc/reference/en/ActiveGroonga/Base.html:2452(span) +#: doc/reference/en/ActiveGroonga/Base.html:2505(span) +#: doc/reference/en/ActiveGroonga/Base.html:2536(span) +#: doc/reference/en/ActiveGroonga/Base.html:2569(span) +#: doc/reference/en/ActiveGroonga/Base.html:2602(span) +#: doc/reference/en/ActiveGroonga/Base.html:2631(span) +#: doc/reference/en/ActiveGroonga/Base.html:2660(span) +#: doc/reference/en/ActiveGroonga/Base.html:2689(span) +#: doc/reference/en/ActiveGroonga/Base.html:2718(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:336(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:387(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:416(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:510(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:561(span) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/Database.html:290(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:369(span) +#: doc/reference/en/ActiveGroonga/Database.html:402(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:311(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:352(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:419(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:301(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:334(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:420(span) +#: doc/reference/en/ActiveGroonga/Migration.html:461(span) +#: doc/reference/en/ActiveGroonga/Migration.html:497(span) +#: doc/reference/en/ActiveGroonga/Migration.html:526(span) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) +#: doc/reference/en/ActiveGroonga/Migration.html:622(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:271(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:340(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:410(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:451(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:492(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:532(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:428(span) +#: doc/reference/en/ActiveGroonga/Vector.html:469(span) +#: doc/reference/en/ActiveGroonga/Vector.html:510(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:297(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:338(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) msgid "def" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:248(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:159(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) #: doc/reference/en/ActiveGroonga/Persistence.html:385(span) @@ -3745,82 +3871,90 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:388(span) #: doc/reference/en/ActiveGroonga/Persistence.html:739(span) #: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:270(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:352(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:383(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:264(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:379(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1199(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1424(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:861(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) msgid "," msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:249(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:342(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:222(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:271(span) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:241(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:330(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:263(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) msgid "@table" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:249(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:250(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:222(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:241(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:155(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:157(span) #: doc/reference/en/ActiveGroonga/Persistence.html:384(span) @@ -3835,33 +3969,33 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:742(span) #: doc/reference/en/ActiveGroonga/Persistence.html:772(span) #: doc/reference/en/ActiveGroonga/Persistence.html:803(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:224(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:227(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:460(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:309(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:310(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:311(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:312(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:306(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:308(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) #: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) #: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:344(span) -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) #: doc/reference/en/ActiveGroonga/Schema.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:463(span) -#: doc/reference/en/ActiveGroonga/Schema.html:466(span) -#: doc/reference/en/ActiveGroonga/Schema.html:468(span) -#: doc/reference/en/ActiveGroonga/Schema.html:469(span) -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) #: doc/reference/en/ActiveGroonga/Validations.html:295(span) @@ -3869,145 +4003,172 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1115(span) -#: doc/reference/en/ActiveGroonga/Base.html:1116(span) -#: doc/reference/en/ActiveGroonga/Base.html:1117(span) -#: doc/reference/en/ActiveGroonga/Base.html:1118(span) -#: doc/reference/en/ActiveGroonga/Base.html:1119(span) -#: doc/reference/en/ActiveGroonga/Base.html:1120(span) -#: doc/reference/en/ActiveGroonga/Base.html:1121(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1341(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1403(span) -#: doc/reference/en/ActiveGroonga/Base.html:1404(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1548(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1618(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1666(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1166(span) +#: doc/reference/en/ActiveGroonga/Base.html:1167(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1170(span) +#: doc/reference/en/ActiveGroonga/Base.html:1171(span) +#: doc/reference/en/ActiveGroonga/Base.html:1172(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1215(span) +#: doc/reference/en/ActiveGroonga/Base.html:1218(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1304(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:1566(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1628(span) +#: doc/reference/en/ActiveGroonga/Base.html:1629(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1773(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) #: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1813(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1916(span) -#: doc/reference/en/ActiveGroonga/Base.html:1946(span) -#: doc/reference/en/ActiveGroonga/Base.html:2190(span) -#: doc/reference/en/ActiveGroonga/Base.html:2283(span) -#: doc/reference/en/ActiveGroonga/Base.html:2436(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:301(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:302(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:304(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) -#: doc/reference/en/ActiveGroonga/Database.html:256(span) -#: doc/reference/en/ActiveGroonga/Database.html:257(span) -#: doc/reference/en/ActiveGroonga/Database.html:297(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1843(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1891(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2038(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2141(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2415(span) +#: doc/reference/en/ActiveGroonga/Base.html:2508(span) +#: doc/reference/en/ActiveGroonga/Base.html:2661(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:297(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:464(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Database.html:252(span) +#: doc/reference/en/ActiveGroonga/Database.html:253(span) +#: doc/reference/en/ActiveGroonga/Database.html:293(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) -#: doc/reference/en/ActiveGroonga/Database.html:377(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:272(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:273(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:274(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) -#: doc/reference/en/ActiveGroonga/Migration.html:336(span) -#: doc/reference/en/ActiveGroonga/Migration.html:337(span) -#: doc/reference/en/ActiveGroonga/Migration.html:338(span) -#: doc/reference/en/ActiveGroonga/Migration.html:590(span) -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:276(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/Database.html:373(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:265(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:266(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) +#: doc/reference/en/ActiveGroonga/Migration.html:328(span) +#: doc/reference/en/ActiveGroonga/Migration.html:329(span) +#: doc/reference/en/ActiveGroonga/Migration.html:330(span) +#: doc/reference/en/ActiveGroonga/Migration.html:578(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:272(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:355(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:356(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:357(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:365(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:368(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:648(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:390(span) -#: doc/reference/en/ActiveGroonga/Vector.html:391(span) -#: doc/reference/en/ActiveGroonga/Vector.html:392(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:260(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:261(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:802(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:803(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:861(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1042(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1043(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:380(span) +#: doc/reference/en/ActiveGroonga/Vector.html:381(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:251(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) msgid "=" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:250(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:299(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:309(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) -#: doc/reference/en/ActiveGroonga/Base.html:1116(span) -#: doc/reference/en/ActiveGroonga/Base.html:2228(span) -#: doc/reference/en/ActiveGroonga/Base.html:2283(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:289(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) +#: doc/reference/en/ActiveGroonga/Base.html:1167(span) +#: doc/reference/en/ActiveGroonga/Base.html:2453(span) +#: doc/reference/en/ActiveGroonga/Base.html:2508(span) msgid "@key" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:251(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:223(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:231(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:308(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:225(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:304(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) #: doc/reference/en/ActiveGroonga/Validations.html:297(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Migration.html:382(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:262(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Migration.html:374(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) msgid "super" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:251(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) msgid "\"can't override existing record key: #{@table}: <#{@key}>\"" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:252(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:300(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:343(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:224(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:272(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:244(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:290(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:331(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:218(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:264(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:163(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:164(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:165(span) @@ -4025,45 +4186,45 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:743(span) #: doc/reference/en/ActiveGroonga/Persistence.html:774(span) #: doc/reference/en/ActiveGroonga/Persistence.html:805(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:228(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:276(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:233(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:271(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:463(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:465(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:513(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:556(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:599(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:642(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:643(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:694(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:745(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:774(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:810(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:811(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:862(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:913(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:964(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1015(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:210(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:250(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:314(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:354(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:385(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:419(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:420(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:465(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:494(span) -#: doc/reference/en/ActiveGroonga/Schema.html:271(span) -#: doc/reference/en/ActiveGroonga/Schema.html:307(span) -#: doc/reference/en/ActiveGroonga/Schema.html:348(span) -#: doc/reference/en/ActiveGroonga/Schema.html:350(span) -#: doc/reference/en/ActiveGroonga/Schema.html:411(span) -#: doc/reference/en/ActiveGroonga/Schema.html:470(span) -#: doc/reference/en/ActiveGroonga/Schema.html:479(span) -#: doc/reference/en/ActiveGroonga/Schema.html:480(span) -#: doc/reference/en/ActiveGroonga/Schema.html:487(span) -#: doc/reference/en/ActiveGroonga/Schema.html:488(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:222(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:268(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:227(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:265(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:499(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:540(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:581(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:624(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:625(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:676(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:727(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:756(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:792(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:793(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:844(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:895(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:946(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:997(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:206(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:244(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:310(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:350(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:381(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:415(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:490(span) +#: doc/reference/en/ActiveGroonga/Schema.html:267(span) +#: doc/reference/en/ActiveGroonga/Schema.html:303(span) +#: doc/reference/en/ActiveGroonga/Schema.html:344(span) +#: doc/reference/en/ActiveGroonga/Schema.html:346(span) +#: doc/reference/en/ActiveGroonga/Schema.html:407(span) +#: doc/reference/en/ActiveGroonga/Schema.html:466(span) +#: doc/reference/en/ActiveGroonga/Schema.html:475(span) +#: doc/reference/en/ActiveGroonga/Schema.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:483(span) +#: doc/reference/en/ActiveGroonga/Schema.html:484(span) #: doc/reference/en/ActiveGroonga/Validations.html:215(span) #: doc/reference/en/ActiveGroonga/Validations.html:244(span) #: doc/reference/en/ActiveGroonga/Validations.html:299(span) @@ -4073,207 +4234,209 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:221(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:260(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:289(span) -#: doc/reference/en/ActiveGroonga/Base.html:1127(span) -#: doc/reference/en/ActiveGroonga/Base.html:1128(span) -#: doc/reference/en/ActiveGroonga/Base.html:1164(span) -#: doc/reference/en/ActiveGroonga/Base.html:1204(span) -#: doc/reference/en/ActiveGroonga/Base.html:1205(span) -#: doc/reference/en/ActiveGroonga/Base.html:1234(span) -#: doc/reference/en/ActiveGroonga/Base.html:1263(span) -#: doc/reference/en/ActiveGroonga/Base.html:1303(span) -#: doc/reference/en/ActiveGroonga/Base.html:1309(span) -#: doc/reference/en/ActiveGroonga/Base.html:1310(span) -#: doc/reference/en/ActiveGroonga/Base.html:1343(span) -#: doc/reference/en/ActiveGroonga/Base.html:1372(span) -#: doc/reference/en/ActiveGroonga/Base.html:1405(span) -#: doc/reference/en/ActiveGroonga/Base.html:1438(span) -#: doc/reference/en/ActiveGroonga/Base.html:1440(span) -#: doc/reference/en/ActiveGroonga/Base.html:1475(span) -#: doc/reference/en/ActiveGroonga/Base.html:1476(span) -#: doc/reference/en/ActiveGroonga/Base.html:1477(span) -#: doc/reference/en/ActiveGroonga/Base.html:1512(span) -#: doc/reference/en/ActiveGroonga/Base.html:1513(span) -#: doc/reference/en/ActiveGroonga/Base.html:1514(span) -#: doc/reference/en/ActiveGroonga/Base.html:1553(span) -#: doc/reference/en/ActiveGroonga/Base.html:1621(span) -#: doc/reference/en/ActiveGroonga/Base.html:1623(span) -#: doc/reference/en/ActiveGroonga/Base.html:1624(span) -#: doc/reference/en/ActiveGroonga/Base.html:1669(span) -#: doc/reference/en/ActiveGroonga/Base.html:1671(span) -#: doc/reference/en/ActiveGroonga/Base.html:1675(span) -#: doc/reference/en/ActiveGroonga/Base.html:1704(span) +#: doc/reference/en/ActiveGroonga/Base.html:1178(span) +#: doc/reference/en/ActiveGroonga/Base.html:1179(span) +#: doc/reference/en/ActiveGroonga/Base.html:1389(span) +#: doc/reference/en/ActiveGroonga/Base.html:1429(span) +#: doc/reference/en/ActiveGroonga/Base.html:1430(span) +#: doc/reference/en/ActiveGroonga/Base.html:1459(span) +#: doc/reference/en/ActiveGroonga/Base.html:1488(span) +#: doc/reference/en/ActiveGroonga/Base.html:1528(span) +#: doc/reference/en/ActiveGroonga/Base.html:1534(span) +#: doc/reference/en/ActiveGroonga/Base.html:1535(span) +#: doc/reference/en/ActiveGroonga/Base.html:1568(span) +#: doc/reference/en/ActiveGroonga/Base.html:1597(span) +#: doc/reference/en/ActiveGroonga/Base.html:1630(span) +#: doc/reference/en/ActiveGroonga/Base.html:1663(span) +#: doc/reference/en/ActiveGroonga/Base.html:1665(span) +#: doc/reference/en/ActiveGroonga/Base.html:1700(span) +#: doc/reference/en/ActiveGroonga/Base.html:1701(span) +#: doc/reference/en/ActiveGroonga/Base.html:1702(span) +#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1738(span) #: doc/reference/en/ActiveGroonga/Base.html:1739(span) -#: doc/reference/en/ActiveGroonga/Base.html:1741(span) -#: doc/reference/en/ActiveGroonga/Base.html:1779(span) -#: doc/reference/en/ActiveGroonga/Base.html:1782(span) -#: doc/reference/en/ActiveGroonga/Base.html:1815(span) -#: doc/reference/en/ActiveGroonga/Base.html:1850(span) -#: doc/reference/en/ActiveGroonga/Base.html:1852(span) -#: doc/reference/en/ActiveGroonga/Base.html:1881(span) -#: doc/reference/en/ActiveGroonga/Base.html:1917(span) -#: doc/reference/en/ActiveGroonga/Base.html:1918(span) -#: doc/reference/en/ActiveGroonga/Base.html:1947(span) -#: doc/reference/en/ActiveGroonga/Base.html:1982(span) -#: doc/reference/en/ActiveGroonga/Base.html:2011(span) -#: doc/reference/en/ActiveGroonga/Base.html:2043(span) -#: doc/reference/en/ActiveGroonga/Base.html:2044(span) -#: doc/reference/en/ActiveGroonga/Base.html:2073(span) -#: doc/reference/en/ActiveGroonga/Base.html:2124(span) -#: doc/reference/en/ActiveGroonga/Base.html:2153(span) -#: doc/reference/en/ActiveGroonga/Base.html:2195(span) -#: doc/reference/en/ActiveGroonga/Base.html:2198(span) -#: doc/reference/en/ActiveGroonga/Base.html:2200(span) -#: doc/reference/en/ActiveGroonga/Base.html:2229(span) -#: doc/reference/en/ActiveGroonga/Base.html:2284(span) -#: doc/reference/en/ActiveGroonga/Base.html:2313(span) +#: doc/reference/en/ActiveGroonga/Base.html:1778(span) +#: doc/reference/en/ActiveGroonga/Base.html:1846(span) +#: doc/reference/en/ActiveGroonga/Base.html:1848(span) +#: doc/reference/en/ActiveGroonga/Base.html:1849(span) +#: doc/reference/en/ActiveGroonga/Base.html:1894(span) +#: doc/reference/en/ActiveGroonga/Base.html:1896(span) +#: doc/reference/en/ActiveGroonga/Base.html:1900(span) +#: doc/reference/en/ActiveGroonga/Base.html:1929(span) +#: doc/reference/en/ActiveGroonga/Base.html:1964(span) +#: doc/reference/en/ActiveGroonga/Base.html:1966(span) +#: doc/reference/en/ActiveGroonga/Base.html:2004(span) +#: doc/reference/en/ActiveGroonga/Base.html:2007(span) +#: doc/reference/en/ActiveGroonga/Base.html:2040(span) +#: doc/reference/en/ActiveGroonga/Base.html:2075(span) +#: doc/reference/en/ActiveGroonga/Base.html:2077(span) +#: doc/reference/en/ActiveGroonga/Base.html:2106(span) +#: doc/reference/en/ActiveGroonga/Base.html:2142(span) +#: doc/reference/en/ActiveGroonga/Base.html:2143(span) +#: doc/reference/en/ActiveGroonga/Base.html:2172(span) +#: doc/reference/en/ActiveGroonga/Base.html:2207(span) +#: doc/reference/en/ActiveGroonga/Base.html:2236(span) +#: doc/reference/en/ActiveGroonga/Base.html:2268(span) +#: doc/reference/en/ActiveGroonga/Base.html:2269(span) +#: doc/reference/en/ActiveGroonga/Base.html:2298(span) #: doc/reference/en/ActiveGroonga/Base.html:2349(span) -#: doc/reference/en/ActiveGroonga/Base.html:2350(span) -#: doc/reference/en/ActiveGroonga/Base.html:2379(span) -#: doc/reference/en/ActiveGroonga/Base.html:2408(span) -#: doc/reference/en/ActiveGroonga/Base.html:2437(span) -#: doc/reference/en/ActiveGroonga/Base.html:2466(span) -#: doc/reference/en/ActiveGroonga/Base.html:2495(span) -#: doc/reference/en/ActiveGroonga/Base.html:2524(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:305(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:306(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:342(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:393(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:422(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:484(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:486(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:487(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:516(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:567(span) -#: doc/reference/en/ActiveGroonga/Database.html:258(span) -#: doc/reference/en/ActiveGroonga/Database.html:298(span) -#: doc/reference/en/ActiveGroonga/Database.html:342(span) -#: doc/reference/en/ActiveGroonga/Database.html:343(span) -#: doc/reference/en/ActiveGroonga/Database.html:378(span) -#: doc/reference/en/ActiveGroonga/Database.html:409(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:275(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:323(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:366(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:404(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:433(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:271(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:307(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:343(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:344(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:375(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:406(span) -#: doc/reference/en/ActiveGroonga/Migration.html:339(span) -#: doc/reference/en/ActiveGroonga/Migration.html:383(span) -#: doc/reference/en/ActiveGroonga/Migration.html:384(span) -#: doc/reference/en/ActiveGroonga/Migration.html:432(span) -#: doc/reference/en/ActiveGroonga/Migration.html:475(span) -#: doc/reference/en/ActiveGroonga/Migration.html:511(span) -#: doc/reference/en/ActiveGroonga/Migration.html:540(span) -#: doc/reference/en/ActiveGroonga/Migration.html:596(span) -#: doc/reference/en/ActiveGroonga/Migration.html:599(span) -#: doc/reference/en/ActiveGroonga/Migration.html:605(span) -#: doc/reference/en/ActiveGroonga/Migration.html:607(span) -#: doc/reference/en/ActiveGroonga/Migration.html:636(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:169(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:277(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:316(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:317(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:346(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:390(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:393(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:424(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:453(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:369(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:372(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:420(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:463(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:506(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:549(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:550(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:579(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:649(span) -#: doc/reference/en/ActiveGroonga/Vector.html:394(span) -#: doc/reference/en/ActiveGroonga/Vector.html:442(span) -#: doc/reference/en/ActiveGroonga/Vector.html:485(span) -#: doc/reference/en/ActiveGroonga/Vector.html:528(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:263(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:311(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:354(span) +#: doc/reference/en/ActiveGroonga/Base.html:2378(span) +#: doc/reference/en/ActiveGroonga/Base.html:2420(span) +#: doc/reference/en/ActiveGroonga/Base.html:2423(span) +#: doc/reference/en/ActiveGroonga/Base.html:2425(span) +#: doc/reference/en/ActiveGroonga/Base.html:2454(span) +#: doc/reference/en/ActiveGroonga/Base.html:2509(span) +#: doc/reference/en/ActiveGroonga/Base.html:2538(span) +#: doc/reference/en/ActiveGroonga/Base.html:2574(span) +#: doc/reference/en/ActiveGroonga/Base.html:2575(span) +#: doc/reference/en/ActiveGroonga/Base.html:2604(span) +#: doc/reference/en/ActiveGroonga/Base.html:2633(span) +#: doc/reference/en/ActiveGroonga/Base.html:2662(span) +#: doc/reference/en/ActiveGroonga/Base.html:2691(span) +#: doc/reference/en/ActiveGroonga/Base.html:2720(span) +#: doc/reference/en/ActiveGroonga/Base.html:2749(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:301(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:302(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:338(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:389(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:418(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:470(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:480(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:482(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:512(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:563(span) +#: doc/reference/en/ActiveGroonga/Database.html:254(span) +#: doc/reference/en/ActiveGroonga/Database.html:294(span) +#: doc/reference/en/ActiveGroonga/Database.html:338(span) +#: doc/reference/en/ActiveGroonga/Database.html:339(span) +#: doc/reference/en/ActiveGroonga/Database.html:374(span) +#: doc/reference/en/ActiveGroonga/Database.html:405(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:267(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:313(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:354(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:392(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:421(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:267(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:303(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:371(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:402(span) +#: doc/reference/en/ActiveGroonga/Migration.html:331(span) +#: doc/reference/en/ActiveGroonga/Migration.html:375(span) +#: doc/reference/en/ActiveGroonga/Migration.html:376(span) +#: doc/reference/en/ActiveGroonga/Migration.html:422(span) +#: doc/reference/en/ActiveGroonga/Migration.html:463(span) +#: doc/reference/en/ActiveGroonga/Migration.html:499(span) +#: doc/reference/en/ActiveGroonga/Migration.html:528(span) +#: doc/reference/en/ActiveGroonga/Migration.html:584(span) +#: doc/reference/en/ActiveGroonga/Migration.html:587(span) +#: doc/reference/en/ActiveGroonga/Migration.html:593(span) +#: doc/reference/en/ActiveGroonga/Migration.html:595(span) +#: doc/reference/en/ActiveGroonga/Migration.html:624(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:165(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:273(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:312(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:342(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:420(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:449(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:361(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:412(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:453(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:494(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:537(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:538(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:567(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:804(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:812(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1044(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1048(span) +#: doc/reference/en/ActiveGroonga/Vector.html:384(span) +#: doc/reference/en/ActiveGroonga/Vector.html:430(span) +#: doc/reference/en/ActiveGroonga/Vector.html:471(span) +#: doc/reference/en/ActiveGroonga/Vector.html:512(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:253(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:299(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:340(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:156(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:162(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:163(span) msgid "end" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:262(h2) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:234(h2) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:238(h2) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:475(h2) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:285(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:394(h2) -#: doc/reference/en/ActiveGroonga/ResultSet.html:382(h2) -#: doc/reference/en/ActiveGroonga/Vector.html:404(h2) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:273(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:254(h2) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:228(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:232(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:463(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:277(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:386(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:376(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:394(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:263(h2) msgid "Instance Attribute Details" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:270(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:313(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:242(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:246(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:293(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:336(span) -#: doc/reference/en/ActiveGroonga/Migration.html:402(span) -#: doc/reference/en/ActiveGroonga/Migration.html:445(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:390(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:433(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:476(span) -#: doc/reference/en/ActiveGroonga/Vector.html:412(span) -#: doc/reference/en/ActiveGroonga/Vector.html:455(span) -#: doc/reference/en/ActiveGroonga/Vector.html:498(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:281(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:324(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:262(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:303(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:236(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:240(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:285(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:326(span) +#: doc/reference/en/ActiveGroonga/Migration.html:394(span) +#: doc/reference/en/ActiveGroonga/Migration.html:435(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:425(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:466(span) +#: doc/reference/en/ActiveGroonga/Vector.html:402(span) +#: doc/reference/en/ActiveGroonga/Vector.html:443(span) +#: doc/reference/en/ActiveGroonga/Vector.html:484(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:271(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:312(span) msgid "(readonly)" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:268(p) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:311(p) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:240(p) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:244(p) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:291(p) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:334(p) -#: doc/reference/en/ActiveGroonga/Migration.html:400(p) -#: doc/reference/en/ActiveGroonga/Migration.html:443(p) -#: doc/reference/en/ActiveGroonga/ResultSet.html:388(p) -#: doc/reference/en/ActiveGroonga/ResultSet.html:431(p) -#: doc/reference/en/ActiveGroonga/ResultSet.html:474(p) -#: doc/reference/en/ActiveGroonga/Vector.html:410(p) -#: doc/reference/en/ActiveGroonga/Vector.html:453(p) -#: doc/reference/en/ActiveGroonga/Vector.html:496(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:279(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:322(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:260(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:301(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:234(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:238(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:283(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:324(p) +#: doc/reference/en/ActiveGroonga/Migration.html:392(p) +#: doc/reference/en/ActiveGroonga/Migration.html:433(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:382(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:423(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:464(p) +#: doc/reference/en/ActiveGroonga/Vector.html:400(p) +#: doc/reference/en/ActiveGroonga/Vector.html:441(p) +#: doc/reference/en/ActiveGroonga/Vector.html:482(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:269(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:310(p) msgid "- () " msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:277(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:268(p) msgid "Returns the value of attribute key" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:288(pre) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:331(pre) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:278(pre) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:319(pre) msgid "33 34 35" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:296(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:339(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:286(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:327(span) msgid "# File 'lib/active_groonga/error.rb', line 33" msgstr "" -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:320(p) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:249(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:309(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:242(p) msgid "Returns the value of attribute table" msgstr "" @@ -4289,42 +4452,42 @@ msgstr "" msgid "Exception: ActiveGroonga::NoKeyTableError" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:155(a) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:153(a) msgid "- (NoKeyTableError) (table)" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:171(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:168(p) msgid "A new instance of NoKeyTableError." msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:190(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:186(p) msgid "" "- () " "(table)" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:199(p) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:194(p) msgid "A new instance of NoKeyTableError" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:210(pre) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:204(pre) msgid "26 27 28 29" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:219(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:213(span) msgid "# File 'lib/active_groonga/error.rb', line 26" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:223(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) msgid "\"table doesn't have key: #{@table}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:260(pre) -#: doc/reference/en/ActiveGroonga/Migration.html:528(pre) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:252(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:516(pre) msgid "25 26 27" msgstr "" -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:268(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:260(span) msgid "# File 'lib/active_groonga/error.rb', line 25" msgstr "" @@ -4428,22 +4591,22 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:120(h2) #: doc/reference/en/ActiveGroonga/Persistence.html:355(h2) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:244(h2) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:610(h2) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:325(h2) -#: doc/reference/en/ActiveGroonga/Schema.html:360(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:238(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:592(h2) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:321(h2) +#: doc/reference/en/ActiveGroonga/Schema.html:356(h2) #: doc/reference/en/ActiveGroonga/Validations.html:190(h2) #: doc/reference/en/ActiveGroonga/TestFixtures.html:176(h2) -#: doc/reference/en/ActiveGroonga/Base.html:1957(h2) -#: doc/reference/en/ActiveGroonga/Migrator.html:317(h2) -#: doc/reference/en/ActiveGroonga/Database.html:269(h2) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:377(h2) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:282(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:550(h2) -#: doc/reference/en/ActiveGroonga/Callbacks.html:133(h2) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:288(h2) -#: doc/reference/en/ActiveGroonga/ResultSet.html:517(h2) -#: doc/reference/en/ActiveGroonga/Vector.html:539(h2) +#: doc/reference/en/ActiveGroonga/Base.html:2182(h2) +#: doc/reference/en/ActiveGroonga/Migrator.html:313(h2) +#: doc/reference/en/ActiveGroonga/Database.html:265(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:365(h2) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:278(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:538(h2) +#: doc/reference/en/ActiveGroonga/Callbacks.html:131(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:284(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:505(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:523(h2) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:120(h2) msgid "Instance Method Details" msgstr "" @@ -4455,53 +4618,53 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:515(p) #: doc/reference/en/ActiveGroonga/Persistence.html:566(p) #: doc/reference/en/ActiveGroonga/Persistence.html:617(p) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:248(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:481(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:524(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:567(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:614(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:651(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:702(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:753(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:782(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:819(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:870(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:921(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:972(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:329(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:362(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:393(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:428(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:473(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:242(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:469(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:510(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:551(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:596(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:633(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:684(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:735(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:764(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:801(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:852(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:903(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:954(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:325(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:358(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:389(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:424(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:469(p) #: doc/reference/en/ActiveGroonga/TestFixtures.html:180(p) #: doc/reference/en/ActiveGroonga/TestFixtures.html:229(p) #: doc/reference/en/ActiveGroonga/TestFixtures.html:268(p) -#: doc/reference/en/ActiveGroonga/Base.html:1990(p) -#: doc/reference/en/ActiveGroonga/Base.html:2052(p) -#: doc/reference/en/ActiveGroonga/Base.html:2132(p) -#: doc/reference/en/ActiveGroonga/Base.html:2161(p) -#: doc/reference/en/ActiveGroonga/Base.html:2208(p) -#: doc/reference/en/ActiveGroonga/Base.html:2321(p) -#: doc/reference/en/ActiveGroonga/Base.html:2358(p) -#: doc/reference/en/ActiveGroonga/Base.html:2387(p) -#: doc/reference/en/ActiveGroonga/Base.html:2445(p) -#: doc/reference/en/ActiveGroonga/Base.html:2474(p) -#: doc/reference/en/ActiveGroonga/Migrator.html:321(p) -#: doc/reference/en/ActiveGroonga/Migrator.html:350(p) -#: doc/reference/en/ActiveGroonga/Migrator.html:401(p) -#: doc/reference/en/ActiveGroonga/Migrator.html:495(p) -#: doc/reference/en/ActiveGroonga/Migrator.html:524(p) -#: doc/reference/en/ActiveGroonga/Database.html:273(p) -#: doc/reference/en/ActiveGroonga/Database.html:306(p) -#: doc/reference/en/ActiveGroonga/Database.html:351(p) -#: doc/reference/en/ActiveGroonga/Database.html:386(p) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:412(p) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:286(p) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:315(p) -#: doc/reference/en/ActiveGroonga/Migration.html:615(p) -#: doc/reference/en/ActiveGroonga/Callbacks.html:137(p) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:325(p) -#: doc/reference/en/ActiveGroonga/ResultSet.html:521(p) +#: doc/reference/en/ActiveGroonga/Base.html:2215(p) +#: doc/reference/en/ActiveGroonga/Base.html:2277(p) +#: doc/reference/en/ActiveGroonga/Base.html:2357(p) +#: doc/reference/en/ActiveGroonga/Base.html:2386(p) +#: doc/reference/en/ActiveGroonga/Base.html:2433(p) +#: doc/reference/en/ActiveGroonga/Base.html:2546(p) +#: doc/reference/en/ActiveGroonga/Base.html:2583(p) +#: doc/reference/en/ActiveGroonga/Base.html:2612(p) +#: doc/reference/en/ActiveGroonga/Base.html:2670(p) +#: doc/reference/en/ActiveGroonga/Base.html:2699(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:317(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:346(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:397(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:491(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:520(p) +#: doc/reference/en/ActiveGroonga/Database.html:269(p) +#: doc/reference/en/ActiveGroonga/Database.html:302(p) +#: doc/reference/en/ActiveGroonga/Database.html:347(p) +#: doc/reference/en/ActiveGroonga/Database.html:382(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:400(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:282(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:311(p) +#: doc/reference/en/ActiveGroonga/Migration.html:603(p) +#: doc/reference/en/ActiveGroonga/Callbacks.html:135(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:321(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:509(p) msgid "- () " msgstr "" @@ -4542,38 +4705,38 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:740(span) #: doc/reference/en/ActiveGroonga/Persistence.html:772(span) #: doc/reference/en/ActiveGroonga/Persistence.html:803(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:773(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) -#: doc/reference/en/ActiveGroonga/Schema.html:344(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:755(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Schema.html:341(span) #: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:409(span) +#: doc/reference/en/ActiveGroonga/Schema.html:405(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) #: doc/reference/en/ActiveGroonga/Schema.html:463(span) #: doc/reference/en/ActiveGroonga/Schema.html:464(span) #: doc/reference/en/ActiveGroonga/Schema.html:467(span) -#: doc/reference/en/ActiveGroonga/Schema.html:468(span) -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) -#: doc/reference/en/ActiveGroonga/Schema.html:484(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) +#: doc/reference/en/ActiveGroonga/Schema.html:480(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) #: doc/reference/en/ActiveGroonga/Validations.html:298(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) @@ -4582,120 +4745,135 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1114(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1262(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1215(span) +#: doc/reference/en/ActiveGroonga/Base.html:1218(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) #: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1307(span) -#: doc/reference/en/ActiveGroonga/Base.html:1341(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1437(span) -#: doc/reference/en/ActiveGroonga/Base.html:1472(span) -#: doc/reference/en/ActiveGroonga/Base.html:1509(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) -#: doc/reference/en/ActiveGroonga/Base.html:1552(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1614(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1304(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1487(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1532(span) +#: doc/reference/en/ActiveGroonga/Base.html:1566(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1662(span) +#: doc/reference/en/ActiveGroonga/Base.html:1697(span) +#: doc/reference/en/ActiveGroonga/Base.html:1734(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) #: doc/reference/en/ActiveGroonga/Base.html:1776(span) #: doc/reference/en/ActiveGroonga/Base.html:1777(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) -#: doc/reference/en/ActiveGroonga/Base.html:1813(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:1913(span) -#: doc/reference/en/ActiveGroonga/Base.html:1914(span) -#: doc/reference/en/ActiveGroonga/Base.html:1916(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) -#: doc/reference/en/ActiveGroonga/Base.html:2191(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Base.html:2345(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:341(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:421(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1839(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1889(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2002(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) +#: doc/reference/en/ActiveGroonga/Base.html:2038(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Base.html:2138(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) +#: doc/reference/en/ActiveGroonga/Base.html:2141(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2297(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) +#: doc/reference/en/ActiveGroonga/Base.html:2416(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Base.html:2570(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:337(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) #: doc/reference/en/ActiveGroonga/Migrator.html:469(span) #: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) #: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) #: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) #: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:515(span) -#: doc/reference/en/ActiveGroonga/Database.html:295(span) -#: doc/reference/en/ActiveGroonga/Database.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:511(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:331(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) #: doc/reference/en/ActiveGroonga/Database.html:335(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) -#: doc/reference/en/ActiveGroonga/Database.html:374(span) -#: doc/reference/en/ActiveGroonga/Database.html:375(span) -#: doc/reference/en/ActiveGroonga/Database.html:376(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:432(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) +#: doc/reference/en/ActiveGroonga/Database.html:371(span) +#: doc/reference/en/ActiveGroonga/Database.html:372(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:420(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) -#: doc/reference/en/ActiveGroonga/Migration.html:635(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) +#: doc/reference/en/ActiveGroonga/Migration.html:623(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:368(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:535(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:160(span) @@ -4707,40 +4885,40 @@ msgid "config" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:155(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) msgid "first" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:156(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:214(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Base.html:1889(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) msgid "unless" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:156(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:158(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) msgid "File" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:156(span) #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:158(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) +#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Database.html:331(span) #: doc/reference/en/ActiveGroonga/Database.html:335(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Database.html:374(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) msgid "exist?" msgstr "" @@ -4758,58 +4936,60 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:420(span) #: doc/reference/en/ActiveGroonga/Persistence.html:453(span) #: doc/reference/en/ActiveGroonga/Persistence.html:644(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:638(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:806(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:417(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) -#: doc/reference/en/ActiveGroonga/Schema.html:410(span) -#: doc/reference/en/ActiveGroonga/Schema.html:464(span) -#: doc/reference/en/ActiveGroonga/Schema.html:467(span) -#: doc/reference/en/ActiveGroonga/Schema.html:475(span) -#: doc/reference/en/ActiveGroonga/Schema.html:483(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:620(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:788(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:413(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Schema.html:406(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:479(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1547(span) -#: doc/reference/en/ActiveGroonga/Base.html:1552(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1614(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1772(span) #: doc/reference/en/ActiveGroonga/Base.html:1777(span) -#: doc/reference/en/ActiveGroonga/Base.html:1913(span) -#: doc/reference/en/ActiveGroonga/Base.html:2191(span) -#: doc/reference/en/ActiveGroonga/Base.html:2345(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:470(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:480(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) -#: doc/reference/en/ActiveGroonga/Database.html:295(span) -#: doc/reference/en/ActiveGroonga/Database.html:334(span) -#: doc/reference/en/ActiveGroonga/Database.html:335(span) -#: doc/reference/en/ActiveGroonga/Database.html:374(span) -#: doc/reference/en/ActiveGroonga/Database.html:375(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:314(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1839(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Base.html:2002(span) +#: doc/reference/en/ActiveGroonga/Base.html:2138(span) +#: doc/reference/en/ActiveGroonga/Base.html:2416(span) +#: doc/reference/en/ActiveGroonga/Base.html:2570(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:331(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) +#: doc/reference/en/ActiveGroonga/Database.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:310(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:535(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) msgid "if" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:159(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) msgid "FileUtils" msgstr "" @@ -4819,28 +4999,28 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:160(span) #: doc/reference/en/ActiveGroonga/Persistence.html:646(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:640(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:808(span) -#: doc/reference/en/ActiveGroonga/Schema.html:346(span) -#: doc/reference/en/ActiveGroonga/Schema.html:477(span) -#: doc/reference/en/ActiveGroonga/Schema.html:485(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:622(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:790(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:473(span) +#: doc/reference/en/ActiveGroonga/Schema.html:481(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:217(span) -#: doc/reference/en/ActiveGroonga/Base.html:1124(span) -#: doc/reference/en/ActiveGroonga/Base.html:1304(span) -#: doc/reference/en/ActiveGroonga/Base.html:1616(span) -#: doc/reference/en/ActiveGroonga/Base.html:1915(span) -#: doc/reference/en/ActiveGroonga/Base.html:2193(span) -#: doc/reference/en/ActiveGroonga/Base.html:2347(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:482(span) -#: doc/reference/en/ActiveGroonga/Database.html:338(span) -#: doc/reference/en/ActiveGroonga/Migration.html:381(span) +#: doc/reference/en/ActiveGroonga/Base.html:1175(span) +#: doc/reference/en/ActiveGroonga/Base.html:1529(span) +#: doc/reference/en/ActiveGroonga/Base.html:1841(span) +#: doc/reference/en/ActiveGroonga/Base.html:2140(span) +#: doc/reference/en/ActiveGroonga/Base.html:2418(span) +#: doc/reference/en/ActiveGroonga/Base.html:2572(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Migration.html:373(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:157(span) msgid "else" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Database.html:336(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) msgid "open" msgstr "" @@ -4849,45 +5029,45 @@ msgid "\"w\"" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1472(span) -#: doc/reference/en/ActiveGroonga/Base.html:1473(span) -#: doc/reference/en/ActiveGroonga/Base.html:1509(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1697(span) +#: doc/reference/en/ActiveGroonga/Base.html:1698(span) +#: doc/reference/en/ActiveGroonga/Base.html:1734(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) msgid "do" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) msgid "|" msgstr "" @@ -4924,24 +5104,20 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:166(span) #: doc/reference/en/ActiveGroonga/Persistence.html:384(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:345(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:212(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:421(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) msgid "new" msgstr "" @@ -4955,9 +5131,9 @@ msgid "read" msgstr "" #: doc/reference/en/ActiveGroonga/Railties/Configurable.html:166(span) -#: doc/reference/en/ActiveGroonga/Migration.html:590(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) -#: doc/reference/en/ActiveGroonga/Migration.html:606(span) +#: doc/reference/en/ActiveGroonga/Migration.html:578(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) +#: doc/reference/en/ActiveGroonga/Migration.html:594(span) msgid "result" msgstr "" @@ -5000,13 +5176,13 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:419(span) #: doc/reference/en/ActiveGroonga/Persistence.html:420(span) #: doc/reference/en/ActiveGroonga/Persistence.html:453(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:341(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:111(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:294(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:290(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) msgid "delete" msgstr "" @@ -5014,8 +5190,8 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:433(strong) #: doc/reference/en/ActiveGroonga/Persistence.html:452(span) #: doc/reference/en/ActiveGroonga/Callbacks.html:106(strong) -#: doc/reference/en/ActiveGroonga/Callbacks.html:139(strong) -#: doc/reference/en/ActiveGroonga/Callbacks.html:167(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:137(strong) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) msgid "destroy" msgstr "" @@ -5030,14 +5206,14 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:163(a) #: doc/reference/en/ActiveGroonga/Persistence.html:184(a) #: doc/reference/en/ActiveGroonga/Persistence.html:205(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:226(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:272(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:335(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:356(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:377(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:398(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:218(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:262(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:325(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:346(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:367(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:388(a) #: doc/reference/en/ActiveGroonga/Migrator.html:132(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:241(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:239(a) msgid "- (Boolean) " msgstr "" @@ -5048,7 +5224,7 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:608(span) #: doc/reference/en/ActiveGroonga/Persistence.html:644(span) #: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) msgid "new_record?" msgstr "" @@ -5057,7 +5233,7 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:453(span) #: doc/reference/en/ActiveGroonga/Persistence.html:568(strong) #: doc/reference/en/ActiveGroonga/Persistence.html:607(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) msgid "persisted?" msgstr "" @@ -5075,7 +5251,7 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Validations.html:122(strong) #: doc/reference/en/ActiveGroonga/Validations.html:196(strong) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) -#: doc/reference/en/ActiveGroonga/Base.html:1307(span) +#: doc/reference/en/ActiveGroonga/Base.html:1532(span) msgid "save" msgstr "" @@ -5104,7 +5280,7 @@ msgid "update_attribute" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:289(a) -#: doc/reference/en/ActiveGroonga/Base.html:1009(a) +#: doc/reference/en/ActiveGroonga/Base.html:1062(a) msgid "- (Object) (name, value)" msgstr "" @@ -5116,7 +5292,7 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:310(a) #: doc/reference/en/ActiveGroonga/Persistence.html:331(a) -#: doc/reference/en/ActiveGroonga/Base.html:690(a) +#: doc/reference/en/ActiveGroonga/Base.html:745(a) msgid "- (Object) (attributes)" msgstr "" @@ -5140,15 +5316,15 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:383(span) #: doc/reference/en/ActiveGroonga/Persistence.html:384(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:356(span) #: doc/reference/en/ActiveGroonga/Vector.html:108(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:391(span) -#: doc/reference/en/ActiveGroonga/Vector.html:412(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:440(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:381(span) +#: doc/reference/en/ActiveGroonga/Vector.html:402(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:428(span) msgid "klass" msgstr "" @@ -5165,9 +5341,9 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:386(span) #: doc/reference/en/ActiveGroonga/Persistence.html:387(span) #: doc/reference/en/ActiveGroonga/Persistence.html:388(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) msgid "instance_variable_set" msgstr "" @@ -5176,11 +5352,11 @@ msgid "\"@attributes\"" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:385(span) -#: doc/reference/en/ActiveGroonga/Base.html:1120(span) -#: doc/reference/en/ActiveGroonga/Base.html:2010(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Base.html:2312(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) +#: doc/reference/en/ActiveGroonga/Base.html:1171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2235(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Base.html:2537(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) msgid "@attributes" msgstr "" @@ -5190,12 +5366,12 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:386(span) #: doc/reference/en/ActiveGroonga/Persistence.html:650(span) -#: doc/reference/en/ActiveGroonga/Base.html:1121(span) +#: doc/reference/en/ActiveGroonga/Base.html:1172(span) msgid "@attributes_cache" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:387(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) msgid "\"@new_record\"" msgstr "" @@ -5214,34 +5390,34 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:420(span) #: doc/reference/en/ActiveGroonga/Persistence.html:453(span) #: doc/reference/en/ActiveGroonga/Persistence.html:647(span) -#: doc/reference/en/ActiveGroonga/Base.html:883(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1612(span) -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1618(span) -#: doc/reference/en/ActiveGroonga/Base.html:1622(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Base.html:1666(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:2323(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2344(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) +#: doc/reference/en/ActiveGroonga/Base.html:936(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1837(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1843(span) +#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Base.html:1891(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:2548(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2569(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) msgid "record_id" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:421(span) #: doc/reference/en/ActiveGroonga/Persistence.html:454(span) #: doc/reference/en/ActiveGroonga/Persistence.html:506(span) -#: doc/reference/en/ActiveGroonga/Base.html:1119(span) +#: doc/reference/en/ActiveGroonga/Base.html:1170(span) msgid "@destroyed" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:421(span) #: doc/reference/en/ActiveGroonga/Persistence.html:454(span) -#: doc/reference/en/ActiveGroonga/Schema.html:469(span) -#: doc/reference/en/ActiveGroonga/Base.html:1118(span) +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) msgid "true" msgstr "" @@ -5251,8 +5427,8 @@ msgid "freeze" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:440(pre) -#: doc/reference/en/ActiveGroonga/Schema.html:395(pre) -#: doc/reference/en/ActiveGroonga/Database.html:282(pre) +#: doc/reference/en/ActiveGroonga/Schema.html:391(pre) +#: doc/reference/en/ActiveGroonga/Database.html:278(pre) msgid "44 45 46 47 48" msgstr "" @@ -5266,47 +5442,53 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:535(tt) #: doc/reference/en/ActiveGroonga/Persistence.html:568(tt) #: doc/reference/en/ActiveGroonga/Persistence.html:586(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:635(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:653(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:671(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:686(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:704(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:722(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:803(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:821(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:839(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:854(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:872(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:890(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:905(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:923(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:941(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:956(tt) #: doc/reference/en/ActiveGroonga/Generators/Column.html:974(tt) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:992(tt) #: doc/reference/en/ActiveGroonga/Validations.html:254(tt) #: doc/reference/en/ActiveGroonga/Validations.html:272(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1563(tt) -#: doc/reference/en/ActiveGroonga/Base.html:1581(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2083(tt) -#: doc/reference/en/ActiveGroonga/Base.html:2101(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:352(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:370(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:526(tt) -#: doc/reference/en/ActiveGroonga/Migrator.html:544(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1788(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1806(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2308(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2326(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:348(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:366(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:522(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:540(tt) msgid "Boolean" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:478(h3) #: doc/reference/en/ActiveGroonga/Persistence.html:529(h3) #: doc/reference/en/ActiveGroonga/Persistence.html:580(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:665(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:716(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:833(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:884(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:935(h3) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:986(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:647(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:698(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:815(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:866(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:917(h3) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:968(h3) #: doc/reference/en/ActiveGroonga/Validations.html:266(h3) -#: doc/reference/en/ActiveGroonga/Base.html:1575(h3) -#: doc/reference/en/ActiveGroonga/Base.html:2095(h3) -#: doc/reference/en/ActiveGroonga/Migrator.html:364(h3) -#: doc/reference/en/ActiveGroonga/Migrator.html:538(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1223(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1309(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1800(h3) +#: doc/reference/en/ActiveGroonga/Base.html:2320(h3) +#: doc/reference/en/ActiveGroonga/Migrator.html:360(h3) +#: doc/reference/en/ActiveGroonga/Migrator.html:534(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:675(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:754(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:919(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:998(h3) msgid "Returns:" -msgstr "" +msgstr "???:" #: doc/reference/en/ActiveGroonga/Persistence.html:495(pre) msgid "22 23 24" @@ -5317,9 +5499,9 @@ msgid "# File 'lib/active_groonga/persistence.rb', line 22" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:546(pre) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:264(pre) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:299(pre) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:342(pre) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:256(pre) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:287(pre) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:328(pre) msgid "18 19 20" msgstr "" @@ -5328,7 +5510,7 @@ msgid "# File 'lib/active_groonga/persistence.rb', line 18" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:557(span) -#: doc/reference/en/ActiveGroonga/Base.html:1118(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) msgid "@new_record" msgstr "" @@ -5341,14 +5523,16 @@ msgid "# File 'lib/active_groonga/persistence.rb', line 26" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:608(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) msgid "!" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:608(span) #: doc/reference/en/ActiveGroonga/Validations.html:298(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) msgid "and" msgstr "" @@ -5364,149 +5548,179 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:647(span) #: doc/reference/en/ActiveGroonga/Persistence.html:649(span) #: doc/reference/en/ActiveGroonga/RecordInvalid.html:112(strong) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:223(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:224(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:246(strong) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:274(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1674(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1777(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:1849(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:240(strong) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:266(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:1899(span) +#: doc/reference/en/ActiveGroonga/Base.html:1999(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2002(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) msgid "record" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:645(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:309(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:310(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:312(span) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:306(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:308(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) #: doc/reference/en/ActiveGroonga/Validations.html:295(span) #: doc/reference/en/ActiveGroonga/Base.html:117(span) -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1115(span) -#: doc/reference/en/ActiveGroonga/Base.html:1116(span) -#: doc/reference/en/ActiveGroonga/Base.html:1117(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1404(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1668(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Database.html:257(span) -#: doc/reference/en/ActiveGroonga/Database.html:297(span) -#: doc/reference/en/ActiveGroonga/Database.html:377(span) -#: doc/reference/en/ActiveGroonga/Migration.html:590(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:276(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1166(span) +#: doc/reference/en/ActiveGroonga/Base.html:1167(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:1218(span) +#: doc/reference/en/ActiveGroonga/Base.html:1304(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1629(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) +#: doc/reference/en/ActiveGroonga/Base.html:1893(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Database.html:253(span) +#: doc/reference/en/ActiveGroonga/Database.html:293(span) +#: doc/reference/en/ActiveGroonga/Database.html:373(span) +#: doc/reference/en/ActiveGroonga/Migration.html:578(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:272(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:803(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1043(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) msgid "nil" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:647(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) -#: doc/reference/en/ActiveGroonga/Base.html:1342(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Base.html:2190(span) -#: doc/reference/en/ActiveGroonga/Base.html:2312(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) +#: doc/reference/en/ActiveGroonga/Base.html:1567(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2415(span) +#: doc/reference/en/ActiveGroonga/Base.html:2537(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) -#: doc/reference/en/ActiveGroonga/Migration.html:103(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Migration.html:103(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) msgid "[" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:647(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) -#: doc/reference/en/ActiveGroonga/Base.html:1342(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1672(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Base.html:2190(span) -#: doc/reference/en/ActiveGroonga/Base.html:2312(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) +#: doc/reference/en/ActiveGroonga/Base.html:1567(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1897(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2415(span) +#: doc/reference/en/ActiveGroonga/Base.html:2537(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) #: doc/reference/en/ActiveGroonga/Migration.html:103(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) msgid "]" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:649(span) -#: doc/reference/en/ActiveGroonga/Base.html:1123(span) -#: doc/reference/en/ActiveGroonga/Base.html:1125(span) +#: doc/reference/en/ActiveGroonga/Base.html:1174(span) +#: doc/reference/en/ActiveGroonga/Base.html:1176(span) msgid "reload_attributes" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:650(span) #: doc/reference/en/ActiveGroonga/Persistence.html:679(span) #: doc/reference/en/ActiveGroonga/Persistence.html:708(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:342(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) @@ -5514,31 +5728,31 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:257(span) #: doc/reference/en/ActiveGroonga/Base.html:111(span) -#: doc/reference/en/ActiveGroonga/Base.html:1121(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1340(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1812(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:365(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) +#: doc/reference/en/ActiveGroonga/Base.html:1172(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1565(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:2037(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:357(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) msgid "{" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:650(span) #: doc/reference/en/ActiveGroonga/Persistence.html:679(span) #: doc/reference/en/ActiveGroonga/Persistence.html:708(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:342(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) @@ -5546,19 +5760,19 @@ msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:257(span) #: doc/reference/en/ActiveGroonga/Base.html:111(span) -#: doc/reference/en/ActiveGroonga/Base.html:1121(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1340(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1812(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:365(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) +#: doc/reference/en/ActiveGroonga/Base.html:1172(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1565(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:2037(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:357(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) msgid "}" msgstr "" @@ -5566,18 +5780,14 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:772(span) #: doc/reference/en/ActiveGroonga/Persistence.html:803(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Base.html:1114(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1163(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Base.html:1916(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/Migration.html:635(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) +#: doc/reference/en/ActiveGroonga/Base.html:2141(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/Migration.html:623(span) msgid "self" msgstr "" @@ -5598,48 +5808,60 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:679(span) #: doc/reference/en/ActiveGroonga/Persistence.html:708(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:140(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:526(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:554(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:136(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:512(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:538(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) #: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:342(span) #: doc/reference/en/ActiveGroonga/Schema.html:343(span) -#: doc/reference/en/ActiveGroonga/Schema.html:344(span) #: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Base.html:1162(span) -#: doc/reference/en/ActiveGroonga/Base.html:1662(span) -#: doc/reference/en/ActiveGroonga/Base.html:1846(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/Base.html:1387(span) +#: doc/reference/en/ActiveGroonga/Base.html:1887(span) +#: doc/reference/en/ActiveGroonga/Base.html:2071(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:648(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:728(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:802(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:891(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:970(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1042(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) msgid "options" msgstr "" @@ -5649,9 +5871,9 @@ msgid "create_or_update" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:698(pre) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:421(pre) -#: doc/reference/en/ActiveGroonga/Migration.html:420(pre) -#: doc/reference/en/ActiveGroonga/Migration.html:463(pre) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:409(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:410(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:451(pre) msgid "34 35 36" msgstr "" @@ -5664,15 +5886,15 @@ msgid "or" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:709(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2282(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2507(span) msgid "raise" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:718(p) -#: doc/reference/en/ActiveGroonga/Base.html:2503(p) +#: doc/reference/en/ActiveGroonga/Base.html:2728(p) msgid "- () (name, value)" msgstr "" @@ -5686,73 +5908,73 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:739(span) #: doc/reference/en/ActiveGroonga/Persistence.html:740(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:114(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:483(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:511(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:112(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:471(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:497(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:1471(span) -#: doc/reference/en/ActiveGroonga/Base.html:1473(span) -#: doc/reference/en/ActiveGroonga/Base.html:1474(span) -#: doc/reference/en/ActiveGroonga/Base.html:1508(span) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) -#: doc/reference/en/ActiveGroonga/Base.html:1912(span) -#: doc/reference/en/ActiveGroonga/Base.html:1913(span) -#: doc/reference/en/ActiveGroonga/Base.html:1916(span) -#: doc/reference/en/ActiveGroonga/Base.html:1945(span) -#: doc/reference/en/ActiveGroonga/Base.html:1946(span) -#: doc/reference/en/ActiveGroonga/Base.html:2122(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) -#: doc/reference/en/ActiveGroonga/Base.html:2311(span) -#: doc/reference/en/ActiveGroonga/Base.html:2312(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:214(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:414(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:431(span) -#: doc/reference/en/ActiveGroonga/Migration.html:278(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) -#: doc/reference/en/ActiveGroonga/Migration.html:617(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:634(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) +#: doc/reference/en/ActiveGroonga/Base.html:1696(span) +#: doc/reference/en/ActiveGroonga/Base.html:1698(span) +#: doc/reference/en/ActiveGroonga/Base.html:1699(span) +#: doc/reference/en/ActiveGroonga/Base.html:1733(span) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2138(span) +#: doc/reference/en/ActiveGroonga/Base.html:2141(span) +#: doc/reference/en/ActiveGroonga/Base.html:2170(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2347(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) +#: doc/reference/en/ActiveGroonga/Base.html:2536(span) +#: doc/reference/en/ActiveGroonga/Base.html:2537(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:208(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:419(span) +#: doc/reference/en/ActiveGroonga/Migration.html:272(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) +#: doc/reference/en/ActiveGroonga/Migration.html:605(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:622(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) msgid "name" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:739(span) #: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) -#: doc/reference/en/ActiveGroonga/Base.html:2523(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:389(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) +#: doc/reference/en/ActiveGroonga/Base.html:2748(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) msgid "value" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:740(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1341(span) -#: doc/reference/en/ActiveGroonga/Base.html:1813(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1566(span) +#: doc/reference/en/ActiveGroonga/Base.html:2038(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) msgid "to_s" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) msgid "send" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) msgid "\"#{name}=\"" msgstr "" @@ -5761,34 +5983,40 @@ msgid ":validate" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:742(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:227(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Database.html:336(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:648(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:861(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) msgid ">" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:742(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:311(span) -#: doc/reference/en/ActiveGroonga/Schema.html:466(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) -#: doc/reference/en/ActiveGroonga/Base.html:1119(span) -#: doc/reference/en/ActiveGroonga/Base.html:1620(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) +#: doc/reference/en/ActiveGroonga/Base.html:1170(span) +#: doc/reference/en/ActiveGroonga/Base.html:1845(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) msgid "false" msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:751(p) #: doc/reference/en/ActiveGroonga/Persistence.html:782(p) -#: doc/reference/en/ActiveGroonga/Base.html:2019(p) +#: doc/reference/en/ActiveGroonga/Base.html:2244(p) msgid "- () (attributes)" msgstr "" @@ -5804,16 +6032,16 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Persistence.html:772(span) #: doc/reference/en/ActiveGroonga/Persistence.html:802(span) #: doc/reference/en/ActiveGroonga/Persistence.html:803(span) -#: doc/reference/en/ActiveGroonga/Base.html:669(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1992(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2009(span) -#: doc/reference/en/ActiveGroonga/Base.html:2040(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:724(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:2217(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2234(span) +#: doc/reference/en/ActiveGroonga/Base.html:2265(span) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) @@ -5843,83 +6071,83 @@ msgstr "" msgid "lib/active_groonga/validations.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:129(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:128(p) msgid "Returns the value of attribute record." msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:155(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:153(a) msgid "- (RecordInvalid) (record)" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:171(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:168(p) msgid "A new instance of RecordInvalid." msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:190(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:186(p) msgid "" "- () " "(record)" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:199(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:194(p) msgid "A new instance of RecordInvalid" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:210(pre) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:204(pre) msgid "19 20 21 22 23 24" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:215(span) msgid "# File 'lib/active_groonga/validations.rb', line 19" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:224(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:275(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:267(span) msgid "@record" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:227(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) #: doc/reference/en/ActiveGroonga/Validations.html:298(span) msgid "errors" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) msgid "full_messages" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) #: doc/reference/en/ActiveGroonga/VERSION.html:106(span) msgid "join" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:225(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) msgid "\", \"" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) msgid "I18n" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) msgid "t" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:226(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) msgid "\"activegroonga.errors.messages.record_invalid\"" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:227(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) msgid ":errors" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:253(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:246(p) msgid "Returns the value of attribute record" msgstr "" -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:272(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:264(span) msgid "# File 'lib/active_groonga/validations.rb', line 18" msgstr "" @@ -5951,111 +6179,111 @@ msgstr "" msgid "lib/rails/generators/active_groonga/migration/migration_generator.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:102(p) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:98(p) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:104(p) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:227(p) -#: doc/reference/en/ActiveGroonga/Callbacks.html:146(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:102(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:101(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:97(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:103(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:222(p) +#: doc/reference/en/ActiveGroonga/Callbacks.html:143(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:101(p) msgid ":nodoc:" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:137(strong) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:250(strong) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:268(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:135(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:244(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:262(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:126(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:331(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:350(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:327(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:346(span) msgid "create_migration_file" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:158(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:156(a) msgid "- (MigrationGenerator) (args, *options)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:174(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:171(p) msgid "A new instance of MigrationGenerator." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:191(h3) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:264(h3) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:187(h3) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:262(h3) msgid "" "Methods inherited from " msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:192(p) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:114(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:265(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:188(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:112(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:263(p) msgid "" ", " msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:199(p) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:195(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:270(p) msgid "" "- () " "(args, *options)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:208(p) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:203(p) msgid "A new instance of MigrationGenerator" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:219(pre) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:213(pre) msgid "25 26 27 28" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:228(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/migration_generator." "rb', line 25" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) msgid "args" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:230(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) msgid "*" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:232(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:313(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:226(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:309(span) msgid "parse_columns!" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:257(pre) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:251(pre) msgid "30 31 32 33" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:266(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:260(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/migration_generator." "rb', line 30" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:269(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:263(span) msgid "set_local_assigns!" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:270(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:352(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:264(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) msgid "migration_template" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:270(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:352(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:264(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) msgid "\"migration.rb\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:270(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:264(span) msgid "\"db/groonga/migrate/#{file_name}.rb\"" msgstr "" @@ -6071,343 +6299,343 @@ msgstr "" msgid "lib/rails/generators/active_groonga/migration/column.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:131(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:128(p) msgid "Returns the value of attribute name." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:157(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:152(p) msgid "Returns the value of attribute options." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:166(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:458(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:569(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:597(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:160(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:553(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:579(span) msgid "type" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:183(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:176(p) msgid "Returns the value of attribute type." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:205(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:616(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:637(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:197(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:598(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:619(span) msgid "create_code" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:226(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:638(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:653(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:692(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:806(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:218(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:620(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:635(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:674(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:788(span) msgid "index?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:247(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:239(a) msgid "- (Column) (name, type, options)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:263(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:254(p) msgid "A new instance of Column." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:272(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:704(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:743(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:262(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:686(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:725(span) msgid "reference?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:293(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:755(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:772(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:283(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:737(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:754(span) msgid "reference_table_name" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:314(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:784(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:805(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:304(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:766(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:787(span) msgid "remove_code" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:335(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:821(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:860(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:325(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:803(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:842(span) msgid "vector?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:356(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:872(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:911(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:346(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:854(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:893(span) msgid "with_position?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:377(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:923(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:962(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:367(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:905(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:944(span) msgid "with_section?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:398(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:974(strong) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1013(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:388(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:956(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:995(span) msgid "with_weight?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:423(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:413(p) msgid "" "- () " "(name, type, options)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:432(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:421(p) msgid "A new instance of Column" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:443(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:431(pre) msgid "21 22 23 24 25 26 27 28" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 21" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:459(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) msgid "blank?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:460(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) msgid "message" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:460(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) msgid "\"Missing type for attribute '#{name}'.\\n\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:460(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) msgid "+" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:461(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:449(span) msgid "\"Example: '#{name}:short_text' where ShortText is the type.\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) msgid "Thor" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) msgid "::" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:512(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:773(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:498(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:755(span) msgid "@name" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:598(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:693(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:744(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:580(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:675(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:726(span) msgid "@type" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:555(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:539(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) msgid "@options" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:464(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:452(span) msgid "to_sym" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:490(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:477(p) msgid "Returns the value of attribute name" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:501(pre) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:544(pre) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:587(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:487(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:528(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:569(pre) msgid "19 20 21" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:509(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:552(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:595(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:495(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:536(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:577(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 19" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:533(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:518(p) msgid "Returns the value of attribute options" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:576(p) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:559(p) msgid "Returns the value of attribute type" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:623(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:605(pre) msgid "30 31 32 33 34 35 36" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:635(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:617(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 30" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:639(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:621(span) msgid "create_code_index" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:641(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:623(span) msgid "create_code_normal" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:682(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:664(pre) msgid "62 63 64" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:690(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:672(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 62" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:693(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:744(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:417(span) -#: doc/reference/en/ActiveGroonga/Base.html:648(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1547(span) -#: doc/reference/en/ActiveGroonga/Base.html:1963(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1980(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:392(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:566(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:675(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:726(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:413(span) +#: doc/reference/en/ActiveGroonga/Base.html:703(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1772(span) +#: doc/reference/en/ActiveGroonga/Base.html:2188(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2205(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:388(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:562(span) msgid "==" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:693(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:675(span) msgid ":index" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:733(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:715(pre) msgid "66 67 68" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:741(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:723(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 66" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:744(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:726(span) msgid ":reference" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:762(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:744(pre) msgid "70 71 72" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:770(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:752(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 70" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:773(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:755(span) msgid "pluralize" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:791(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:773(pre) msgid "38 39 40 41 42 43 44" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:803(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:785(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 38" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:807(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:789(span) msgid "\"remove_index(\\\"#{name}\\\")\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:809(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:791(span) msgid "\"remove_column(:#{name})\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:850(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:832(pre) msgid "46 47 48" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:858(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:840(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 46" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) msgid "include?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:861(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) msgid "\"vector\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:901(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:883(pre) msgid "58 59 60" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:909(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:891(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 58" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:912(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) msgid "\"with_position\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:952(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:934(pre) msgid "50 51 52" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:960(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:942(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 50" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:963(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) msgid "\"with_section\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1003(pre) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:985(pre) msgid "54 55 56" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1011(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:993(span) msgid "" "# File 'lib/rails/generators/active_groonga/migration/column.rb', line 54" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Column.html:1014(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) msgid "\"with_weight\"" msgstr "" @@ -6432,110 +6660,112 @@ msgstr "" msgid "lib/rails/generators/active_groonga.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:126(h2) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:124(h2) #: doc/reference/en/ActiveGroonga/Schema.html:101(h2) -#: doc/reference/en/ActiveGroonga/Base.html:167(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:171(h2) +#: doc/reference/en/ActiveGroonga/Base.html:222(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:167(h2) msgid "Class Method Summary " msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:136(a) -#: doc/reference/en/ActiveGroonga/Base.html:219(a) -#: doc/reference/en/ActiveGroonga/Base.html:240(a) -#: doc/reference/en/ActiveGroonga/Base.html:303(a) -#: doc/reference/en/ActiveGroonga/Base.html:345(a) -#: doc/reference/en/ActiveGroonga/Base.html:471(a) -#: doc/reference/en/ActiveGroonga/Base.html:492(a) -#: doc/reference/en/ActiveGroonga/Base.html:576(a) -#: doc/reference/en/ActiveGroonga/Migration.html:181(a) -#: doc/reference/en/ActiveGroonga/Migration.html:202(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:134(a) +#: doc/reference/en/ActiveGroonga/Base.html:274(a) +#: doc/reference/en/ActiveGroonga/Base.html:295(a) +#: doc/reference/en/ActiveGroonga/Base.html:358(a) +#: doc/reference/en/ActiveGroonga/Base.html:400(a) +#: doc/reference/en/ActiveGroonga/Base.html:526(a) +#: doc/reference/en/ActiveGroonga/Base.html:547(a) +#: doc/reference/en/ActiveGroonga/Base.html:631(a) +#: doc/reference/en/ActiveGroonga/Migration.html:177(a) +#: doc/reference/en/ActiveGroonga/Migration.html:198(a) msgid "+ (Object) " msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:157(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:155(a) msgid "+ (Object) (dirname)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:171(p) -#: doc/reference/en/ActiveGroonga/Callbacks.html:120(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:168(p) +#: doc/reference/en/ActiveGroonga/Callbacks.html:119(p) msgid ":nodoc:." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:185(h2) -#: doc/reference/en/ActiveGroonga/Schema.html:282(h2) -#: doc/reference/en/ActiveGroonga/Base.html:1139(h2) -#: doc/reference/en/ActiveGroonga/Migration.html:486(h2) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:181(h2) +#: doc/reference/en/ActiveGroonga/Schema.html:278(h2) +#: doc/reference/en/ActiveGroonga/Base.html:1364(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:474(h2) msgid "Class Method Details" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:189(p) -#: doc/reference/en/ActiveGroonga/Base.html:1213(p) -#: doc/reference/en/ActiveGroonga/Base.html:1242(p) -#: doc/reference/en/ActiveGroonga/Base.html:1351(p) -#: doc/reference/en/ActiveGroonga/Base.html:1413(p) -#: doc/reference/en/ActiveGroonga/Base.html:1683(p) -#: doc/reference/en/ActiveGroonga/Base.html:1712(p) -#: doc/reference/en/ActiveGroonga/Base.html:1860(p) -#: doc/reference/en/ActiveGroonga/Migration.html:490(p) -#: doc/reference/en/ActiveGroonga/Migration.html:519(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:185(p) +#: doc/reference/en/ActiveGroonga/Base.html:1195(p) +#: doc/reference/en/ActiveGroonga/Base.html:1276(p) +#: doc/reference/en/ActiveGroonga/Base.html:1438(p) +#: doc/reference/en/ActiveGroonga/Base.html:1467(p) +#: doc/reference/en/ActiveGroonga/Base.html:1576(p) +#: doc/reference/en/ActiveGroonga/Base.html:1638(p) +#: doc/reference/en/ActiveGroonga/Base.html:1908(p) +#: doc/reference/en/ActiveGroonga/Base.html:1937(p) +#: doc/reference/en/ActiveGroonga/Base.html:2085(p) +#: doc/reference/en/ActiveGroonga/Migration.html:478(p) +#: doc/reference/en/ActiveGroonga/Migration.html:507(p) msgid "+ () " msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:198(pre) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:311(pre) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:354(pre) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:194(pre) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:301(pre) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:342(pre) msgid "27 28 29" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:206(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:202(span) msgid "# File 'lib/rails/generators/active_groonga.rb', line 27" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) msgid "dirname" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:209(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) msgid "__FILE__" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:218(p) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:214(p) msgid "+ () (dirname)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:238(pre) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:232(pre) msgid "31 32 33" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:246(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:240(span) msgid "# File 'lib/rails/generators/active_groonga.rb', line 31" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:248(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) msgid "#:nodoc:" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) msgid "Time" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) msgid "now" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) msgid "utc" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) msgid "strftime" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/Base.html:249(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) msgid "\"%Y%m%d%H%M%S\"" msgstr "" @@ -6552,20 +6782,20 @@ msgid "lib/rails/generators/active_groonga/model/model_generator.rb" msgstr "" #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:147(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:364(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:382(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:360(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:378(span) msgid "create_model_file" msgstr "" #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:168(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:395(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:415(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:391(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:411(span) msgid "create_module_file" msgstr "" #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:189(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:430(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:426(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) msgid "create_table_code" msgstr "" @@ -6573,246 +6803,247 @@ msgstr "" msgid "- (ModelGenerator) (args, *options)" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:226(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:225(p) msgid "A new instance of ModelGenerator." msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:235(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:475(strong) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:492(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:233(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:471(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:488(span) msgid "remove_table_code" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:281(p) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:278(p) msgid "A new instance of ModelGenerator" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:292(pre) -#: doc/reference/en/ActiveGroonga/ResultSet.html:596(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:288(pre) msgid "33 34 35 36 37 38 39 40" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:301(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "33" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:310(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:306(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) msgid "@table_type" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:311(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) msgid "@key_normalize" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:312(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:308(span) msgid "@default_tokenizer" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:338(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:334(pre) msgid "42 43 44 45 46" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:344(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "42" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) -#: doc/reference/en/ActiveGroonga/Schema.html:464(span) -#: doc/reference/en/ActiveGroonga/Base.html:1547(span) -#: doc/reference/en/ActiveGroonga/Base.html:1620(span) -#: doc/reference/en/ActiveGroonga/Base.html:1668(span) -#: doc/reference/en/ActiveGroonga/Base.html:1670(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Database.html:295(span) -#: doc/reference/en/ActiveGroonga/Database.html:334(span) -#: doc/reference/en/ActiveGroonga/Database.html:375(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Base.html:1772(span) +#: doc/reference/en/ActiveGroonga/Base.html:1845(span) +#: doc/reference/en/ActiveGroonga/Base.html:1893(span) +#: doc/reference/en/ActiveGroonga/Base.html:1895(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:371(span) msgid "return" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) msgid ":migration" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) msgid "&&" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) msgid ":parent" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:351(span) -#: doc/reference/en/ActiveGroonga/Schema.html:464(span) -#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:214(span) -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) -#: doc/reference/en/ActiveGroonga/Base.html:1673(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1913(span) -#: doc/reference/en/ActiveGroonga/Database.html:295(span) -#: doc/reference/en/ActiveGroonga/Database.html:375(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) +#: doc/reference/en/ActiveGroonga/Base.html:1898(span) +#: doc/reference/en/ActiveGroonga/Base.html:1961(span) +#: doc/reference/en/ActiveGroonga/Base.html:2138(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:371(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:535(span) msgid "nil?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:353(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:349(span) msgid "\"db/groonga/migrate/create_#{table_name}.rb\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:371(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:367(pre) msgid "48 49 50 51" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:376(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "48" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:383(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:379(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) msgid "template" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:383(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:379(span) msgid "'model.rb'" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) msgid "\"app/models\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) msgid "class_path" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:384(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) msgid "\"#{file_name}.rb\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:402(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:398(pre) msgid "53 54 55 56 57 58" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:413(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:409(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "53" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:416(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) #: doc/reference/en/ActiveGroonga/Validations.html:298(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) msgid "empty?" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:417(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:413(span) msgid "behavior" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:417(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:413(span) msgid ":invoke" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) msgid "'module.rb'" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:418(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) msgid "\"app/models/#{class_path.join('/')}.rb\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:437(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:433(pre) msgid "60 61 62 63 64 65 66 67 68 69 70" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "60" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:463(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:464(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) msgid "code" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) msgid "\"create_table(:#{table_name}\"" msgstr "" +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:469(span) #: doc/reference/en/ActiveGroonga/Schema.html:472(span) -#: doc/reference/en/ActiveGroonga/Schema.html:473(span) -#: doc/reference/en/ActiveGroonga/Schema.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:477(span) #: doc/reference/en/ActiveGroonga/Schema.html:478(span) -#: doc/reference/en/ActiveGroonga/Schema.html:481(span) -#: doc/reference/en/ActiveGroonga/Schema.html:482(span) -#: doc/reference/en/ActiveGroonga/Base.html:2192(span) -#: doc/reference/en/ActiveGroonga/Base.html:2194(span) -#: doc/reference/en/ActiveGroonga/Base.html:2197(span) -#: doc/reference/en/ActiveGroonga/Vector.html:200(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2417(span) +#: doc/reference/en/ActiveGroonga/Base.html:2419(span) +#: doc/reference/en/ActiveGroonga/Base.html:2422(span) +#: doc/reference/en/ActiveGroonga/Vector.html:194(strong) msgid "<<" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) msgid "\":type => :#{@table_type}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:455(span) msgid "\":key_type => \\\"#{@key}\\\"\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:460(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) msgid "\":key_normalize => #{@key_normalize}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) msgid "\":default_tokenizer => \\\"#{@tokenizer}\\\"\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:461(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:457(span) msgid "@tokenizer" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:462(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:458(span) msgid "\", #{options.join(', ')}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:463(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:459(span) msgid "\")\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:482(pre) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:478(pre) msgid "72 73 74" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:490(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:486(span) msgid "" "# File 'lib/rails/generators/active_groonga/model/model_generator.rb', line " "72" msgstr "" -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:493(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:489(span) msgid "\"remove_table(:#{table_name})\"" msgstr "" @@ -6838,8 +7069,8 @@ msgid "+ (Object) (options = {}, &block)" msgstr "" #: doc/reference/en/ActiveGroonga/Schema.html:132(a) -#: doc/reference/en/ActiveGroonga/Base.html:177(a) -#: doc/reference/en/ActiveGroonga/Base.html:555(a) +#: doc/reference/en/ActiveGroonga/Base.html:232(a) +#: doc/reference/en/ActiveGroonga/Base.html:610(a) msgid "+ (Object) (options = {})" msgstr "" @@ -6855,348 +7086,357 @@ msgstr "" msgid "- (Schema) (options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:220(p) +#: doc/reference/en/ActiveGroonga/Schema.html:219(p) msgid "A new instance of Schema." msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:233(p) +#: doc/reference/en/ActiveGroonga/Schema.html:231(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:580(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:697(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:825(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:941(span) msgid "" "- () " "(options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:242(p) +#: doc/reference/en/ActiveGroonga/Schema.html:239(p) msgid "A new instance of Schema" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:253(pre) -#: doc/reference/en/ActiveGroonga/Database.html:360(pre) +#: doc/reference/en/ActiveGroonga/Schema.html:249(pre) +#: doc/reference/en/ActiveGroonga/Database.html:356(pre) msgid "37 38 39 40 41 42" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:260(span) msgid "# File 'lib/active_groonga/schema.rb', line 37" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) msgid "||" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:267(span) -#: doc/reference/en/ActiveGroonga/Schema.html:344(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) msgid "dup" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) -#: doc/reference/en/ActiveGroonga/Schema.html:410(span) -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:273(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:365(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/Migration.html:336(span) -#: doc/reference/en/ActiveGroonga/Migration.html:474(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:260(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:353(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:406(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:265(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:353(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/Migration.html:328(span) +#: doc/reference/en/ActiveGroonga/Migration.html:462(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:339(span) msgid "@version" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:268(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) msgid ":version" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:269(span) -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) #: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/Database.html:341(span) msgid ":context" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Schema.html:384(tt) -#: doc/reference/en/ActiveGroonga/Schema.html:408(span) -#: doc/reference/en/ActiveGroonga/Schema.html:409(span) -#: doc/reference/en/ActiveGroonga/Schema.html:463(span) -#: doc/reference/en/ActiveGroonga/Migration.html:338(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Schema.html:380(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:404(span) +#: doc/reference/en/ActiveGroonga/Schema.html:405(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Migration.html:330(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) msgid "@schema" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:270(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) msgid "Groonga" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:286(p) +#: doc/reference/en/ActiveGroonga/Schema.html:282(p) msgid "+ () (options = {}, &block)" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:295(pre) +#: doc/reference/en/ActiveGroonga/Schema.html:291(pre) msgid "21 22 23" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:303(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) msgid "# File 'lib/active_groonga/schema.rb', line 21" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) msgid "&" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:305(span) -#: doc/reference/en/ActiveGroonga/Schema.html:306(span) -#: doc/reference/en/ActiveGroonga/Schema.html:407(span) -#: doc/reference/en/ActiveGroonga/Base.html:1299(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) -#: doc/reference/en/ActiveGroonga/Migration.html:380(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:302(span) +#: doc/reference/en/ActiveGroonga/Schema.html:403(span) +#: doc/reference/en/ActiveGroonga/Base.html:1524(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) msgid "block" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:315(p) -#: doc/reference/en/ActiveGroonga/Base.html:1143(p) -#: doc/reference/en/ActiveGroonga/Base.html:1823(p) +#: doc/reference/en/ActiveGroonga/Schema.html:311(p) +#: doc/reference/en/ActiveGroonga/Base.html:1368(p) +#: doc/reference/en/ActiveGroonga/Base.html:2048(p) msgid "+ () (options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:324(pre) +#: doc/reference/en/ActiveGroonga/Schema.html:320(pre) msgid "25 26 27 28 29 30 31 32 33 34" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Schema.html:335(span) msgid "# File 'lib/active_groonga/schema.rb', line 25" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) #: doc/reference/en/ActiveGroonga/Validations.html:296(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:257(span) -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1340(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1812(span) -#: doc/reference/en/ActiveGroonga/Base.html:1880(span) -#: doc/reference/en/ActiveGroonga/Base.html:1914(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:421(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1565(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:2037(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) msgid "||=" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) msgid "is_a?" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:343(span) -#: doc/reference/en/ActiveGroonga/Base.html:1201(span) +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Base.html:1426(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) msgid "Hash" msgstr "" +#: doc/reference/en/ActiveGroonga/Schema.html:341(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) #: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:347(span) -#: doc/reference/en/ActiveGroonga/Schema.html:349(span) -#: doc/reference/en/ActiveGroonga/Schema.html:462(span) -#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) #: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:469(span) #: doc/reference/en/ActiveGroonga/Schema.html:472(span) -#: doc/reference/en/ActiveGroonga/Schema.html:473(span) -#: doc/reference/en/ActiveGroonga/Schema.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:477(span) #: doc/reference/en/ActiveGroonga/Schema.html:478(span) -#: doc/reference/en/ActiveGroonga/Schema.html:481(span) +#: doc/reference/en/ActiveGroonga/Schema.html:480(span) #: doc/reference/en/ActiveGroonga/Schema.html:482(span) -#: doc/reference/en/ActiveGroonga/Schema.html:484(span) -#: doc/reference/en/ActiveGroonga/Schema.html:486(span) msgid "output" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) +#: doc/reference/en/ActiveGroonga/Schema.html:341(span) msgid ":output" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:364(p) +#: doc/reference/en/ActiveGroonga/Schema.html:360(p) msgid "- () {|@schema| ... }" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:378(h3) +#: doc/reference/en/ActiveGroonga/Schema.html:374(h3) msgid "Yields:" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:405(span) +#: doc/reference/en/ActiveGroonga/Schema.html:401(span) msgid "# File 'lib/active_groonga/schema.rb', line 44" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:408(span) -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1849(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:345(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:452(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) +#: doc/reference/en/ActiveGroonga/Schema.html:404(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:341(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:448(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) msgid "yield" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:410(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:212(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:385(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:403(span) +#: doc/reference/en/ActiveGroonga/Schema.html:406(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:210(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:381(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) msgid "update_version" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:419(p) +#: doc/reference/en/ActiveGroonga/Schema.html:415(p) msgid "- () (output = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:428(pre) +#: doc/reference/en/ActiveGroonga/Schema.html:424(pre) msgid "" "50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 " "75 76" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Schema.html:456(span) msgid "# File 'lib/active_groonga/schema.rb', line 50" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:463(span) -#: doc/reference/en/ActiveGroonga/Schema.html:464(span) -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) msgid "dumped_schema" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:466(span) -#: doc/reference/en/ActiveGroonga/Schema.html:469(span) -#: doc/reference/en/ActiveGroonga/Schema.html:483(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Schema.html:479(span) msgid "return_string" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) msgid "StringIO" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) #: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:129(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:273(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:336(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:364(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:342(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:372(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:373(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:403(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) -#: doc/reference/en/ActiveGroonga/Migration.html:142(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:336(span) -#: doc/reference/en/ActiveGroonga/Migration.html:445(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:473(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:149(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:260(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:324(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:352(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:127(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:265(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:326(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:352(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:338(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:369(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) +#: doc/reference/en/ActiveGroonga/Migration.html:140(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:328(span) +#: doc/reference/en/ActiveGroonga/Migration.html:435(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:461(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:145(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:312(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:338(span) msgid "version" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:178(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:341(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:403(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:420(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:515(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:176(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:337(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:399(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:416(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:511(span) msgid "management_table" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) #: doc/reference/en/ActiveGroonga/Migrator.html:111(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:323(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:340(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:341(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:319(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:336(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:337(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:464(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:124(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:288(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:305(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:284(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:301(span) msgid "current_version" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:472(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) msgid "" "\"ActiveGroonga::Schema.define(:version => #{version}) do |schema|\\n\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:473(span) +#: doc/reference/en/ActiveGroonga/Schema.html:469(span) msgid "\" schema.instance_eval do\\n\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) msgid "each_line" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:474(span) -#: doc/reference/en/ActiveGroonga/Schema.html:475(span) -#: doc/reference/en/ActiveGroonga/Schema.html:476(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:472(span) msgid "line" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:475(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) msgid "/^\\s*$/" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:475(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) msgid "=~" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:478(span) +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) msgid "\" #{line}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:481(span) +#: doc/reference/en/ActiveGroonga/Schema.html:477(span) msgid "\" end\\n\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:482(span) +#: doc/reference/en/ActiveGroonga/Schema.html:478(span) msgid "\"end\\n\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Schema.html:484(span) +#: doc/reference/en/ActiveGroonga/Schema.html:480(span) msgid "string" msgstr "" @@ -7234,8 +7474,7 @@ msgid "- (Boolean) (context = nil)" msgstr "" #: doc/reference/en/ActiveGroonga/Validations.html:203(pre) -#: doc/reference/en/ActiveGroonga/Base.html:1360(pre) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:295(pre) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:291(pre) msgid "52 53 54" msgstr "" @@ -7251,14 +7490,14 @@ msgstr "" #: doc/reference/en/ActiveGroonga/Validations.html:214(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) #: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) msgid "?" msgstr "" #: doc/reference/en/ActiveGroonga/Validations.html:214(span) #: doc/reference/en/ActiveGroonga/Validations.html:243(span) #: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Base.html:2494(span) +#: doc/reference/en/ActiveGroonga/Base.html:2719(span) msgid ":" msgstr "" @@ -7375,15 +7614,15 @@ msgid "instance_of?" msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) -#: doc/reference/en/ActiveGroonga/Base.html:2041(span) -#: doc/reference/en/ActiveGroonga/Base.html:2196(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:210(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:523(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:544(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) -#: doc/reference/en/ActiveGroonga/Vector.html:284(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2266(span) +#: doc/reference/en/ActiveGroonga/Base.html:2421(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:204(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:511(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:532(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) +#: doc/reference/en/ActiveGroonga/Vector.html:278(strong) msgid "each" msgstr "" @@ -7470,160 +7709,205 @@ msgstr "" msgid "\"utf8\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:198(a) +#: doc/reference/en/ActiveGroonga/Base.html:148(h2) +msgid "Class Attribute Summary " +msgstr "???????? " + +#: doc/reference/en/ActiveGroonga/Base.html:154(a) +msgid "+ (Integer) " +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:170(a) +#: doc/reference/en/ActiveGroonga/Base.html:195(a) +#: doc/reference/en/ActiveGroonga/Base.html:1203(a) +#: doc/reference/en/ActiveGroonga/Base.html:1284(a) +msgid "ResultSet#sort" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:171(a) +#: doc/reference/en/ActiveGroonga/Base.html:196(a) +#: doc/reference/en/ActiveGroonga/Base.html:1204(a) +#: doc/reference/en/ActiveGroonga/Base.html:1285(a) +msgid "ResultSet#paginate" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:170(p) +#: doc/reference/en/ActiveGroonga/Base.html:1203(p) +msgid "" +"The default limit for " +"and ." +msgstr "" +"?????????????limit????" + +#: doc/reference/en/ActiveGroonga/Base.html:179(a) +msgid "+ (Array<Array<String, Symbol>>) " +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:195(p) +#: doc/reference/en/ActiveGroonga/Base.html:1284(p) +msgid "" +"The default sort keys for and ." +msgstr "" +"???????????????????" +"??" + +#: doc/reference/en/ActiveGroonga/Base.html:253(a) msgid "+ (Object) (configuration)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:261(a) +#: doc/reference/en/ActiveGroonga/Base.html:316(a) msgid "+ (Object) (attributes = nil, &block)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:282(a) +#: doc/reference/en/ActiveGroonga/Base.html:337(a) msgid "+ (Object) (column_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:324(a) +#: doc/reference/en/ActiveGroonga/Base.html:379(a) msgid "+ (Object) (path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:366(a) -#: doc/reference/en/ActiveGroonga/Base.html:387(a) -#: doc/reference/en/ActiveGroonga/Base.html:618(a) +#: doc/reference/en/ActiveGroonga/Base.html:421(a) +#: doc/reference/en/ActiveGroonga/Base.html:442(a) +#: doc/reference/en/ActiveGroonga/Base.html:673(a) msgid "+ (Object) (name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:408(a) +#: doc/reference/en/ActiveGroonga/Base.html:463(a) msgid "+ (Object) (new_encoding)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:429(a) +#: doc/reference/en/ActiveGroonga/Base.html:484(a) msgid "+ (Boolean) (record_id)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:450(a) +#: doc/reference/en/ActiveGroonga/Base.html:505(a) msgid "+ (Object) (record_id, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:513(a) +#: doc/reference/en/ActiveGroonga/Base.html:568(a) msgid "+ (Object) (record)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:534(a) +#: doc/reference/en/ActiveGroonga/Base.html:589(a) msgid "+ (Object) (column_name, klass)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:597(a) +#: doc/reference/en/ActiveGroonga/Base.html:652(a) msgid "+ (Object) (name = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:648(a) +#: doc/reference/en/ActiveGroonga/Base.html:703(a) msgid "- (Object) (other)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:690(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2021(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2040(span) +#: doc/reference/en/ActiveGroonga/Base.html:745(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2246(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2265(span) msgid "attributes=" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:711(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2054(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2071(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) +#: doc/reference/en/ActiveGroonga/Base.html:766(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2279(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2296(span) +#: doc/reference/en/ActiveGroonga/Base.html:2297(span) msgid "hash" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:732(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2083(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2122(span) -#: doc/reference/en/ActiveGroonga/Base.html:2123(span) +#: doc/reference/en/ActiveGroonga/Base.html:787(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2308(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2347(span) +#: doc/reference/en/ActiveGroonga/Base.html:2348(span) msgid "have_column?" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:732(a) +#: doc/reference/en/ActiveGroonga/Base.html:787(a) msgid "- (Boolean) (name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:753(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) -#: doc/reference/en/ActiveGroonga/Base.html:2134(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2151(span) -#: doc/reference/en/ActiveGroonga/Base.html:2348(span) -#: doc/reference/en/ActiveGroonga/Base.html:2378(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) +#: doc/reference/en/ActiveGroonga/Base.html:808(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2297(span) +#: doc/reference/en/ActiveGroonga/Base.html:2359(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2573(span) +#: doc/reference/en/ActiveGroonga/Base.html:2603(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) msgid "id" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:774(a) +#: doc/reference/en/ActiveGroonga/Base.html:829(a) msgid "- (Base) (record_or_attributes = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:790(p) +#: doc/reference/en/ActiveGroonga/Base.html:844(p) msgid "A new instance of Base." msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:841(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2239(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2280(span) +#: doc/reference/en/ActiveGroonga/Base.html:894(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2464(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2505(span) msgid "key=" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:841(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:231(a) +#: doc/reference/en/ActiveGroonga/Base.html:894(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:225(a) msgid "- (Object) (key)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:862(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1474(span) -#: doc/reference/en/ActiveGroonga/Base.html:2294(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2311(span) +#: doc/reference/en/ActiveGroonga/Base.html:915(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1699(span) +#: doc/reference/en/ActiveGroonga/Base.html:2519(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2536(span) msgid "read_attribute" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:862(a) +#: doc/reference/en/ActiveGroonga/Base.html:915(a) msgid "- (Object) (name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:904(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2360(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2377(span) +#: doc/reference/en/ActiveGroonga/Base.html:957(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2585(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2602(span) msgid "record_raw_id" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:925(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2389(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2406(span) -#: doc/reference/en/ActiveGroonga/Base.html:2435(span) -#: doc/reference/en/ActiveGroonga/Base.html:2436(span) +#: doc/reference/en/ActiveGroonga/Base.html:978(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2614(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2631(span) +#: doc/reference/en/ActiveGroonga/Base.html:2660(span) +#: doc/reference/en/ActiveGroonga/Base.html:2661(span) msgid "score" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:946(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2418(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2435(span) +#: doc/reference/en/ActiveGroonga/Base.html:999(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2643(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2660(span) msgid "score=" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:946(a) +#: doc/reference/en/ActiveGroonga/Base.html:999(a) msgid "- (Object) (score)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:988(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2476(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2493(span) +#: doc/reference/en/ActiveGroonga/Base.html:1041(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2701(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2718(span) msgid "to_key" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1009(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) -#: doc/reference/en/ActiveGroonga/Base.html:2505(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2522(span) +#: doc/reference/en/ActiveGroonga/Base.html:1062(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) +#: doc/reference/en/ActiveGroonga/Base.html:2730(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2747(span) msgid "write_attribute" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1063(p) +#: doc/reference/en/ActiveGroonga/Base.html:1116(p) msgid "" ", , " msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1070(p) +#: doc/reference/en/ActiveGroonga/Base.html:1123(p) msgid "" "- () " "(record_or_attributes = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1079(p) +#: doc/reference/en/ActiveGroonga/Base.html:1131(p) msgid "A new instance of Base" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1090(pre) -msgid "212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227" +#: doc/reference/en/ActiveGroonga/Base.html:1141(pre) +msgid "260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1111(span) -msgid "# File 'lib/active_groonga/base.rb', line 212" +#: doc/reference/en/ActiveGroonga/Base.html:1162(span) +msgid "# File 'lib/active_groonga/base.rb', line 260" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1113(span) -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) -#: doc/reference/en/ActiveGroonga/Base.html:1123(span) -#: doc/reference/en/ActiveGroonga/Base.html:1126(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1174(span) +#: doc/reference/en/ActiveGroonga/Base.html:1177(span) msgid "record_or_attributes" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1114(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) -#: doc/reference/en/ActiveGroonga/Base.html:2465(span) -#: doc/reference/en/ActiveGroonga/Migration.html:635(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) +#: doc/reference/en/ActiveGroonga/Base.html:2690(span) +#: doc/reference/en/ActiveGroonga/Migration.html:623(span) msgid "class" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1115(span) -#: doc/reference/en/ActiveGroonga/Base.html:2152(span) +#: doc/reference/en/ActiveGroonga/Base.html:1166(span) +#: doc/reference/en/ActiveGroonga/Base.html:2377(span) msgid "@id" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1117(span) -#: doc/reference/en/ActiveGroonga/Base.html:2407(span) -#: doc/reference/en/ActiveGroonga/Base.html:2436(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:2632(span) +#: doc/reference/en/ActiveGroonga/Base.html:2661(span) msgid "@score" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1120(span) +#: doc/reference/en/ActiveGroonga/Base.html:1171(span) msgid "initial_attributes" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1122(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) msgid "Record" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1152(pre) -msgid "106 107 108" +#: doc/reference/en/ActiveGroonga/Base.html:1189(h2) +msgid "Class Attribute Details" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1197(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1229(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1843(span) +#: doc/reference/en/ActiveGroonga/Base.html:1891(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:653(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:663(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:733(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:743(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:896(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:907(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:975(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:986(tt) +msgid "Integer" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1211(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1292(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:608(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:707(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:853(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:951(h3) +msgid "Examples:" +msgstr "?:" + +#: doc/reference/en/ActiveGroonga/Base.html:1214(span) +msgid "# Limits sorted records by default." +msgstr "# ??????????????????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1215(span) +#: doc/reference/en/ActiveGroonga/Base.html:1218(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/Base.html:1304(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) +msgid "User" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1215(span) +msgid "20" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1217(span) +msgid "# Doesn't limit sorted records by default." +msgstr "# ????????????????????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1234(p) +msgid "The default limit value." +msgstr "??????limit??" + +#: doc/reference/en/ActiveGroonga/Base.html:1239(h3) +#: doc/reference/en/ActiveGroonga/Base.html:1327(h3) +msgid "Since:" +msgstr "?????????:" + +#: doc/reference/en/ActiveGroonga/Base.html:1248(p) +#: doc/reference/en/ActiveGroonga/Base.html:1336(p) +msgid "1.0.5" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1257(pre) +msgid "78" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1263(span) +msgid "# File 'lib/active_groonga/base.rb', line 78" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1265(span) +#: doc/reference/en/ActiveGroonga/Base.html:1353(span) +msgid "class_attribute" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1265(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:861(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:895(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:974(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +msgid ":limit" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1278(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1315(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:631(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:874(tt) +msgid "Array<Array<String, Symbol>>" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1295(span) +msgid "# Sorts by \"name\" column value in ascending order by default." +msgstr "# ??????\"name\"??????????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +msgid "\"name\"" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) +msgid ":ascending" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1298(span) +msgid "# Sorts by \"name\" column value in ascending order and" +msgstr "# ??????????????\"name\"??????????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1299(span) +msgid "# sorts by \"age\" column value in descending order for" +msgstr "# ??name??????\"age\"????????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1300(span) +msgid "# the same name records by default." +msgstr "# ????" + +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +msgid "\"age\"" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1301(span) +msgid ":descending" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1303(span) +msgid "# Sorts by id value in ascending order by default." +msgstr "# ???????id???????????" + +#: doc/reference/en/ActiveGroonga/Base.html:1320(p) +msgid "" +"An array of sort key. Each sort key is an array of sort key column name and " +"order." +msgstr "" +"??????????????????????????????????????" +"???????" + +#: doc/reference/en/ActiveGroonga/Base.html:1345(pre) +msgid "62" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1351(span) +msgid "# File 'lib/active_groonga/base.rb', line 62" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1353(span) +msgid ":sort_keys" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1377(pre) +msgid "145 146 147" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1385(span) +msgid "# File 'lib/active_groonga/base.rb', line 145" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1160(span) -msgid "# File 'lib/active_groonga/base.rb', line 106" +#: doc/reference/en/ActiveGroonga/Base.html:1388(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) +msgid "create_result_set" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1172(p) +#: doc/reference/en/ActiveGroonga/Base.html:1397(p) msgid "+ () (configuration)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1181(pre) -msgid "42 43 44 45 46 47 48 49 50" +#: doc/reference/en/ActiveGroonga/Base.html:1406(pre) +msgid "81 82 83 84 85 86 87 88 89" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1195(span) -msgid "# File 'lib/active_groonga/base.rb', line 42" +#: doc/reference/en/ActiveGroonga/Base.html:1420(span) +msgid "# File 'lib/active_groonga/base.rb', line 81" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1197(span) -#: doc/reference/en/ActiveGroonga/Base.html:1198(span) -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) +#: doc/reference/en/ActiveGroonga/Base.html:1422(span) +#: doc/reference/en/ActiveGroonga/Base.html:1423(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) msgid "configuration" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1198(span) -#: doc/reference/en/ActiveGroonga/Migration.html:591(span) -#: doc/reference/en/ActiveGroonga/Migration.html:600(span) +#: doc/reference/en/ActiveGroonga/Base.html:1423(span) +#: doc/reference/en/ActiveGroonga/Migration.html:579(span) +#: doc/reference/en/ActiveGroonga/Migration.html:588(span) msgid "case" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1199(span) -#: doc/reference/en/ActiveGroonga/Base.html:1201(span) -#: doc/reference/en/ActiveGroonga/Migration.html:592(span) -#: doc/reference/en/ActiveGroonga/Migration.html:594(span) -#: doc/reference/en/ActiveGroonga/Migration.html:601(span) -#: doc/reference/en/ActiveGroonga/Migration.html:603(span) +#: doc/reference/en/ActiveGroonga/Base.html:1424(span) +#: doc/reference/en/ActiveGroonga/Base.html:1426(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Migration.html:589(span) +#: doc/reference/en/ActiveGroonga/Migration.html:591(span) msgid "when" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1199(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) +#: doc/reference/en/ActiveGroonga/Base.html:1424(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) msgid "String" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1199(span) +#: doc/reference/en/ActiveGroonga/Base.html:1424(span) msgid "Symbol" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1200(span) +#: doc/reference/en/ActiveGroonga/Base.html:1425(span) msgid "configurations" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) msgid "database_path" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1202(span) +#: doc/reference/en/ActiveGroonga/Base.html:1427(span) msgid "\"database\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) msgid "encoding" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1203(span) +#: doc/reference/en/ActiveGroonga/Base.html:1428(span) msgid "\"encoding\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1222(pre) -msgid "114 115 116" +#: doc/reference/en/ActiveGroonga/Base.html:1447(pre) +msgid "153 154 155" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1230(span) -msgid "# File 'lib/active_groonga/base.rb', line 114" +#: doc/reference/en/ActiveGroonga/Base.html:1455(span) +msgid "# File 'lib/active_groonga/base.rb', line 153" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) msgid "@@context" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) msgid "Context" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1233(span) -#: doc/reference/en/ActiveGroonga/Base.html:1550(span) +#: doc/reference/en/ActiveGroonga/Base.html:1458(span) +#: doc/reference/en/ActiveGroonga/Base.html:1775(span) msgid "default" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1251(pre) -msgid "110 111 112" +#: doc/reference/en/ActiveGroonga/Base.html:1476(pre) +msgid "149 150 151" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1259(span) -msgid "# File 'lib/active_groonga/base.rb', line 110" +#: doc/reference/en/ActiveGroonga/Base.html:1484(span) +msgid "# File 'lib/active_groonga/base.rb', line 149" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1262(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) +#: doc/reference/en/ActiveGroonga/Base.html:1487(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) msgid "size" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1271(p) +#: doc/reference/en/ActiveGroonga/Base.html:1496(p) msgid "+ () (attributes = nil, &block)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1280(pre) -msgid "56 57 58 59 60 61 62 63 64 65 66 67" +#: doc/reference/en/ActiveGroonga/Base.html:1505(pre) +msgid "95 96 97 98 99 100 101 102 103 104 105 106" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1297(span) -msgid "# File 'lib/active_groonga/base.rb', line 56" +#: doc/reference/en/ActiveGroonga/Base.html:1522(span) +msgid "# File 'lib/active_groonga/base.rb', line 95" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1300(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) +#: doc/reference/en/ActiveGroonga/Base.html:1525(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) msgid "Array" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) msgid "collect" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1302(span) +#: doc/reference/en/ActiveGroonga/Base.html:1526(span) +#: doc/reference/en/ActiveGroonga/Base.html:1527(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) msgid "nested_attributes" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1305(span) -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1307(span) -#: doc/reference/en/ActiveGroonga/Base.html:1308(span) -#: doc/reference/en/ActiveGroonga/Base.html:1775(span) -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) -#: doc/reference/en/ActiveGroonga/Base.html:1780(span) -#: doc/reference/en/ActiveGroonga/Base.html:1781(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) +#: doc/reference/en/ActiveGroonga/Base.html:1530(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:1532(span) +#: doc/reference/en/ActiveGroonga/Base.html:1533(span) +#: doc/reference/en/ActiveGroonga/Base.html:2000(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) +#: doc/reference/en/ActiveGroonga/Base.html:2005(span) +#: doc/reference/en/ActiveGroonga/Base.html:2006(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:535(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:160(span) @@ -7851,613 +8303,614 @@ msgstr "" msgid "object" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1306(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) +#: doc/reference/en/ActiveGroonga/Base.html:1531(span) +#: doc/reference/en/ActiveGroonga/Base.html:2072(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) msgid "block_given?" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1318(p) +#: doc/reference/en/ActiveGroonga/Base.html:1543(p) msgid "+ () (column_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1327(pre) -msgid "196 197 198 199 200" +#: doc/reference/en/ActiveGroonga/Base.html:1552(pre) +msgid "235 236 237 238 239" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1337(span) -msgid "# File 'lib/active_groonga/base.rb', line 196" +#: doc/reference/en/ActiveGroonga/Base.html:1562(span) +msgid "# File 'lib/active_groonga/base.rb', line 235" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1339(span) -#: doc/reference/en/ActiveGroonga/Base.html:1341(span) -#: doc/reference/en/ActiveGroonga/Base.html:1342(span) -#: doc/reference/en/ActiveGroonga/Base.html:1811(span) -#: doc/reference/en/ActiveGroonga/Base.html:1813(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1564(span) +#: doc/reference/en/ActiveGroonga/Base.html:1566(span) +#: doc/reference/en/ActiveGroonga/Base.html:1567(span) +#: doc/reference/en/ActiveGroonga/Base.html:2036(span) +#: doc/reference/en/ActiveGroonga/Base.html:2038(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) msgid "column_name" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1340(span) -#: doc/reference/en/ActiveGroonga/Base.html:1342(span) -#: doc/reference/en/ActiveGroonga/Base.html:1812(span) -#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1565(span) +#: doc/reference/en/ActiveGroonga/Base.html:1567(span) +#: doc/reference/en/ActiveGroonga/Base.html:2037(span) +#: doc/reference/en/ActiveGroonga/Base.html:2039(span) msgid "@reference_mapping" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1368(span) -msgid "# File 'lib/active_groonga/base.rb', line 52" +#: doc/reference/en/ActiveGroonga/Base.html:1585(pre) +msgid "91 92 93" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Base.html:1593(span) +msgid "# File 'lib/active_groonga/base.rb', line 91" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1371(span) -#: doc/reference/en/ActiveGroonga/Base.html:1404(span) +#: doc/reference/en/ActiveGroonga/Base.html:1596(span) +#: doc/reference/en/ActiveGroonga/Base.html:1629(span) msgid "@@database" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1380(p) +#: doc/reference/en/ActiveGroonga/Base.html:1605(p) msgid "+ () (path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1389(pre) -msgid "184 185 186 187 188" +#: doc/reference/en/ActiveGroonga/Base.html:1614(pre) +msgid "223 224 225 226 227" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1399(span) -msgid "# File 'lib/active_groonga/base.rb', line 184" +#: doc/reference/en/ActiveGroonga/Base.html:1624(span) +msgid "# File 'lib/active_groonga/base.rb', line 223" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1401(span) -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Base.html:1403(span) -#: doc/reference/en/ActiveGroonga/Database.html:255(span) -#: doc/reference/en/ActiveGroonga/Database.html:256(span) +#: doc/reference/en/ActiveGroonga/Base.html:1626(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Base.html:1628(span) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/Database.html:252(span) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:103(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:274(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:293(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:321(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:266(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:285(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:311(span) #: doc/reference/en/ActiveGroonga/Migration.html:116(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:337(span) -#: doc/reference/en/ActiveGroonga/Migration.html:402(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:430(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:123(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:259(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:261(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:281(strong) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:309(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:329(span) +#: doc/reference/en/ActiveGroonga/Migration.html:394(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:420(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:121(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:251(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:271(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:297(span) msgid "path" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1402(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) +#: doc/reference/en/ActiveGroonga/Base.html:1627(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) msgid "Pathname" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1403(span) +#: doc/reference/en/ActiveGroonga/Base.html:1628(span) msgid "@@database_path" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1422(pre) -msgid "143 144 145 146 147 148" +#: doc/reference/en/ActiveGroonga/Base.html:1647(pre) +msgid "182 183 184 185 186 187" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1433(span) -msgid "# File 'lib/active_groonga/base.rb', line 143" +#: doc/reference/en/ActiveGroonga/Base.html:1658(span) +msgid "# File 'lib/active_groonga/base.rb', line 182" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1439(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1664(span) msgid "attribute_names" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) msgid "columns" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1436(span) -#: doc/reference/en/ActiveGroonga/Base.html:1437(span) -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1661(span) +#: doc/reference/en/ActiveGroonga/Base.html:1662(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) msgid "column" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1437(span) +#: doc/reference/en/ActiveGroonga/Base.html:1662(span) msgid "local_name" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1439(span) +#: doc/reference/en/ActiveGroonga/Base.html:1664(span) msgid "define_attribute_methods" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1448(p) -#: doc/reference/en/ActiveGroonga/Base.html:1485(p) -#: doc/reference/en/ActiveGroonga/Base.html:1926(p) +#: doc/reference/en/ActiveGroonga/Base.html:1673(p) +#: doc/reference/en/ActiveGroonga/Base.html:1710(p) +#: doc/reference/en/ActiveGroonga/Base.html:2151(p) msgid "+ () (name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1457(pre) -msgid "168 169 170 171 172 173 174" +#: doc/reference/en/ActiveGroonga/Base.html:1682(pre) +msgid "207 208 209 210 211 212 213" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1469(span) -msgid "# File 'lib/active_groonga/base.rb', line 168" +#: doc/reference/en/ActiveGroonga/Base.html:1694(span) +msgid "# File 'lib/active_groonga/base.rb', line 207" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1472(span) -#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1697(span) +#: doc/reference/en/ActiveGroonga/Base.html:1734(span) msgid "generated_attribute_methods" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1472(span) -#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1697(span) +#: doc/reference/en/ActiveGroonga/Base.html:1734(span) msgid "module_eval" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1473(span) -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1698(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) msgid "define_method" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1494(pre) -msgid "176 177 178 179 180 181 182" +#: doc/reference/en/ActiveGroonga/Base.html:1719(pre) +msgid "215 216 217 218 219 220 221" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1506(span) -msgid "# File 'lib/active_groonga/base.rb', line 176" +#: doc/reference/en/ActiveGroonga/Base.html:1731(span) +msgid "# File 'lib/active_groonga/base.rb', line 215" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1510(span) -#: doc/reference/en/ActiveGroonga/Base.html:1511(span) +#: doc/reference/en/ActiveGroonga/Base.html:1735(span) +#: doc/reference/en/ActiveGroonga/Base.html:1736(span) msgid "new_value" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1522(p) +#: doc/reference/en/ActiveGroonga/Base.html:1747(p) msgid "+ () (new_encoding)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1531(pre) -msgid "118 119 120 121 122 123 124 125" +#: doc/reference/en/ActiveGroonga/Base.html:1756(pre) +msgid "157 158 159 160 161 162 163 164" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1544(span) -msgid "# File 'lib/active_groonga/base.rb', line 118" +#: doc/reference/en/ActiveGroonga/Base.html:1769(span) +msgid "# File 'lib/active_groonga/base.rb', line 157" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1546(span) -#: doc/reference/en/ActiveGroonga/Base.html:1547(span) -#: doc/reference/en/ActiveGroonga/Base.html:1548(span) +#: doc/reference/en/ActiveGroonga/Base.html:1771(span) +#: doc/reference/en/ActiveGroonga/Base.html:1772(span) +#: doc/reference/en/ActiveGroonga/Base.html:1773(span) msgid "new_encoding" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1547(span) -#: doc/reference/en/ActiveGroonga/Base.html:1548(span) -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Base.html:1772(span) +#: doc/reference/en/ActiveGroonga/Base.html:1773(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) msgid "@@encoding" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1549(span) -#: doc/reference/en/ActiveGroonga/Base.html:1552(span) +#: doc/reference/en/ActiveGroonga/Base.html:1774(span) +#: doc/reference/en/ActiveGroonga/Base.html:1777(span) msgid "database_opened" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) msgid "default_options" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1551(span) +#: doc/reference/en/ActiveGroonga/Base.html:1776(span) msgid ":encoding" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1552(span) -#: doc/reference/en/ActiveGroonga/Database.html:199(strong) -#: doc/reference/en/ActiveGroonga/Database.html:388(strong) -#: doc/reference/en/ActiveGroonga/Database.html:406(span) +#: doc/reference/en/ActiveGroonga/Base.html:1777(span) +#: doc/reference/en/ActiveGroonga/Database.html:197(strong) +#: doc/reference/en/ActiveGroonga/Database.html:384(strong) +#: doc/reference/en/ActiveGroonga/Database.html:402(span) msgid "reopen" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1561(p) +#: doc/reference/en/ActiveGroonga/Base.html:1786(p) msgid "+ () (record_id)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1592(pre) -msgid "84 85 86 87 88 89 90 91 92 93 94 95 96" +#: doc/reference/en/ActiveGroonga/Base.html:1817(pre) +msgid "123 124 125 126 127 128 129 130 131 132 133 134 135" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1610(span) -msgid "# File 'lib/active_groonga/base.rb', line 84" +#: doc/reference/en/ActiveGroonga/Base.html:1835(span) +msgid "# File 'lib/active_groonga/base.rb', line 123" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) -#: doc/reference/en/ActiveGroonga/Migration.html:379(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) msgid "respond_to?" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1613(span) -#: doc/reference/en/ActiveGroonga/Base.html:1663(span) +#: doc/reference/en/ActiveGroonga/Base.html:1838(span) +#: doc/reference/en/ActiveGroonga/Base.html:1888(span) msgid ":record_id" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1614(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1777(span) -#: doc/reference/en/ActiveGroonga/Base.html:2191(span) -#: doc/reference/en/ActiveGroonga/Base.html:2281(span) -#: doc/reference/en/ActiveGroonga/Base.html:2345(span) +#: doc/reference/en/ActiveGroonga/Base.html:1839(span) +#: doc/reference/en/ActiveGroonga/Base.html:1889(span) +#: doc/reference/en/ActiveGroonga/Base.html:2002(span) +#: doc/reference/en/ActiveGroonga/Base.html:2416(span) +#: doc/reference/en/ActiveGroonga/Base.html:2506(span) +#: doc/reference/en/ActiveGroonga/Base.html:2570(span) msgid "support_key?" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1615(span) +#: doc/reference/en/ActiveGroonga/Base.html:1840(span) msgid "not" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1617(span) -#: doc/reference/en/ActiveGroonga/Base.html:1665(span) +#: doc/reference/en/ActiveGroonga/Base.html:1842(span) +#: doc/reference/en/ActiveGroonga/Base.html:1890(span) msgid "begin" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1618(span) -#: doc/reference/en/ActiveGroonga/Base.html:1666(span) -msgid "Integer" -msgstr "" - -#: doc/reference/en/ActiveGroonga/Base.html:1619(span) -#: doc/reference/en/ActiveGroonga/Base.html:1667(span) +#: doc/reference/en/ActiveGroonga/Base.html:1844(span) +#: doc/reference/en/ActiveGroonga/Base.html:1892(span) msgid "rescue" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1619(span) -#: doc/reference/en/ActiveGroonga/Base.html:1667(span) +#: doc/reference/en/ActiveGroonga/Base.html:1844(span) +#: doc/reference/en/ActiveGroonga/Base.html:1892(span) msgid "ArgumentError" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1632(p) +#: doc/reference/en/ActiveGroonga/Base.html:1857(p) msgid "+ () (record_id, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1641(pre) -msgid "69 70 71 72 73 74 75 76 77 78 79 80 81 82" +#: doc/reference/en/ActiveGroonga/Base.html:1866(pre) +msgid "108 109 110 111 112 113 114 115 116 117 118 119 120 121" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1660(span) -msgid "# File 'lib/active_groonga/base.rb', line 69" +#: doc/reference/en/ActiveGroonga/Base.html:1885(span) +msgid "# File 'lib/active_groonga/base.rb', line 108" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1692(pre) -msgid "202 203 204" +#: doc/reference/en/ActiveGroonga/Base.html:1917(pre) +msgid "241 242 243" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1700(span) -msgid "# File 'lib/active_groonga/base.rb', line 202" +#: doc/reference/en/ActiveGroonga/Base.html:1925(span) +msgid "# File 'lib/active_groonga/base.rb', line 241" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1703(span) +#: doc/reference/en/ActiveGroonga/Base.html:1928(span) msgid ":activegroonga" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1721(pre) -msgid "150 151 152 153 154 155 156" +#: doc/reference/en/ActiveGroonga/Base.html:1946(pre) +msgid "189 190 191 192 193 194 195" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1733(span) -msgid "# File 'lib/active_groonga/base.rb', line 150" +#: doc/reference/en/ActiveGroonga/Base.html:1958(span) +msgid "# File 'lib/active_groonga/base.rb', line 189" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1737(span) +#: doc/reference/en/ActiveGroonga/Base.html:1962(span) msgid "columns_info" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1738(span) +#: doc/reference/en/ActiveGroonga/Base.html:1963(span) msgid "\"#{column.local_name}: #{column.range.name}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1740(span) +#: doc/reference/en/ActiveGroonga/Base.html:1965(span) msgid "\"#{name}(#{columns_info.join(', ')})\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1749(p) +#: doc/reference/en/ActiveGroonga/Base.html:1974(p) msgid "+ () (record)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1758(pre) -msgid "158 159 160 161 162 163 164 165 166" +#: doc/reference/en/ActiveGroonga/Base.html:1983(pre) +msgid "197 198 199 200 201 202 203 204 205" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1772(span) -msgid "# File 'lib/active_groonga/base.rb', line 158" +#: doc/reference/en/ActiveGroonga/Base.html:1997(span) +msgid "# File 'lib/active_groonga/base.rb', line 197" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1776(span) +#: doc/reference/en/ActiveGroonga/Base.html:2001(span) msgid "\"@id\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1778(span) +#: doc/reference/en/ActiveGroonga/Base.html:2003(span) msgid "\"@key\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1790(p) +#: doc/reference/en/ActiveGroonga/Base.html:2015(p) msgid "+ () (column_name, klass)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1799(pre) -msgid "190 191 192 193 194" +#: doc/reference/en/ActiveGroonga/Base.html:2024(pre) +msgid "229 230 231 232 233" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1809(span) -msgid "# File 'lib/active_groonga/base.rb', line 190" +#: doc/reference/en/ActiveGroonga/Base.html:2034(span) +msgid "# File 'lib/active_groonga/base.rb', line 229" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1832(pre) -msgid "98 99 100 101 102 103 104" +#: doc/reference/en/ActiveGroonga/Base.html:2057(pre) +msgid "137 138 139 140 141 142 143" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1844(span) -msgid "# File 'lib/active_groonga/base.rb', line 98" +#: doc/reference/en/ActiveGroonga/Base.html:2069(span) +msgid "# File 'lib/active_groonga/base.rb', line 137" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1848(span) -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:170(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:476(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:504(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:166(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:355(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:466(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:492(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) msgid "records" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:648(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) msgid ":expression" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1851(span) +#: doc/reference/en/ActiveGroonga/Base.html:2076(span) #: doc/reference/en/ActiveGroonga/ResultSet.html:118(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:368(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:390(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:418(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:384(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:410(span) msgid "expression" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1869(pre) -msgid "139 140 141" +#: doc/reference/en/ActiveGroonga/Base.html:2094(pre) +msgid "178 179 180" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1877(span) -msgid "# File 'lib/active_groonga/base.rb', line 139" +#: doc/reference/en/ActiveGroonga/Base.html:2102(span) +msgid "# File 'lib/active_groonga/base.rb', line 178" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1889(p) +#: doc/reference/en/ActiveGroonga/Base.html:2114(p) msgid "+ () (name = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1898(pre) -msgid "127 128 129 130 131 132 133" +#: doc/reference/en/ActiveGroonga/Base.html:2123(pre) +msgid "166 167 168 169 170 171 172" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1910(span) -msgid "# File 'lib/active_groonga/base.rb', line 127" +#: doc/reference/en/ActiveGroonga/Base.html:2135(span) +msgid "# File 'lib/active_groonga/base.rb', line 166" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1914(span) -#: doc/reference/en/ActiveGroonga/Base.html:1946(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) msgid "@table_name" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1914(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) msgid "model_name" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1914(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) msgid "plural" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1935(pre) -msgid "135 136 137" +#: doc/reference/en/ActiveGroonga/Base.html:2160(pre) +msgid "174 175 176" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1943(span) -msgid "# File 'lib/active_groonga/base.rb', line 135" +#: doc/reference/en/ActiveGroonga/Base.html:2168(span) +msgid "# File 'lib/active_groonga/base.rb', line 174" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1961(p) +#: doc/reference/en/ActiveGroonga/Base.html:2186(p) msgid "- () (other)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1970(pre) -msgid "281 282 283" +#: doc/reference/en/ActiveGroonga/Base.html:2195(pre) +msgid "329 330 331" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1978(span) -msgid "# File 'lib/active_groonga/base.rb', line 281" +#: doc/reference/en/ActiveGroonga/Base.html:2203(span) +msgid "# File 'lib/active_groonga/base.rb', line 329" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1980(span) -#: doc/reference/en/ActiveGroonga/Base.html:1981(span) +#: doc/reference/en/ActiveGroonga/Base.html:2205(span) +#: doc/reference/en/ActiveGroonga/Base.html:2206(span) msgid "other" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:1999(pre) -msgid "271 272 273" +#: doc/reference/en/ActiveGroonga/Base.html:2224(pre) +msgid "319 320 321" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2007(span) -msgid "# File 'lib/active_groonga/base.rb', line 271" +#: doc/reference/en/ActiveGroonga/Base.html:2232(span) +msgid "# File 'lib/active_groonga/base.rb', line 319" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2028(pre) -msgid "275 276 277 278 279" +#: doc/reference/en/ActiveGroonga/Base.html:2253(pre) +msgid "323 324 325 326 327" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2038(span) -msgid "# File 'lib/active_groonga/base.rb', line 275" +#: doc/reference/en/ActiveGroonga/Base.html:2263(span) +msgid "# File 'lib/active_groonga/base.rb', line 323" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2042(span) +#: doc/reference/en/ActiveGroonga/Base.html:2267(span) msgid "\"#{key}=\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2061(pre) -msgid "285 286 287" +#: doc/reference/en/ActiveGroonga/Base.html:2286(pre) +msgid "333 334 335" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2069(span) -msgid "# File 'lib/active_groonga/base.rb', line 285" +#: doc/reference/en/ActiveGroonga/Base.html:2294(span) +msgid "# File 'lib/active_groonga/base.rb', line 333" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2081(p) -#: doc/reference/en/ActiveGroonga/Base.html:2292(p) +#: doc/reference/en/ActiveGroonga/Base.html:2306(p) +#: doc/reference/en/ActiveGroonga/Base.html:2517(p) msgid "- () (name)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2112(pre) -msgid "229 230 231" +#: doc/reference/en/ActiveGroonga/Base.html:2337(pre) +msgid "277 278 279" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2120(span) -msgid "# File 'lib/active_groonga/base.rb', line 229" +#: doc/reference/en/ActiveGroonga/Base.html:2345(span) +msgid "# File 'lib/active_groonga/base.rb', line 277" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2141(pre) -msgid "233 234 235" +#: doc/reference/en/ActiveGroonga/Base.html:2366(pre) +msgid "281 282 283" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2149(span) -msgid "# File 'lib/active_groonga/base.rb', line 233" +#: doc/reference/en/ActiveGroonga/Base.html:2374(span) +msgid "# File 'lib/active_groonga/base.rb', line 281" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2170(pre) -msgid "297 298 299 300 301 302 303 304 305 306 307 308" +#: doc/reference/en/ActiveGroonga/Base.html:2395(pre) +msgid "345 346 347 348 349 350 351 352 353 354 355 356" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2187(span) -msgid "# File 'lib/active_groonga/base.rb', line 297" +#: doc/reference/en/ActiveGroonga/Base.html:2412(span) +msgid "# File 'lib/active_groonga/base.rb', line 345" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2190(span) -#: doc/reference/en/ActiveGroonga/Base.html:2192(span) -#: doc/reference/en/ActiveGroonga/Base.html:2194(span) -#: doc/reference/en/ActiveGroonga/Base.html:2197(span) +#: doc/reference/en/ActiveGroonga/Base.html:2415(span) +#: doc/reference/en/ActiveGroonga/Base.html:2417(span) +#: doc/reference/en/ActiveGroonga/Base.html:2419(span) +#: doc/reference/en/ActiveGroonga/Base.html:2422(span) msgid "inspected_attributes" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2192(span) +#: doc/reference/en/ActiveGroonga/Base.html:2417(span) msgid "\"key: #{key}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2194(span) +#: doc/reference/en/ActiveGroonga/Base.html:2419(span) msgid "\"id: #{id}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2197(span) +#: doc/reference/en/ActiveGroonga/Base.html:2422(span) msgid "\"#{key}: #{value.inspect}\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2199(span) +#: doc/reference/en/ActiveGroonga/Base.html:2424(span) msgid "\"\\#<#{self.class.name} #{inspected_attributes.join(', ')}>\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2217(pre) -msgid "237 238 239" +#: doc/reference/en/ActiveGroonga/Base.html:2442(pre) +msgid "285 286 287" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2225(span) -msgid "# File 'lib/active_groonga/base.rb', line 237" +#: doc/reference/en/ActiveGroonga/Base.html:2450(span) +msgid "# File 'lib/active_groonga/base.rb', line 285" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2237(p) -#: doc/reference/en/ActiveGroonga/ResultSet.html:558(p) +#: doc/reference/en/ActiveGroonga/Base.html:2462(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:546(p) msgid "- () (key)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2251(h3) +#: doc/reference/en/ActiveGroonga/Base.html:2476(h3) msgid "Raises:" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2257(span) +#: doc/reference/en/ActiveGroonga/Base.html:2482(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:760(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:925(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1004(span) msgid "()" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2268(pre) -msgid "241 242 243 244 245" +#: doc/reference/en/ActiveGroonga/Base.html:2493(pre) +msgid "289 290 291 292 293" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2278(span) -msgid "# File 'lib/active_groonga/base.rb', line 241" +#: doc/reference/en/ActiveGroonga/Base.html:2503(span) +msgid "# File 'lib/active_groonga/base.rb', line 289" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2301(pre) -msgid "289 290 291" +#: doc/reference/en/ActiveGroonga/Base.html:2526(pre) +msgid "337 338 339" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2309(span) -msgid "# File 'lib/active_groonga/base.rb', line 289" +#: doc/reference/en/ActiveGroonga/Base.html:2534(span) +msgid "# File 'lib/active_groonga/base.rb', line 337" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2330(pre) -msgid "255 256 257 258 259 260 261" +#: doc/reference/en/ActiveGroonga/Base.html:2555(pre) +msgid "303 304 305 306 307 308 309" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2342(span) -msgid "# File 'lib/active_groonga/base.rb', line 255" +#: doc/reference/en/ActiveGroonga/Base.html:2567(span) +msgid "# File 'lib/active_groonga/base.rb', line 303" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2367(pre) -msgid "263 264 265" +#: doc/reference/en/ActiveGroonga/Base.html:2592(pre) +msgid "311 312 313" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2375(span) -msgid "# File 'lib/active_groonga/base.rb', line 263" +#: doc/reference/en/ActiveGroonga/Base.html:2600(span) +msgid "# File 'lib/active_groonga/base.rb', line 311" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2396(pre) -msgid "247 248 249" +#: doc/reference/en/ActiveGroonga/Base.html:2621(pre) +msgid "295 296 297" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2404(span) -msgid "# File 'lib/active_groonga/base.rb', line 247" +#: doc/reference/en/ActiveGroonga/Base.html:2629(span) +msgid "# File 'lib/active_groonga/base.rb', line 295" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2416(p) +#: doc/reference/en/ActiveGroonga/Base.html:2641(p) msgid "- () (score)" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2425(pre) -msgid "251 252 253" +#: doc/reference/en/ActiveGroonga/Base.html:2650(pre) +msgid "299 300 301" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2433(span) -msgid "# File 'lib/active_groonga/base.rb', line 251" +#: doc/reference/en/ActiveGroonga/Base.html:2658(span) +msgid "# File 'lib/active_groonga/base.rb', line 299" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2454(pre) -msgid "310 311 312" +#: doc/reference/en/ActiveGroonga/Base.html:2679(pre) +msgid "358 359 360" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2462(span) -msgid "# File 'lib/active_groonga/base.rb', line 310" +#: doc/reference/en/ActiveGroonga/Base.html:2687(span) +msgid "# File 'lib/active_groonga/base.rb', line 358" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2483(pre) -msgid "267 268 269" +#: doc/reference/en/ActiveGroonga/Base.html:2708(pre) +msgid "315 316 317" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2491(span) -msgid "# File 'lib/active_groonga/base.rb', line 267" +#: doc/reference/en/ActiveGroonga/Base.html:2716(span) +msgid "# File 'lib/active_groonga/base.rb', line 315" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2512(pre) -msgid "293 294 295" +#: doc/reference/en/ActiveGroonga/Base.html:2737(pre) +msgid "341 342 343" msgstr "" -#: doc/reference/en/ActiveGroonga/Base.html:2520(span) -msgid "# File 'lib/active_groonga/base.rb', line 293" +#: doc/reference/en/ActiveGroonga/Base.html:2745(span) +msgid "# File 'lib/active_groonga/base.rb', line 341" msgstr "" #: doc/reference/en/ActiveGroonga/Migrator.html:6(title) @@ -8476,8 +8929,8 @@ msgid "lib/active_groonga/migrator.rb" msgstr "" #: doc/reference/en/ActiveGroonga/Migrator.html:132(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:352(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:391(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:348(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:387(span) msgid "down?" msgstr "" @@ -8485,237 +8938,237 @@ msgstr "" msgid "- (Migrator) (direction, migrations_path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:169(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:168(p) msgid "A new instance of Migrator." msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:199(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:432(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:193(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(strong) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) -#: doc/reference/en/ActiveGroonga/Migration.html:257(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:556(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:589(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:197(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:428(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:187(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:371(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) +#: doc/reference/en/ActiveGroonga/Migration.html:251(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:544(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) msgid "migrate" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:199(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:197(a) msgid "- (Object) (target_version = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:220(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:497(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:514(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:515(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:170(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:317(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:338(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:218(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:493(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:510(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:511(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:168(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:313(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:334(span) msgid "migrated_versions" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:241(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:470(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:480(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:526(strong) -#: doc/reference/en/ActiveGroonga/Migrator.html:565(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:239(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:522(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:561(span) msgid "up?" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:266(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:264(p) msgid "" "- () " "(direction, migrations_path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:275(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:272(p) msgid "A new instance of Migrator" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:286(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:282(pre) msgid "92 93 94 95 96 97 98" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:294(span) msgid "# File 'lib/active_groonga/migrator.rb', line 92" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:301(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) -#: doc/reference/en/ActiveGroonga/Migration.html:589(span) -#: doc/reference/en/ActiveGroonga/Migration.html:591(span) -#: doc/reference/en/ActiveGroonga/Migration.html:598(span) -#: doc/reference/en/ActiveGroonga/Migration.html:600(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:297(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) +#: doc/reference/en/ActiveGroonga/Migration.html:579(span) +#: doc/reference/en/ActiveGroonga/Migration.html:586(span) +#: doc/reference/en/ActiveGroonga/Migration.html:588(span) msgid "direction" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:302(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) msgid "migrations_path" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:301(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:392(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:566(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:297(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:388(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:562(span) msgid "@direction" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:302(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:303(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:304(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) msgid "@migrations_path" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:304(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) msgid "Pathanme" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:330(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:326(pre) msgid "130 131 132" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:338(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:334(span) msgid "# File 'lib/active_groonga/migrator.rb', line 130" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:381(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:377(pre) msgid "126 127 128" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:389(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:385(span) msgid "# File 'lib/active_groonga/migrator.rb', line 126" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:392(span) -#: doc/reference/en/ActiveGroonga/Migration.html:594(span) -#: doc/reference/en/ActiveGroonga/Migration.html:603(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:388(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Migration.html:591(span) msgid ":down" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:410(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:406(pre) msgid "138 139 140" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:418(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:414(span) msgid "# File 'lib/active_groonga/migrator.rb', line 138" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:421(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) msgid "@management_table" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:430(p) +#: doc/reference/en/ActiveGroonga/Migrator.html:426(p) msgid "- () (target_version = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:439(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:435(pre) msgid "" "100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 " "119 120" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:461(span) msgid "# File 'lib/active_groonga/migrator.rb', line 100" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) msgid "target_version" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:464(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) msgid "_current_version" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) msgid "migration_entries" msgstr "" +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) #: doc/reference/en/ActiveGroonga/Migrator.html:469(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) #: doc/reference/en/ActiveGroonga/Migrator.html:481(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) msgid "entry" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:535(span) msgid "next" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) msgid "<=" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) msgid "logger" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) msgid "info" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) msgid "\"Migrating to #{entry.name} (#{entry.version})\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) msgid "active_groonga_schema" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:478(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:401(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/Migration.html:335(span) -#: doc/reference/en/ActiveGroonga/Migration.html:338(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:330(span) msgid "schema" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:483(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:191(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:354(strong) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:372(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:189(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:350(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) msgid "remove_version" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:485(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:481(span) msgid "break" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:504(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:500(pre) msgid "134 135 136" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:512(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:508(span) msgid "# File 'lib/active_groonga/migrator.rb', line 134" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:555(pre) +#: doc/reference/en/ActiveGroonga/Migrator.html:551(pre) msgid "122 123 124" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:563(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:559(span) msgid "# File 'lib/active_groonga/migrator.rb', line 122" msgstr "" -#: doc/reference/en/ActiveGroonga/Migrator.html:566(span) -#: doc/reference/en/ActiveGroonga/Migration.html:592(span) -#: doc/reference/en/ActiveGroonga/Migration.html:601(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:562(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:589(span) msgid ":up" msgstr "" @@ -8750,18 +9203,18 @@ msgid "lib/active_groonga/database.rb" msgstr "" #: doc/reference/en/ActiveGroonga/Database.html:111(strong) -#: doc/reference/en/ActiveGroonga/Database.html:275(strong) -#: doc/reference/en/ActiveGroonga/Database.html:294(span) -#: doc/reference/en/ActiveGroonga/Database.html:296(span) -#: doc/reference/en/ActiveGroonga/Database.html:407(span) +#: doc/reference/en/ActiveGroonga/Database.html:271(strong) +#: doc/reference/en/ActiveGroonga/Database.html:290(span) +#: doc/reference/en/ActiveGroonga/Database.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:403(span) msgid "close" msgstr "" #: doc/reference/en/ActiveGroonga/Database.html:132(strong) -#: doc/reference/en/ActiveGroonga/Database.html:308(strong) -#: doc/reference/en/ActiveGroonga/Database.html:333(span) -#: doc/reference/en/ActiveGroonga/Database.html:374(span) -#: doc/reference/en/ActiveGroonga/Database.html:408(span) +#: doc/reference/en/ActiveGroonga/Database.html:304(strong) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) +#: doc/reference/en/ActiveGroonga/Database.html:404(span) msgid "ensure_available" msgstr "" @@ -8769,93 +9222,93 @@ msgstr "" msgid "- (Database) (path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:169(p) +#: doc/reference/en/ActiveGroonga/Database.html:168(p) msgid "A new instance of Database." msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:178(strong) -#: doc/reference/en/ActiveGroonga/Database.html:353(strong) -#: doc/reference/en/ActiveGroonga/Database.html:373(span) -#: doc/reference/en/ActiveGroonga/Database.html:376(span) +#: doc/reference/en/ActiveGroonga/Database.html:176(strong) +#: doc/reference/en/ActiveGroonga/Database.html:349(strong) +#: doc/reference/en/ActiveGroonga/Database.html:369(span) +#: doc/reference/en/ActiveGroonga/Database.html:372(span) msgid "remove" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:224(p) +#: doc/reference/en/ActiveGroonga/Database.html:222(p) msgid "" "- () " "(path)" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:233(p) +#: doc/reference/en/ActiveGroonga/Database.html:230(p) msgid "A new instance of Database" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:244(pre) +#: doc/reference/en/ActiveGroonga/Database.html:240(pre) msgid "20 21 22 23" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:253(span) +#: doc/reference/en/ActiveGroonga/Database.html:249(span) msgid "# File 'lib/active_groonga/database.rb', line 20" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:256(span) +#: doc/reference/en/ActiveGroonga/Database.html:252(span) +#: doc/reference/en/ActiveGroonga/Database.html:331(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:335(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:339(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Database.html:374(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:274(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:322(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/Migration.html:337(span) -#: doc/reference/en/ActiveGroonga/Migration.html:431(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:261(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:310(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:266(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:312(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/Migration.html:329(span) +#: doc/reference/en/ActiveGroonga/Migration.html:421(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:251(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:298(span) msgid "@path" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:257(span) -#: doc/reference/en/ActiveGroonga/Database.html:295(span) -#: doc/reference/en/ActiveGroonga/Database.html:296(span) -#: doc/reference/en/ActiveGroonga/Database.html:297(span) -#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Database.html:253(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:293(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Database.html:340(span) -#: doc/reference/en/ActiveGroonga/Database.html:375(span) -#: doc/reference/en/ActiveGroonga/Database.html:376(span) -#: doc/reference/en/ActiveGroonga/Database.html:377(span) +#: doc/reference/en/ActiveGroonga/Database.html:371(span) +#: doc/reference/en/ActiveGroonga/Database.html:372(span) +#: doc/reference/en/ActiveGroonga/Database.html:373(span) msgid "@database" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:288(span) msgid "# File 'lib/active_groonga/database.rb', line 44" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:315(pre) +#: doc/reference/en/ActiveGroonga/Database.html:311(pre) msgid "25 26 27 28 29 30 31 32 33 34 35" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:331(span) +#: doc/reference/en/ActiveGroonga/Database.html:327(span) msgid "# File 'lib/active_groonga/database.rb', line 25" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:339(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) msgid "mkdir_p" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:340(span) +#: doc/reference/en/ActiveGroonga/Database.html:336(span) msgid ":path" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:371(span) +#: doc/reference/en/ActiveGroonga/Database.html:367(span) msgid "# File 'lib/active_groonga/database.rb', line 37" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:395(pre) +#: doc/reference/en/ActiveGroonga/Database.html:391(pre) msgid "50 51 52 53" msgstr "" -#: doc/reference/en/ActiveGroonga/Database.html:404(span) +#: doc/reference/en/ActiveGroonga/Database.html:400(span) msgid "# File 'lib/active_groonga/database.rb', line 50" msgstr "" @@ -8867,91 +9320,91 @@ msgstr "" msgid "Class: ActiveGroonga::MigrationEntry" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:120(p) -#: doc/reference/en/ActiveGroonga/Migration.html:133(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:140(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:119(p) +#: doc/reference/en/ActiveGroonga/Migration.html:132(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:137(p) msgid "Returns the value of attribute path." msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:146(p) -#: doc/reference/en/ActiveGroonga/Migration.html:159(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:166(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:143(p) +#: doc/reference/en/ActiveGroonga/Migration.html:156(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:161(p) msgid "Returns the value of attribute version." msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:168(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:164(a) msgid "- (MigrationEntry) (migration, version, path)" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:184(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:179(p) msgid "A new instance of MigrationEntry." msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:193(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:187(a) msgid "- (Object) (direction, schema)" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:239(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:233(p) msgid "" "- () " "(migration, version, path)" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:248(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:241(p) msgid "A new instance of MigrationEntry" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:259(pre) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:251(pre) msgid "28 29 30 31 32" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:269(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:261(span) msgid "# File 'lib/active_groonga/migrator.rb', line 28" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:271(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:272(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:403(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) msgid "migration" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:272(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:402(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:432(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:420(span) msgid "@migration" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:300(p) -#: doc/reference/en/ActiveGroonga/Migration.html:409(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:288(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:291(p) +#: doc/reference/en/ActiveGroonga/Migration.html:400(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:277(p) msgid "Returns the value of attribute path" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:319(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:362(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:309(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:350(span) msgid "# File 'lib/active_groonga/migrator.rb', line 27" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:343(p) -#: doc/reference/en/ActiveGroonga/Migration.html:452(p) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:331(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:332(p) +#: doc/reference/en/ActiveGroonga/Migration.html:441(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:318(p) msgid "Returns the value of attribute version" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:381(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:369(p) msgid "- () (direction, schema)" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(pre) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:378(pre) msgid "38 39 40 41" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:399(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:387(span) msgid "# File 'lib/active_groonga/migrator.rb', line 38" msgstr "" -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:429(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:417(span) msgid "# File 'lib/active_groonga/migrator.rb', line 34" msgstr "" @@ -8975,113 +9428,113 @@ msgstr "" msgid "- (SchemaManagementTable) " msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:161(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:160(p) msgid "A new instance of SchemaManagementTable." msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:191(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:212(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:189(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:210(a) msgid "- (Object) (version)" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:237(p) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:245(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:235(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:243(p) msgid "" "- () " "" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:246(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:243(p) msgid "A new instance of SchemaManagementTable" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:257(pre) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:253(pre) msgid "47 48 49 50" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:262(span) msgid "# File 'lib/active_groonga/migrator.rb', line 47" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:269(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:265(span) msgid "ensure_table" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:270(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) msgid "TABLE_NAME" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:303(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) msgid "# File 'lib/active_groonga/migrator.rb', line 52" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) msgid "@current_version" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) msgid "last" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:306(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) #: doc/reference/en/ActiveGroonga/VERSION.html:94(span) msgid "0" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:324(pre) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:320(pre) msgid "56 57 58 59 60 61 62" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:332(span) msgid "# File 'lib/active_groonga/migrator.rb', line 56" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:339(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) msgid "@migrated_versions" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:340(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) msgid "migrated_at" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:341(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:337(span) msgid "sort_by" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:352(p) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:383(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:348(p) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:379(p) msgid "- () (version)" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:361(pre) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:357(pre) msgid "69 70 71 72" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:370(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:366(span) msgid "# File 'lib/active_groonga/migrator.rb', line 69" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:374(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:405(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:370(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:401(span) msgid "clear_cache" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:392(pre) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:388(pre) msgid "64 65 66 67" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:401(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:397(span) msgid "# File 'lib/active_groonga/migrator.rb', line 64" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) msgid "add" msgstr "" -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:404(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) msgid ":migrated_at" msgstr "" @@ -9177,11 +9630,11 @@ msgstr "" msgid "ActiveGroonga::Error" msgstr "" -#: doc/reference/en/ActiveGroonga/Error.html:100(p) +#: doc/reference/en/ActiveGroonga/Error.html:99(p) msgid "Generic ActiveGroonga exception class." msgstr "" -#: doc/reference/en/ActiveGroonga/Error.html:110(p) +#: doc/reference/en/ActiveGroonga/Error.html:108(p) msgid "" ", , (version, path, schema)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:248(p) +#: doc/reference/en/ActiveGroonga/Migration.html:243(p) msgid "A new instance of Migration." msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:257(a) +#: doc/reference/en/ActiveGroonga/Migration.html:251(a) msgid "- (Object) (direction)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:303(p) +#: doc/reference/en/ActiveGroonga/Migration.html:297(p) msgid "" "- () " "(version, path, schema)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:312(p) +#: doc/reference/en/ActiveGroonga/Migration.html:305(p) msgid "A new instance of Migration" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:323(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:315(pre) msgid "35 36 37 38 39" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:333(span) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) msgid "# File 'lib/active_groonga/migration.rb', line 35" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:348(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:340(h2) msgid "Dynamic Method Handling" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:350(tt) -#: doc/reference/en/ActiveGroonga/Migration.html:357(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:378(span) +#: doc/reference/en/ActiveGroonga/Migration.html:342(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:349(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) msgid "method_missing" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:349(p) +#: doc/reference/en/ActiveGroonga/Migration.html:341(p) msgid "This class handles dynamic methods through the method" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:357(span) +#: doc/reference/en/ActiveGroonga/Migration.html:349(span) msgid "(private)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:355(p) +#: doc/reference/en/ActiveGroonga/Migration.html:347(p) msgid "" "- () (name, *args, &block) " "" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:364(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:356(pre) msgid "73 74 75 76 77 78 79" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:376(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) msgid "# File 'lib/active_groonga/migration.rb', line 73" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:428(span) -#: doc/reference/en/ActiveGroonga/Migration.html:471(span) +#: doc/reference/en/ActiveGroonga/Migration.html:418(span) +#: doc/reference/en/ActiveGroonga/Migration.html:459(span) msgid "# File 'lib/active_groonga/migration.rb', line 34" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:499(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:487(pre) msgid "29 30 31" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:507(span) +#: doc/reference/en/ActiveGroonga/Migration.html:495(span) msgid "# File 'lib/active_groonga/migration.rb', line 29" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) msgid "split" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:510(span) +#: doc/reference/en/ActiveGroonga/Migration.html:498(span) msgid "/::/" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:536(span) +#: doc/reference/en/ActiveGroonga/Migration.html:524(span) msgid "# File 'lib/active_groonga/migration.rb', line 25" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:539(span) +#: doc/reference/en/ActiveGroonga/Migration.html:527(span) msgid "@@migrations" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:554(p) +#: doc/reference/en/ActiveGroonga/Migration.html:542(p) msgid "- () (direction)" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:563(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:551(pre) msgid "45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:587(span) +#: doc/reference/en/ActiveGroonga/Migration.html:575(span) msgid "# File 'lib/active_groonga/migration.rb', line 45" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:593(span) -#: doc/reference/en/ActiveGroonga/Migration.html:595(span) -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:581(span) +#: doc/reference/en/ActiveGroonga/Migration.html:583(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) msgid "report" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:593(span) +#: doc/reference/en/ActiveGroonga/Migration.html:581(span) msgid "\"migrating\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:595(span) +#: doc/reference/en/ActiveGroonga/Migration.html:583(span) msgid "\"reverting\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) msgid "time" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) msgid "Benchmark" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:597(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) msgid "measure" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) msgid "\"migrated (%.4fs)\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) msgid "%" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:602(span) -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:590(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) msgid "real" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:604(span) +#: doc/reference/en/ActiveGroonga/Migration.html:592(span) msgid "\"reverted (%.4fs)\"" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:624(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:612(pre) msgid "41 42 43" msgstr "" -#: doc/reference/en/ActiveGroonga/Migration.html:632(span) +#: doc/reference/en/ActiveGroonga/Migration.html:620(span) msgid "# File 'lib/active_groonga/migration.rb', line 41" msgstr "" @@ -9383,19 +9836,19 @@ msgstr "" msgid "lib/active_groonga/callbacks.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/Callbacks.html:157(pre) +#: doc/reference/en/ActiveGroonga/Callbacks.html:153(pre) msgid "28 29 30" msgstr "" -#: doc/reference/en/ActiveGroonga/Callbacks.html:165(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:161(span) msgid "# File 'lib/active_groonga/callbacks.rb', line 28" msgstr "" -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) msgid "run_callbacks" msgstr "" -#: doc/reference/en/ActiveGroonga/Callbacks.html:168(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) msgid ":destory" msgstr "" @@ -9413,8 +9866,8 @@ msgid "- (Object) (sql, name = nil)" msgstr "" #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:132(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:327(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:344(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:323(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:340(span) msgid "disable_referential_integrity" msgstr "" @@ -9422,149 +9875,149 @@ msgstr "" msgid "- (ConnectionMock) " msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:169(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:168(p) msgid "A new instance of ConnectionMock." msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:178(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:356(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:176(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:352(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) msgid "insert_fixture" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:178(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:176(a) msgid "- (Object) (fixture, table_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:199(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:403(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:421(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:197(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:399(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) msgid "quote_table_name" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:199(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:197(a) msgid "- (Object) (table_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:220(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:434(strong) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:451(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:218(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:430(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) msgid "transaction" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:220(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:218(a) msgid "- (Object) (options = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:254(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:251(p) msgid "A new instance of ConnectionMock" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:265(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:261(pre) msgid "55 56 57" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:273(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:269(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 55" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:276(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:314(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:272(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:310(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) msgid "@last_quoted_table_name" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:292(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:288(p) msgid "- () (sql, name = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:301(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:297(pre) msgid "72 73 74 75 76" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 72" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:313(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) msgid "sql" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:315(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) msgid "truncate" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:334(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:330(pre) msgid "59 60 61" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:342(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:338(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 59" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:354(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:350(p) msgid "- () (fixture, table_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:363(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:359(pre) msgid "78 79 80 81 82 83 84 85 86 87 88 89" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:376(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 78" msgstr "" +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) msgid "fixture" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:383(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:422(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) msgid "groonga_table_name" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) msgid "row" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:386(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) msgid "to_hash" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) msgid "model_class" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:392(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:388(span) msgid "primary_key" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:401(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:397(p) msgid "- () (table_name)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:410(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:406(pre) msgid "67 68 69 70" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:419(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:415(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 67" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:432(p) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:428(p) msgid "- () (options = nil)" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(pre) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:437(pre) msgid "63 64 65" msgstr "" -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:449(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:445(span) msgid "# File 'lib/active_groonga/fixtures.rb', line 63" msgstr "" @@ -9581,217 +10034,478 @@ msgstr "" msgid "Enumerable" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:135(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:134(p) msgid "Returns the value of attribute expression." msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:144(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:433(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:461(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:142(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:425(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:451(span) msgid "n_records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:161(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:158(p) msgid "Returns the value of attribute n_records." msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:187(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:182(p) msgid "Returns the value of attribute records." msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:231(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:560(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:225(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:548(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) msgid "group" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:252(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:246(a) msgid "- (ResultSet) (records, klass, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:268(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:261(p) msgid "A new instance of ResultSet." msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:277(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:589(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:269(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:578(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:580(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:598(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:697(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) msgid "paginate" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:277(a) -msgid "- (Object) (sort_keys, options = {})" +#: doc/reference/en/ActiveGroonga/ResultSet.html:269(a) +msgid "- (Object) (sort_keys = nil, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:298(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:628(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:282(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:587(p) +msgid "Paginates the result set." +msgstr "??????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:290(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:823(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:825(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:843(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:941(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) msgid "sort" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:298(a) -msgid "- (Object) (keys, options = {})" +#: doc/reference/en/ActiveGroonga/ResultSet.html:290(a) +msgid "- (Object) (keys = nil, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:324(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:303(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:832(p) +msgid "Sorts the result set." +msgstr "?????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:316(p) msgid "" "- () " "(records, klass, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:333(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:324(p) msgid "A new instance of ResultSet" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:344(pre) -msgid "21 22 23 24 25 26 27 28 29 30 31" +#: doc/reference/en/ActiveGroonga/ResultSet.html:334(pre) +msgid "21 22 23 24 25 26 27 28 29 30 31 32 33" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:352(span) msgid "# File 'lib/active_groonga/result_set.rb', line 21" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:368(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:505(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:355(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:493(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:533(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) msgid "@records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) -#: doc/reference/en/ActiveGroonga/Vector.html:391(span) -#: doc/reference/en/ActiveGroonga/Vector.html:441(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:356(span) +#: doc/reference/en/ActiveGroonga/Vector.html:381(span) +#: doc/reference/en/ActiveGroonga/Vector.html:429(span) msgid "@klass" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:365(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:357(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) msgid "@groups" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:366(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:367(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:368(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:419(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:648(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:358(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:360(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:411(span) msgid "@expression" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:462(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:452(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) msgid "@n_records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:370(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:362(span) msgid ":n_records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:371(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) +msgid "@default_sort_keys" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:363(span) +msgid ":default_sort_keys" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +msgid "@default_limit" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:364(span) +msgid ":default_limit" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:365(span) msgid "compute_n_key_nested" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:397(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:390(p) msgid "Returns the value of attribute expression" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:408(pre) -#: doc/reference/en/ActiveGroonga/ResultSet.html:451(pre) -#: doc/reference/en/ActiveGroonga/ResultSet.html:494(pre) -#: doc/reference/en/ActiveGroonga/Vector.html:430(pre) -#: doc/reference/en/ActiveGroonga/Vector.html:473(pre) -#: doc/reference/en/ActiveGroonga/Vector.html:516(pre) +#: doc/reference/en/ActiveGroonga/ResultSet.html:400(pre) +#: doc/reference/en/ActiveGroonga/ResultSet.html:441(pre) +#: doc/reference/en/ActiveGroonga/ResultSet.html:482(pre) +#: doc/reference/en/ActiveGroonga/Vector.html:418(pre) +#: doc/reference/en/ActiveGroonga/Vector.html:459(pre) +#: doc/reference/en/ActiveGroonga/Vector.html:500(pre) msgid "20 21 22" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:416(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:459(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:502(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:408(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:449(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:490(span) msgid "# File 'lib/active_groonga/result_set.rb', line 20" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:440(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:431(p) msgid "Returns the value of attribute n_records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:483(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:472(p) msgid "Returns the value of attribute records" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:530(pre) -msgid "51 52 53 54 55 56 57" +#: doc/reference/en/ActiveGroonga/ResultSet.html:518(pre) +msgid "152 153 154 155 156 157 158" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:542(span) -msgid "# File 'lib/active_groonga/result_set.rb', line 51" +#: doc/reference/en/ActiveGroonga/ResultSet.html:530(span) +msgid "# File 'lib/active_groonga/result_set.rb', line 152" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:567(pre) -msgid "47 48 49" +#: doc/reference/en/ActiveGroonga/ResultSet.html:555(pre) +msgid "148 149 150" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:575(span) -msgid "# File 'lib/active_groonga/result_set.rb', line 47" +#: doc/reference/en/ActiveGroonga/ResultSet.html:563(span) +msgid "# File 'lib/active_groonga/result_set.rb', line 148" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:587(p) -msgid "- () (sort_keys, options = {})" +#: doc/reference/en/ActiveGroonga/ResultSet.html:578(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:598(span) +msgid "" +"- () " +"(sort_keys, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:609(span) -msgid "# File 'lib/active_groonga/result_set.rb', line 33" -msgstr "" +#: doc/reference/en/ActiveGroonga/ResultSet.html:593(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:838(h3) +msgid "Overloads:" +msgstr "???????:" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:601(p) +msgid "Paginated result set." +msgstr "????????????????" #: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) -msgid "sort_keys" +#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +msgid "result_set" msgstr "" #: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:713(span) +msgid "# Paginates by sorting by \"name\" column value in" +msgstr "# \"name\"??????????????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:613(span) +msgid "# ascending order. The paginated result set has" +msgstr "# ????????????????10?????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:716(span) +msgid "# less than or equal 10 records. And the returned" +msgstr "# ???????????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:615(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:717(span) +msgid "# page is user requested page. If user doesn't" +msgstr "# ??????????????????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:718(span) +msgid "# specify page, the first page is returned." +msgstr "#" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:652(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:732(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +msgid ":size" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:618(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:861(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) +msgid "10" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:662(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:742(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) msgid ":page" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:612(span) -msgid "normalize_page_value" +#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) +msgid "param" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:614(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:623(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:866(h3) +msgid "Parameters:" +msgstr "??:" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:636(p) +msgid "" +"The array of sort key for paginating. Each sort key is an array of sort key " +"column name and order." +msgstr "" +"??????????????????????????????????????" +"?????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:648(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:728(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:891(h3) +#: doc/reference/en/ActiveGroonga/ResultSet.html:970(h3) +msgid "Options Hash ():" +msgstr "?????Hash ():" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:658(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:738(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:901(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:902(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:980(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:981(a) +msgid "Base.limit" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:657(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:737(p) +msgid "" +"The page size. is used " +"as the default value." +msgstr "" +"?????????????" +"?????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:667(p) +msgid "" +"The target page. The page is 1 origin not 0 origin. 1 is used as the default " +"value." +msgstr "????????????0??????1????????????1???" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:686(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:765(p) +msgid "paginated result set." +msgstr "????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:700(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:944(a) +msgid "Base.sort_keys" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:700(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:944(p) +msgid "" +" is used as the sort keys." +msgstr "" +"????????????" +"??" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:710(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:954(span) +msgid "# The default sort keys." +msgstr "# ????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:714(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:958(span) +msgid "# ascending order because it is the default sort" +msgstr "# ???????????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:715(span) +msgid "# keys. The paginated result set has" +msgstr "#" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:747(p) +msgid "The target page. 1 is used as the default value." +msgstr "???????????????1?" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:780(pre) +msgid "80 81 82 83 84 85 86 87 88 89 90 91 92" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:798(span) +msgid "# File 'lib/active_groonga/result_set.rb', line 80" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) +msgid "normalize_limit" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) +msgid "normalize_page" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) +msgid "normalize_sort_keys" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:811(span) msgid "set" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:616(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) msgid "extend" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:626(p) -msgid "- () (keys, options = {})" +#: doc/reference/en/ActiveGroonga/ResultSet.html:823(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:843(span) +msgid "" +"- () " +"(keys, options = {})" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:635(pre) -msgid "42 43 44 45" +#: doc/reference/en/ActiveGroonga/ResultSet.html:846(p) +msgid "Sorted result set." +msgstr "????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:857(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:957(span) +msgid "# Sorts by \"name\" column value in" +msgstr "# \"name\"????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:858(span) +msgid "# ascending order. The sorted result set has" +msgstr "# ???????????5????14???????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:859(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:960(span) +msgid "# from the 5th records to the 14th records." +msgstr "#" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:906(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:985(span) +msgid ":offset" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:644(span) -msgid "# File 'lib/active_groonga/result_set.rb', line 42" +#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) +msgid "4" msgstr "" -#: doc/reference/en/ActiveGroonga/ResultSet.html:646(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:647(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:871(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1042(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1043(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) msgid "keys" msgstr "" +#: doc/reference/en/ActiveGroonga/ResultSet.html:879(p) +msgid "" +"The array of sort key for sort. Each sort key is an array of sort key column " +"name and order." +msgstr "??????????????????????????????????????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:900(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:979(p) +msgid "" +"The max number of records. is used as the default value. If is nil, all records are returned." +msgstr "??????????????????????????nil????????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:911(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:990(p) +msgid "" +"The record start offset. Offset is 0-origin not 1-origin. The default value " +"is 0." +msgstr "????????????????????1??????0????????????0???" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:930(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:1009(p) +msgid "sorted result set." +msgstr "???????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:959(span) +msgid "# keys. The sorted result set has" +msgstr "# ???????????5????14???????????????" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:1024(pre) +msgid "138 139 140 141 142 143 144 145 146" +msgstr "" + +#: doc/reference/en/ActiveGroonga/ResultSet.html:1038(span) +msgid "# File 'lib/active_groonga/result_set.rb', line 138" +msgstr "" + #: doc/reference/en/ActiveGroonga/Vector.html:6(title) msgid "Class: ActiveGroonga::Vector — activegroonga" msgstr "" @@ -9804,49 +10518,49 @@ msgstr "" msgid "lib/active_groonga/vector.rb" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:125(p) +#: doc/reference/en/ActiveGroonga/Vector.html:124(p) msgid "Returns the value of attribute klass." msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:134(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:390(span) -#: doc/reference/en/ActiveGroonga/Vector.html:455(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:483(span) +#: doc/reference/en/ActiveGroonga/Vector.html:132(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:380(span) +#: doc/reference/en/ActiveGroonga/Vector.html:443(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:469(span) msgid "owner" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:151(p) +#: doc/reference/en/ActiveGroonga/Vector.html:148(p) msgid "Returns the value of attribute owner." msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:160(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:389(span) -#: doc/reference/en/ActiveGroonga/Vector.html:392(span) -#: doc/reference/en/ActiveGroonga/Vector.html:498(strong) -#: doc/reference/en/ActiveGroonga/Vector.html:526(span) +#: doc/reference/en/ActiveGroonga/Vector.html:156(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Vector.html:484(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:510(span) msgid "values" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:177(p) +#: doc/reference/en/ActiveGroonga/Vector.html:172(p) msgid "Returns the value of attribute values." msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:200(a) +#: doc/reference/en/ActiveGroonga/Vector.html:194(a) msgid "- (Object) (value)" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:221(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:215(strong) msgid "build" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:221(a) -#: doc/reference/en/ActiveGroonga/Vector.html:242(a) -#: doc/reference/en/ActiveGroonga/Vector.html:263(a) +#: doc/reference/en/ActiveGroonga/Vector.html:215(a) +#: doc/reference/en/ActiveGroonga/Vector.html:236(a) +#: doc/reference/en/ActiveGroonga/Vector.html:257(a) msgid "- (Object) (*args, &block)" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:263(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:257(strong) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:96(strong) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:126(strong) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) @@ -9854,66 +10568,66 @@ msgstr "" msgid "create!" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:305(a) +#: doc/reference/en/ActiveGroonga/Vector.html:299(a) msgid "- (Vector) (owner, klass, values = [])" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:321(p) +#: doc/reference/en/ActiveGroonga/Vector.html:314(p) msgid "A new instance of Vector." msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:330(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:322(strong) msgid "to_ary" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:356(p) +#: doc/reference/en/ActiveGroonga/Vector.html:348(p) msgid "" "- () " "(owner, klass, values = [])" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:365(p) +#: doc/reference/en/ActiveGroonga/Vector.html:356(p) msgid "A new instance of Vector" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:376(pre) +#: doc/reference/en/ActiveGroonga/Vector.html:366(pre) msgid "21 22 23 24 25 26" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:387(span) +#: doc/reference/en/ActiveGroonga/Vector.html:377(span) msgid "# File 'lib/active_groonga/vector.rb', line 21" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:390(span) -#: doc/reference/en/ActiveGroonga/Vector.html:484(span) +#: doc/reference/en/ActiveGroonga/Vector.html:380(span) +#: doc/reference/en/ActiveGroonga/Vector.html:470(span) msgid "@owner" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:392(span) -#: doc/reference/en/ActiveGroonga/Vector.html:393(span) -#: doc/reference/en/ActiveGroonga/Vector.html:527(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) +#: doc/reference/en/ActiveGroonga/Vector.html:511(span) msgid "@values" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:419(p) +#: doc/reference/en/ActiveGroonga/Vector.html:408(p) msgid "Returns the value of attribute klass" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:438(span) -#: doc/reference/en/ActiveGroonga/Vector.html:481(span) -#: doc/reference/en/ActiveGroonga/Vector.html:524(span) +#: doc/reference/en/ActiveGroonga/Vector.html:426(span) +#: doc/reference/en/ActiveGroonga/Vector.html:467(span) +#: doc/reference/en/ActiveGroonga/Vector.html:508(span) msgid "# File 'lib/active_groonga/vector.rb', line 20" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:462(p) +#: doc/reference/en/ActiveGroonga/Vector.html:449(p) msgid "Returns the value of attribute owner" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:505(p) +#: doc/reference/en/ActiveGroonga/Vector.html:490(p) msgid "Returns the value of attribute values" msgstr "" -#: doc/reference/en/ActiveGroonga/Vector.html:538(div) +#: doc/reference/en/ActiveGroonga/Vector.html:522(div) msgid "" "\n" " \n" @@ -9942,38 +10656,38 @@ msgstr "" msgid "Exception: ActiveGroonga::DuplicateMigrationVersionError" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:192(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:186(a) msgid "- (DuplicateMigrationVersionError) (version, path)" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:208(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:201(p) msgid "A new instance of DuplicateMigrationVersionError." msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:227(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:219(p) msgid "" "- () " "(version, path)" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:236(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:227(p) msgid "A new instance of DuplicateMigrationVersionError" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(pre) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:237(pre) msgid "19 20 21 22 23" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:257(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) msgid "# File 'lib/active_groonga/migrator.rb', line 19" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:262(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) msgid "\"duplicated migration version exists: #{version}: <#{@path}>\"" msgstr "" -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:307(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:350(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:295(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:336(span) msgid "# File 'lib/active_groonga/migrator.rb', line 18" msgstr "" @@ -10030,6 +10744,13 @@ msgid "B" msgstr "" #: doc/reference/en/_index.html:105(small) +#: doc/reference/en/_index.html:141(small) +#: doc/reference/en/_index.html:254(small) +#: doc/reference/en/_index.html:268(small) +msgid "(ActiveGroonga::Generators)" +msgstr "" + +#: doc/reference/en/_index.html:112(small) #: doc/reference/en/_index.html:127(small) #: doc/reference/en/_index.html:170(small) #: doc/reference/en/_index.html:177(small) @@ -10048,7 +10769,7 @@ msgstr "" #: doc/reference/en/_index.html:348(small) #: doc/reference/en/_index.html:363(small) #: doc/reference/en/_index.html:370(small) -#: doc/reference/en/_index.html:385(small) +#: doc/reference/en/_index.html:392(small) #: doc/reference/en/_index.html:399(small) #: doc/reference/en/_index.html:414(small) #: doc/reference/en/_index.html:421(small) @@ -10056,13 +10777,6 @@ msgstr "" msgid "(ActiveGroonga)" msgstr "" -#: doc/reference/en/_index.html:112(small) -#: doc/reference/en/_index.html:141(small) -#: doc/reference/en/_index.html:254(small) -#: doc/reference/en/_index.html:268(small) -msgid "(ActiveGroonga::Generators)" -msgstr "" - #: doc/reference/en/_index.html:121(li) msgid "C" msgstr "" @@ -10123,7 +10837,7 @@ msgstr "" msgid "T" msgstr "" -#: doc/reference/en/_index.html:392(small) +#: doc/reference/en/_index.html:385(small) msgid "(ActiveSupport)" msgstr "" Modified: lib/active_groonga/result_set.rb (+4 -4) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-04 14:27:02 +0000 (7d5dc08) +++ lib/active_groonga/result_set.rb 2011-09-04 14:57:04 +0000 (5fa6c19) @@ -40,7 +40,7 @@ module ActiveGroonga # key is an array of sort key column name and order. # @option options [Integer] :size The page size. # {Base.limit} is used as the default value. - # @option options [Integer] :page The current page. + # @option options [Integer] :page The target page. # The page is 1 origin not 0 origin. 1 is used as # the default value. # @return [ResultSet] paginated result set. @@ -49,7 +49,7 @@ module ActiveGroonga # result_set = User.all # # Paginates by sorting by "name" column value in # # ascending order. The paginated result set has - # # less than or equal 10 records. And the current + # # less than or equal 10 records. And the returned # # page is user requested page. If user doesn't # # specify page, the first page is returned. # result_set.paginate([["name", :ascending]], @@ -59,7 +59,7 @@ module ActiveGroonga # @overload paginate(options={}) # @option options [Integer] :size The page size. # {Base.limit} is used as the default value. - # @option options [Integer] :page The current page. + # @option options [Integer] :page The target page. # 1 is used as the default value. # @return [ResultSet] paginated result set. # @@ -70,7 +70,7 @@ module ActiveGroonga # # Paginates by sorting by "name" column value in # # ascending order because it is the default sort # # keys. The paginated result set has - # # less than or equal 10 records. And the current + # # less than or equal 10 records. And the returned # # page is user requested page. If user doesn't # # specify page, the first page is returned. # result_set.paginate(:size => 10, From null+ranguba at clear-code.com Sun Sep 4 10:59:48 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 14:59:48 +0000 Subject: [groonga-commit:3988] ranguba/activegroonga [master] add 1.0.5 entry. Message-ID: <20110904150252.AA1BC2C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 14:59:48 +0000 (Sun, 04 Sep 2011) New Revision: 2d7654819f0cdacc24a56d376d1b68fbb638b478 Log: add 1.0.5 entry. Modified files: doc/text/news.textile Modified: doc/text/news.textile (+14 -0) =================================================================== --- doc/text/news.textile 2011-09-04 14:57:04 +0000 (1982f9d) +++ doc/text/news.textile 2011-09-04 14:59:48 +0000 (f9f3fcd) @@ -1,5 +1,19 @@ h1. NEWS +h2. 1.0.5: 2011-05-01 + +h3. Improvements + +* Supported Rails 3.1.0. +* groonga:seed showes seed candidates files. +* Used YARD. +* Added {ActiveGroonga::Base.sort_keys}. +* Added {ActiveGroonga::Base.limit}. + +h3. Fixes + +* Fixed groonga:seed dependency. + h2. 1.0.4: 2011-04-01 h3. Improvements From null+ranguba at clear-code.com Sun Sep 4 11:04:07 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:04:07 +0000 Subject: [groonga-commit:3989] ranguba/activegroonga [master] [doc][ja] translate 1.0.5 entry. Message-ID: <20110904150711.CEBE42C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 15:04:07 +0000 (Sun, 04 Sep 2011) New Revision: 6941c24adc782e724dc4dd29a4799b54dcd7d623 Log: [doc][ja] translate 1.0.5 entry. Modified files: doc/po/ja.po doc/text/news.textile Modified: doc/po/ja.po (+75 -26) =================================================================== --- doc/po/ja.po 2011-09-04 14:59:48 +0000 (428824a) +++ doc/po/ja.po 2011-09-04 15:04:07 +0000 (d1578f5) @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ActiveGroonga 1.0.5\n" -"POT-Creation-Date: 2011-09-04 23:48+0900\n" -"PO-Revision-Date: 2011-09-04 23:56+0900\n" +"POT-Creation-Date: 2011-09-05 00:03+0900\n" +"PO-Revision-Date: 2011-09-05 00:03+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" "Language: ja\n" @@ -731,48 +731,90 @@ msgid "NEWS" msgstr "????" #: doc/reference/en/file.news.html:58(h2) -msgid "1.0.4: 2011-04-01" +msgid "1.0.5: 2011-05-01" msgstr "" #: doc/reference/en/file.news.html:59(h3) -#: doc/reference/en/file.news.html:64(h3) -#: doc/reference/en/file.news.html:69(h3) +#: doc/reference/en/file.news.html:72(h3) +#: doc/reference/en/file.news.html:77(h3) +#: doc/reference/en/file.news.html:82(h3) msgid "Improvements" msgstr "??" #: doc/reference/en/file.news.html:61(li) +msgid "Supported Rails 3.1.0." +msgstr "Rails 3.1.0???" + +#: doc/reference/en/file.news.html:62(li) +msgid "groonga:seed showes seed candidate files on not found." +msgstr "groonga:seed?seed????????????????seed?????????????????????????" + +#: doc/reference/en/file.news.html:63(span) +msgid "YARD" +msgstr "" + +#: doc/reference/en/file.news.html:63(li) +msgid "Used ." +msgstr "?????" + +#: doc/reference/en/file.news.html:64(a) +msgid "ActiveGroonga::Base.sort_keys" +msgstr "" + +#: doc/reference/en/file.news.html:64(li) +#: doc/reference/en/file.news.html:65(li) +msgid "Added ." +msgstr "????" + +#: doc/reference/en/file.news.html:65(a) +msgid "ActiveGroonga::Base.limit" +msgstr "" + +#: doc/reference/en/file.news.html:67(h3) +msgid "Fixes" +msgstr "???" + +#: doc/reference/en/file.news.html:69(li) +msgid "Fixed groonga:seed dependency." +msgstr "groonga:seed?????????" + +#: doc/reference/en/file.news.html:71(h2) +msgid "1.0.4: 2011-04-01" +msgstr "" + +#: doc/reference/en/file.news.html:74(li) msgid "Supported Kaminari. (View interface only)" msgstr "Kaminari????View???" -#: doc/reference/en/file.news.html:63(h2) +#: doc/reference/en/file.news.html:76(h2) msgid "1.0.3: 2010-12-25" msgstr "" -#: doc/reference/en/file.news.html:66(li) +#: doc/reference/en/file.news.html:79(li) msgid "Supported score." msgstr "score???" -#: doc/reference/en/file.news.html:68(h2) +#: doc/reference/en/file.news.html:81(h2) msgid "1.0.1: 2010-11-29" msgstr "" -#: doc/reference/en/file.news.html:71(li) +#: doc/reference/en/file.news.html:84(li) msgid "generator: Supported table type customize." msgstr "??????: ??????????????" -#: doc/reference/en/file.news.html:72(li) +#: doc/reference/en/file.news.html:85(li) msgid "Added ActiveGroonga::Base.exists?." msgstr "ActiveGroonga::Base.exists?????" -#: doc/reference/en/file.news.html:73(li) +#: doc/reference/en/file.news.html:86(li) msgid "Added ActiveGroonga::Base.all." msgstr "ActiveGroonga::Base.all????" -#: doc/reference/en/file.news.html:75(h3) +#: doc/reference/en/file.news.html:88(h3) msgid "Changes" msgstr "??" -#: doc/reference/en/file.news.html:77(li) +#: doc/reference/en/file.news.html:90(li) msgid "" "Changed to use record key instead of record ID for record identifier for " "hash table and patricia trie." @@ -780,43 +822,43 @@ msgstr "" "?????????????????????????????????????ID" "???????????????" -#: doc/reference/en/file.news.html:80(h2) +#: doc/reference/en/file.news.html:93(h2) msgid "1.0.0: 2010-11-29" msgstr "" -#: doc/reference/en/file.news.html:82(li) +#: doc/reference/en/file.news.html:95(li) msgid "Support Rails 3." msgstr "Rails 3???" -#: doc/reference/en/file.news.html:84(h2) +#: doc/reference/en/file.news.html:97(h2) msgid "0.0.7: 2009-10-02" msgstr "" -#: doc/reference/en/file.news.html:86(li) +#: doc/reference/en/file.news.html:99(li) msgid "Support Ruby/groonga 0.0.7." msgstr "Ruby/groonga 0.0.7???" -#: doc/reference/en/file.news.html:88(h2) +#: doc/reference/en/file.news.html:101(h2) msgid "0.0.6: 2009-07-31" msgstr "" -#: doc/reference/en/file.news.html:90(li) +#: doc/reference/en/file.news.html:103(li) msgid "Support Ruby/groonga 0.0.6." msgstr "Ruby/groonga 0.0.6???" -#: doc/reference/en/file.news.html:92(h2) +#: doc/reference/en/file.news.html:105(h2) msgid "0.0.2: 2009-06-05" msgstr "" -#: doc/reference/en/file.news.html:94(li) +#: doc/reference/en/file.news.html:107(li) msgid "Support Ruby/groonga 0.0.2." msgstr "Ruby/groonga 0.0.2???" -#: doc/reference/en/file.news.html:96(h2) +#: doc/reference/en/file.news.html:109(h2) msgid "0.0.1: 2009-04-30" msgstr "" -#: doc/reference/en/file.news.html:98(li) +#: doc/reference/en/file.news.html:111(li) msgid "Initial release!" msgstr "????????" @@ -10472,7 +10514,9 @@ msgstr "" msgid "" "The array of sort key for sort. Each sort key is an array of sort key column " "name and order." -msgstr "??????????????????????????????????????????????????" +msgstr "" +"??????????????????????????????????????" +"????????????" #: doc/reference/en/ActiveGroonga/ResultSet.html:900(p) #: doc/reference/en/ActiveGroonga/ResultSet.html:979(p) @@ -10480,14 +10524,19 @@ msgid "" "The max number of records. is used as the default value. If is nil, all records are returned." -msgstr "??????????????????????????nil????????????????" +msgstr "" +"??????????????????????????" +"nil????????????????" #: doc/reference/en/ActiveGroonga/ResultSet.html:911(p) #: doc/reference/en/ActiveGroonga/ResultSet.html:990(p) msgid "" "The record start offset. Offset is 0-origin not 1-origin. The default value " "is 0." -msgstr "????????????????????1??????0????????????0???" +msgstr "" +"????????????????????1??????0???????????" +"?0???" #: doc/reference/en/ActiveGroonga/ResultSet.html:930(p) #: doc/reference/en/ActiveGroonga/ResultSet.html:1009(p) Modified: doc/text/news.textile (+1 -1) =================================================================== --- doc/text/news.textile 2011-09-04 14:59:48 +0000 (f9f3fcd) +++ doc/text/news.textile 2011-09-04 15:04:07 +0000 (a49615f) @@ -5,7 +5,7 @@ h2. 1.0.5: 2011-05-01 h3. Improvements * Supported Rails 3.1.0. -* groonga:seed showes seed candidates files. +* groonga:seed showes seed candidate files on not found. * Used YARD. * Added {ActiveGroonga::Base.sort_keys}. * Added {ActiveGroonga::Base.limit}. From null+ranguba at clear-code.com Sun Sep 4 11:13:17 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:13:17 +0000 Subject: [groonga-commit:3990] ranguba/activegroonga [master] [doc] add templates. Message-ID: <20110904151631.4EE2F2C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 15:13:17 +0000 (Sun, 04 Sep 2011) New Revision: 0cfb1aa3eea587e31e4e6401ee57e7865bd67288 Log: [doc] add templates. Added files: doc/templates/footer.en.html.erb doc/templates/footer.ja.html.erb doc/templates/head.en.html.erb doc/templates/head.ja.html.erb doc/templates/header.en.html.erb doc/templates/header.ja.html.erb Added: doc/templates/footer.en.html.erb (+38 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/footer.en.html.erb 2011-09-04 15:13:17 +0000 (1bd48d5) @@ -0,0 +1,38 @@ + + + Added: doc/templates/footer.ja.html.erb (+33 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/footer.ja.html.erb 2011-09-04 15:13:17 +0000 (da27583) @@ -0,0 +1,33 @@ + + + Added: doc/templates/head.en.html.erb (+4 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/head.en.html.erb 2011-09-04 15:13:17 +0000 (6fe9dcc) @@ -0,0 +1,4 @@ + + + + <%= title %> - Ranguba Added: doc/templates/head.ja.html.erb (+4 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/head.ja.html.erb 2011-09-04 15:13:17 +0000 (177a663) @@ -0,0 +1,4 @@ + + + + <%= title %> - ???? Added: doc/templates/header.en.html.erb (+20 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/header.en.html.erb 2011-09-04 15:13:17 +0000 (f32264a) @@ -0,0 +1,20 @@ + + +
Added: doc/templates/header.ja.html.erb (+20 -0) 100644 =================================================================== --- /dev/null +++ doc/templates/header.ja.html.erb 2011-09-04 15:13:17 +0000 (0383c13) @@ -0,0 +1,20 @@ + + +
From null+ranguba at clear-code.com Sun Sep 4 11:13:27 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:13:27 +0000 Subject: [groonga-commit:3991] ranguba/activegroonga [master] [doc] add tutorial placeholder. Message-ID: <20110904151631.58B122C466D@taiyaki.ru> Kouhei Sutou 2011-09-04 15:13:27 +0000 (Sun, 04 Sep 2011) New Revision: 37d3cd9c8fea3ee7286479224c0082570a86b3d9 Log: [doc] add tutorial placeholder. Added files: doc/text/tutorial.textile Added: doc/text/tutorial.textile (+3 -0) 100644 =================================================================== --- /dev/null +++ doc/text/tutorial.textile 2011-09-04 15:13:27 +0000 (1c16230) @@ -0,0 +1,3 @@ +h1. Tutorial + +Comming soon... From null+ranguba at clear-code.com Sun Sep 4 11:13:42 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:13:42 +0000 Subject: [groonga-commit:3992] ranguba/activegroonga [master] fix homepage URL. Message-ID: <20110904151646.446ED2C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 15:13:42 +0000 (Sun, 04 Sep 2011) New Revision: f610a5442f2c2331913e274524195f2eb204cd68 Log: fix homepage URL. Modified files: Rakefile Modified: Rakefile (+1 -1) =================================================================== --- Rakefile 2011-09-04 15:13:27 +0000 (395a16d) +++ Rakefile 2011-09-04 15:13:42 +0000 (84c3e9c) @@ -52,7 +52,7 @@ Jeweler::Tasks.new do |_spec| spec.name = "activegroonga" spec.version = version spec.rubyforge_project = "groonga" - spec.homepage = "http://groonga.rubyforge.org/activegroonga/" + spec.homepage = "http://groonga.rubyforge.org/" spec.authors = ["Kouhei Sutou"] spec.email = ["kou at clear-code.com"] entries = File.read("README.textile").split(/^h2\.\s(.*)$/) From null+ranguba at clear-code.com Sun Sep 4 11:16:06 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:16:06 +0000 Subject: [groonga-commit:3993] ranguba/activegroonga [master] ignore .gemspec. Message-ID: <20110904151910.3DDB32C466D@taiyaki.ru> Kouhei Sutou 2011-09-04 15:16:06 +0000 (Sun, 04 Sep 2011) New Revision: f990fd14c42512dc85705e49b2648cdd94b6827a Log: ignore .gemspec. Modified files: .gitignore Modified: .gitignore (+1 -0) =================================================================== --- .gitignore 2011-09-04 15:15:33 +0000 (eff3862) +++ .gitignore 2011-09-04 15:16:06 +0000 (16b98f5) @@ -5,3 +5,4 @@ /Gemfile.lock /.yardoc/ /doc/po/*.pot +/*.gemspec From null+ranguba at clear-code.com Sun Sep 4 11:15:33 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:15:33 +0000 Subject: [groonga-commit:3994] ranguba/activegroonga [master] 1.0.5 -> 1.0.6. Message-ID: <20110904151910.329CD2C4647@taiyaki.ru> Kouhei Sutou 2011-09-04 15:15:33 +0000 (Sun, 04 Sep 2011) New Revision: fe92b377500cd44f47744088a6ca654939af8289 Log: 1.0.5 -> 1.0.6. Modified files: lib/active_groonga/version.rb Modified: lib/active_groonga/version.rb (+2 -2) =================================================================== --- lib/active_groonga/version.rb 2011-09-04 15:13:42 +0000 (a90e5d6) +++ lib/active_groonga/version.rb 2011-09-04 15:15:33 +0000 (9ad5b18) @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2010 Kouhei Sutou +# Copyright (C) 2009-2011 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -17,7 +17,7 @@ module ActiveGroonga module VERSION MAJOR = 1 MINOR = 0 - TINY = 5 + TINY = 6 STRING = [MAJOR, MINOR, TINY].join(".") end From null+ranguba at clear-code.com Sun Sep 4 11:18:07 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:18:07 +0000 Subject: [groonga-commit:3995] ranguba/rroonga [master] ActiveGroonga 1.0.5!!! Message-ID: <20110904152113.024B32C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 15:18:07 +0000 (Sun, 04 Sep 2011) New Revision: db5f2e703e542365bc9e4ae5546d0b93a9683165 Log: ActiveGroonga 1.0.5!!! Modified files: doc/html/index.html doc/html/index.html.ja Modified: doc/html/index.html (+1 -1) =================================================================== --- doc/html/index.html 2011-09-04 12:40:24 +0000 (6e7b550) +++ doc/html/index.html 2011-09-04 15:18:07 +0000 (6488c8e) @@ -89,7 +89,7 @@

ActiveGroonga: The latest release

- 1.0.4 is the latest release. It had been released at 2011-04-01. + 1.0.5 is the latest release. It had been released at 2011-09-04.

ActiveGroonga: Install

Modified: doc/html/index.html.ja (+1 -1) =================================================================== --- doc/html/index.html.ja 2011-09-04 12:40:24 +0000 (f3f4f7a) +++ doc/html/index.html.ja 2011-09-04 15:18:07 +0000 (9bc82fc) @@ -90,7 +90,7 @@

ActiveGroonga???????

- 2011-04-01????????1.0.4?????? + 2011-09-04????????1.0.5??????

ActiveGroonga???????

From null+ranguba at clear-code.com Sun Sep 4 11:19:45 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Sun, 04 Sep 2011 15:19:45 +0000 Subject: [groonga-commit:3996] ranguba/rroonga [master] [html] fix ActiveGroonga reference manual URL. Message-ID: <20110904152249.98D822C4650@taiyaki.ru> Kouhei Sutou 2011-09-04 15:19:45 +0000 (Sun, 04 Sep 2011) New Revision: 16405d9ef809c73674ea46d437002d0e3022d646 Log: [html] fix ActiveGroonga reference manual URL. Modified files: doc/html/index.html.ja Modified: doc/html/index.html.ja (+1 -1) =================================================================== --- doc/html/index.html.ja 2011-09-04 15:18:07 +0000 (9bc82fc) +++ doc/html/index.html.ja 2011-09-04 15:19:45 +0000 (b88f8e7) @@ -105,7 +105,7 @@ ???????????????????

ActiveGroonga Fabrication

From null+ranguba at clear-code.com Wed Sep 7 05:41:03 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 07 Sep 2011 09:41:03 +0000 Subject: [groonga-commit:3997] ranguba/racknga [master] add NginxRawURI middleware Message-ID: <20110907094509.903B82C415E@taiyaki.ru> Ryo Onodera 2011-09-07 09:41:03 +0000 (Wed, 07 Sep 2011) New Revision: 4ea731bee11959925d42a476a898ca617d92e461 Log: add NginxRawURI middleware Added files: lib/racknga/middleware/nginx_raw_uri.rb test/test-middleware-nginx-raw-uri.rb Modified files: lib/racknga.rb Modified: lib/racknga.rb (+1 -0) =================================================================== --- lib/racknga.rb 2011-09-04 02:06:57 +0000 (02f9ddd) +++ lib/racknga.rb 2011-09-07 09:41:03 +0000 (5f3d5cb) @@ -26,3 +26,4 @@ require 'racknga/middleware/exception_notifier' require 'racknga/middleware/jsonp' require 'racknga/middleware/range' require "racknga/middleware/instance_name" +require "racknga/middleware/nginx_raw_uri" Added: lib/racknga/middleware/nginx_raw_uri.rb (+65 -0) 100644 =================================================================== --- /dev/null +++ lib/racknga/middleware/nginx_raw_uri.rb 2011-09-07 09:41:03 +0000 (5b387d7) @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2011 Ryo Onodera +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU 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 USA + +module Racknga + module Middleware + # NOTE: + # This is a middleware that restores the unprocessed URI client requests + # as is. Usually, nginx-passenger stack unescapes percent encoding in URI + # and resolve relative paths (ie "." and ".."). + # Most of time, processed URI isn't program. However, if you want to + # distinguish %2F (ie "/") from "/", it is. + # + # Passenger 3.x or later is required. + # + # Use this with following nginx configuration: + # + # ... { + # ... + # passenger_set_cgi_param HTTP_X_RAW_REQUEST_URI $request_uri; + # } + # + # Usage: + # require "racknga" + # use Racknga::Middleware::NginxRawURI + # run YourApplication + class NginxRawURI + RAW_REQUEST_URI_HEADER_NAME = "HTTP_X_RAW_REQUEST_URI" + def initialize(application) + @application = application + end + + # For Rack. + def call(environment) + raw_uri = environment[RAW_REQUEST_URI_HEADER_NAME] + + if raw_uri + restore_raw_uri(environment, raw_uri) + end + + @application.call(environment) + end + + private + def restore_raw_uri(environment, raw_uri) + environment["PATH_INFO"] = raw_uri.split("?").first + environment["REQUEST_URI"] = raw_uri + end + end + end +end Added: test/test-middleware-nginx-raw-uri.rb (+70 -0) 100644 =================================================================== --- /dev/null +++ test/test-middleware-nginx-raw-uri.rb 2011-09-07 09:41:03 +0000 (3527af7) @@ -0,0 +1,70 @@ +# Copyright (C) 2011 Ryo Onodera +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU 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 USA + +class NginxRawURITest < Test::Unit::TestCase + include RackngaTestUtils + + class PseudoNginx + def initialize(application) + @application = application + end + + def call(environment) + mimic_nginx_behavior(environment) + + @application.call(environment) + end + + private + def mimic_nginx_behavior(environment) + environment["HTTP_X_RAW_REQUEST_URI"] = environment["PATH_INFO"] + environment["PATH_INFO"] = Rack::Utils.unescape(environment["PATH_INFO"]) + end + end + + def app + application = Proc.new do |environment| + @environment = environment + + response + end + + raw_uri = Racknga::Middleware::NginxRawURI.new(application) + pseudo_nginx = PseudoNginx.new(raw_uri) + + pseudo_nginx + end + + def setup + Capybara.app = app + end + + def test_slash + path_info_with_slash = "/keywords/GNU%2fLinux" + + visit(path_info_with_slash) + assert_equal(path_info_with_slash, path_info) + end + + private + def response + [200, {"Content-Type" => "plain/text"}, ["this is a response."]] + end + + def path_info + @environment["PATH_INFO"] + end +end From null+ranguba at clear-code.com Wed Sep 7 20:42:34 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Thu, 08 Sep 2011 00:42:34 +0000 Subject: [groonga-commit:3998] ranguba/racknga [master] [exception-notifier] remove needless require from document. Message-ID: <20110908004554.DC1C42C414B@taiyaki.ru> Kouhei Sutou 2011-09-08 00:42:34 +0000 (Thu, 08 Sep 2011) New Revision: 7b83fc8b59a9db20d7cd035c20cb513d8c3f12ee Log: [exception-notifier] remove needless require from document. Modified files: lib/racknga/middleware/exception_notifier.rb Modified: lib/racknga/middleware/exception_notifier.rb (+0 -1) =================================================================== --- lib/racknga/middleware/exception_notifier.rb 2011-09-07 09:41:03 +0000 (40c38a1) +++ lib/racknga/middleware/exception_notifier.rb 2011-09-08 00:42:34 +0000 (36ef758) @@ -26,7 +26,6 @@ module Racknga # # Usage: # require "racknga" - # require "racknga/middleware/exception_notifier" # # notifier_options = { # :subject_label => "[YourApplication]", From null+ranguba at clear-code.com Fri Sep 9 00:54:51 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 04:54:51 +0000 Subject: [groonga-commit:3999] ranguba/activegroonga [master] suppress warnings on Rails 3.1.0. Message-ID: <20110909045810.4F6DD2C419A@taiyaki.ru> Kouhei Sutou 2011-09-09 04:54:51 +0000 (Fri, 09 Sep 2011) New Revision: 59df6d76d0ab8e7188c78d48c0cabab14d0c194b Log: suppress warnings on Rails 3.1.0. Modified files: lib/active_groonga/railties/configurable.rb Modified: lib/active_groonga/railties/configurable.rb (+2 -2) =================================================================== --- lib/active_groonga/railties/configurable.rb 2011-09-04 15:16:06 +0000 (9e6ddfa) +++ lib/active_groonga/railties/configurable.rb 2011-09-09 04:54:51 +0000 (30b28e8) @@ -1,4 +1,4 @@ -# Copyright (C) 2010 Kouhei Sutou +# Copyright (C) 2010-2011 Kouhei Sutou # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -19,7 +19,7 @@ module ActiveGroonga module Railties module Configurable def groonga_configurations - groonga_yml = paths.config.groonga.first + groonga_yml = paths["config/groonga"].first unless File.exist?(groonga_yml) groonga_yml_example = "#{groonga_yml}.example" if File.exist?(groonga_yml_example) From null+ranguba at clear-code.com Fri Sep 9 01:13:38 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 05:13:38 +0000 Subject: [groonga-commit:4000] ranguba/activegroonga [master] support rspec-rails. Message-ID: <20110909051648.1140F2C419A@taiyaki.ru> Kouhei Sutou 2011-09-09 05:13:38 +0000 (Fri, 09 Sep 2011) New Revision: 97d6665696a1d5325b2f3249855984ceb29408ff Log: support rspec-rails. Modified files: lib/active_groonga/railties/groonga.rake Modified: lib/active_groonga/railties/groonga.rake (+12 -1) =================================================================== --- lib/active_groonga/railties/groonga.rake 2011-09-09 04:54:51 +0000 (5cd3569) +++ lib/active_groonga/railties/groonga.rake 2011-09-09 05:13:38 +0000 (bde9f20) @@ -168,4 +168,15 @@ namespace :groonga do end end -task "test:prepare" => "groonga:test:prepare" +case Rails.configuration.generators.options[:rails][:test_framework] +when :rspec + rspec_task_names = ["spec"] + rspec_sub_task_names = [:requests, :models, :controllers, :views, :helpers, + :mailers, :lib, :routing, :rcov] + rspec_task_names += rspec_sub_task_names.collect {|name| "spec:#{name}"} + rspec_task_names.each do |task_name| + task task_name => "groonga:test:prepare" + end +else + task "test:prepare" => "groonga:test:prepare" +end From null+ranguba at clear-code.com Fri Sep 9 03:07:38 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 07:07:38 +0000 Subject: [groonga-commit:4001] ranguba/rroonga [master] [debug] show type name in debug message. Message-ID: <20110909071057.4BE2F2C414B@taiyaki.ru> Kouhei Sutou 2011-09-09 07:07:38 +0000 (Fri, 09 Sep 2011) New Revision: 872e43567502572a2590c99b3b6026ea9a91f0ab Log: [debug] show type name in debug message. Modified files: ext/groonga/rb-grn-object.c ext/groonga/rb-grn-utils.c ext/groonga/rb-grn.h Modified: ext/groonga/rb-grn-object.c (+6 -3) =================================================================== --- ext/groonga/rb-grn-object.c 2011-09-04 15:19:45 +0000 (622bb0a) +++ ext/groonga/rb-grn-object.c 2011-09-09 07:07:38 +0000 (70253e5) @@ -178,7 +178,8 @@ rb_grn_object_free (RbGrnObject *rb_grn_object) if (rb_grn_object->have_finalizer) { user_data = grn_obj_user_data(context, grn_object); } - debug("type: %#x; need_close: %d; user_data: %p; ptr: %p\n", + debug("type: %s(%#x); need_close: %d; user_data: %p; ptr: %p\n", + rb_grn_inspect_type(grn_object->header.type), grn_object->header.type, rb_grn_object->need_close, user_data, @@ -313,15 +314,17 @@ rb_grn_object_bind_common (VALUE klass, VALUE self, VALUE rb_context, user_data = grn_obj_user_data(context, object); if (user_data) { - debug("set-finalizer: %p:%p:%p %#x\n", + debug("set-finalizer: %p:%p:%p %s(%#x)\n", context, object, rb_grn_object, + rb_grn_inspect_type(object->header.type), object->header.type); user_data->ptr = rb_grn_object; grn_obj_set_finalizer(context, object, rb_grn_object_finalizer); rb_grn_object->have_finalizer = GRN_TRUE; } else if (object->header.type == GRN_ACCESSOR) { - debug("set-finalizer(implicit): %p:%p:%p %#x\n", + debug("set-finalizer(implicit): %p:%p:%p %(%#x)\n", context, object, rb_grn_object, + rb_grn_inspect_type(object->header.type), object->header.type); rb_grn_object->have_finalizer = GRN_TRUE; } Modified: ext/groonga/rb-grn-utils.c (+65 -0) =================================================================== --- ext/groonga/rb-grn-utils.c 2011-09-04 15:19:45 +0000 (82ad0b1) +++ ext/groonga/rb-grn-utils.c 2011-09-09 07:07:38 +0000 (27a0623) @@ -30,6 +30,71 @@ rb_grn_inspect (VALUE object) return StringValueCStr(inspected); } +const char * +rb_grn_inspect_type (unsigned char type) +{ + switch (type) { + case GRN_VOID: + return "void"; + case GRN_BULK: + return "bulk"; + case GRN_PTR: + return "ptr"; + case GRN_UVECTOR: + return "uvector"; + case GRN_PVECTOR: + return "pvector"; + case GRN_MSG: + return "msg"; + case GRN_QUERY: + return "query"; + case GRN_ACCESSOR: + return "accessor"; + case GRN_SNIP: + return "snip"; + case GRN_PATSNIP: + return "patsnip"; + case GRN_CURSOR_TABLE_HASH_KEY: + return "cursor-table-hash-key"; + case GRN_CURSOR_TABLE_PAT_KEY: + return "cursor-table-pat-key"; + case GRN_CURSOR_TABLE_DAT_KEY: + return "cursor-table-dat-key"; + case GRN_CURSOR_TABLE_NO_KEY: + return "cursor-table-no-key"; + case GRN_CURSOR_TABLE_VIEW: + return "cursor-table-view"; + case GRN_CURSOR_COLUMN_INDEX: + return "cursor-column-index"; + case GRN_TYPE: + return "type"; + case GRN_PROC: + return "proc"; + case GRN_EXPR: + return "expr"; + case GRN_TABLE_HASH_KEY: + return "table-hash-key"; + case GRN_TABLE_PAT_KEY: + return "table-pat-key"; + case GRN_TABLE_DAT_KEY: + return "table-dat-key"; + case GRN_TABLE_NO_KEY: + return "table-no-key"; + case GRN_TABLE_VIEW: + return "table-view"; + case GRN_DB: + return "db"; + case GRN_COLUMN_FIX_SIZE: + return "column-fix-size"; + case GRN_COLUMN_VAR_SIZE: + return "column-var-size"; + case GRN_COLUMN_INDEX: + return "column-index"; + default: + return "unknown"; + } +} + void rb_grn_scan_options (VALUE options, ...) { Modified: ext/groonga/rb-grn.h (+1 -0) =================================================================== --- ext/groonga/rb-grn.h 2011-09-04 15:19:45 +0000 (13e7060) +++ ext/groonga/rb-grn.h 2011-09-09 07:07:38 +0000 (7cd5022) @@ -293,6 +293,7 @@ grn_obj *rb_grn_context_get_backward_compatibility unsigned int name_size); const char *rb_grn_inspect (VALUE object); +const char *rb_grn_inspect_type (unsigned char type); void rb_grn_scan_options (VALUE options, ...) RB_GRN_GNUC_NULL_TERMINATED; grn_bool rb_grn_equal_option (VALUE option, From null+ranguba at clear-code.com Fri Sep 9 03:44:58 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 07:44:58 +0000 Subject: [groonga-commit:4002] ranguba/rroonga [master] [debug] show type name in debug message. Message-ID: <20110909074809.279AD2C419A@taiyaki.ru> Kouhei Sutou 2011-09-09 07:44:58 +0000 (Fri, 09 Sep 2011) New Revision: c944b4f56a2a72e152c8bc4212636d432552bd2c Log: [debug] show type name in debug message. Modified files: ext/groonga/rb-grn-object.c Modified: ext/groonga/rb-grn-object.c (+2 -1) =================================================================== --- ext/groonga/rb-grn-object.c 2011-09-09 07:07:38 +0000 (70253e5) +++ ext/groonga/rb-grn-object.c 2011-09-09 07:44:58 +0000 (392fb42) @@ -88,9 +88,10 @@ rb_grn_object_run_finalizer (grn_ctx *context, grn_obj *grn_object, grn_obj_set_finalizer(context, grn_object, NULL); - debug("finalize: %p:%p:%p:%p:%p 0x%x\n", + debug("finalize: %p:%p:%p:%p:%p %s(%#x)\n", context, grn_object, rb_grn_object, rb_grn_object->context, rb_grn_object->object, + rb_grn_inspect_type(grn_object->header.type), grn_object->header.type); rb_grn_object->context = NULL; From null+ranguba at clear-code.com Fri Sep 9 03:47:36 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 07:47:36 +0000 Subject: [groonga-commit:4003] ranguba/rroonga [master] [debug] add missing 's'. Message-ID: <20110909075044.EED082C414B@taiyaki.ru> Kouhei Sutou 2011-09-09 07:47:36 +0000 (Fri, 09 Sep 2011) New Revision: 240c928564e8dba01d24b75b21ac061b911a1850 Log: [debug] add missing 's'. Modified files: ext/groonga/rb-grn-object.c Modified: ext/groonga/rb-grn-object.c (+1 -1) =================================================================== --- ext/groonga/rb-grn-object.c 2011-09-09 07:44:58 +0000 (392fb42) +++ ext/groonga/rb-grn-object.c 2011-09-09 07:47:36 +0000 (94a5e51) @@ -323,7 +323,7 @@ rb_grn_object_bind_common (VALUE klass, VALUE self, VALUE rb_context, grn_obj_set_finalizer(context, object, rb_grn_object_finalizer); rb_grn_object->have_finalizer = GRN_TRUE; } else if (object->header.type == GRN_ACCESSOR) { - debug("set-finalizer(implicit): %p:%p:%p %(%#x)\n", + debug("set-finalizer(implicit): %p:%p:%p %s(%#x)\n", context, object, rb_grn_object, rb_grn_inspect_type(object->header.type), object->header.type); From null+ranguba at clear-code.com Fri Sep 9 03:52:11 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 07:52:11 +0000 Subject: [groonga-commit:4004] ranguba/rroonga [master] [debug] show more type names in debug message. Message-ID: <20110909075520.9377D2C419A@taiyaki.ru> Kouhei Sutou 2011-09-09 07:52:11 +0000 (Fri, 09 Sep 2011) New Revision: 10b0acf6550e194df2c7e8153fa0ab28924e161f Log: [debug] show more type names in debug message. Modified files: ext/groonga/rb-grn-object.c ext/groonga/rb-grn-utils.c Modified: ext/groonga/rb-grn-object.c (+12 -7) =================================================================== --- ext/groonga/rb-grn-object.c 2011-09-09 07:47:36 +0000 (94a5e51) +++ ext/groonga/rb-grn-object.c 2011-09-09 07:52:11 +0000 (a6f12c3) @@ -426,14 +426,16 @@ rb_grn_object_assign (VALUE klass, VALUE self, VALUE rb_context, context, object); } else { rb_raise(rb_eTypeError, - "unsupported groonga object type for assignment: 0x%x", + "unsupported groonga object type for assignment: %s(%#x)", + rb_grn_inspect_type(object->header.type), object->header.type); } rb_iv_set(self, "@context", rb_context); - debug("assign: %p:%p:%p 0x%x\n", context, object, rb_grn_object, - object->header.type); + debug("assign: %p:%p:%p %s(%#x)\n", + context, object, rb_grn_object, + rb_grn_inspect_type(object->header.type), object->header.type); } void @@ -463,14 +465,17 @@ rb_grn_named_object_set_name (RbGrnNamedObject *rb_grn_named_object, rb_grn_named_object->name = NULL; } if (name_size > 0) { + RbGrnObject *rb_grn_object; rb_grn_named_object->name = ALLOC_N(char, name_size + 1); memcpy(rb_grn_named_object->name, name, name_size); rb_grn_named_object->name[name_size] = '\0'; - debug("set-name: %p:%p:%p 0x%x: <%.*s>\n", - RB_GRN_OBJECT(rb_grn_named_object)->context, - RB_GRN_OBJECT(rb_grn_named_object)->object, + rb_grn_object = RB_GRN_OBJECT(rb_grn_named_object); + debug("set-name: %p:%p:%p %s(%#x): <%.*s>\n", + rb_grn_object->context, + rb_grn_object->object, rb_grn_named_object, - RB_GRN_OBJECT(rb_grn_named_object)->object->header.type, + rb_grn_inspect_type(rb_grn_object->object->header.type), + rb_grn_object->object->header.type, name_size, name); } rb_grn_named_object->name_size = name_size; Modified: ext/groonga/rb-grn-utils.c (+6 -3) =================================================================== --- ext/groonga/rb-grn-utils.c 2011-09-09 07:47:36 +0000 (27a0623) +++ ext/groonga/rb-grn-utils.c 2011-09-09 07:52:11 +0000 (aa6fc57) @@ -688,8 +688,10 @@ rb_grn_value_to_ruby_object (grn_ctx *context, break; default: rb_raise(rb_eGrnError, - "unsupported value type: 0x%0x: %s", - value->header.type, rb_grn_inspect(related_object)); + "unsupported value type: %s(%#x): %s", + rb_grn_inspect_type(value->header.type), + value->header.type, + rb_grn_inspect(related_object)); break; } @@ -841,7 +843,8 @@ rb_grn_obj_to_ruby_object (VALUE klass, grn_ctx *context, /* case GRN_COLUMN_INDEX: */ default: rb_raise(rb_eTypeError, - "unsupported groonga object: 0x%x: <%s>", + "unsupported groonga object: %s(%#x): <%s>", + rb_grn_inspect_type(obj->header.type), obj->header.type, rb_grn_inspect(related_object)); break; From null+ranguba at clear-code.com Fri Sep 9 05:49:06 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Fri, 09 Sep 2011 09:49:06 +0000 Subject: [groonga-commit:4005] ranguba/rroonga [master] [debug] show more type names in debug message. Message-ID: <20110909095218.B60312C414B@taiyaki.ru> Kouhei Sutou 2011-09-09 09:49:06 +0000 (Fri, 09 Sep 2011) New Revision: dee2a2a8a4be776838d8f4663f4221222736ed93 Log: [debug] show more type names in debug message. Modified files: ext/groonga/rb-grn-object.c Modified: ext/groonga/rb-grn-object.c (+2 -1) =================================================================== --- ext/groonga/rb-grn-object.c 2011-09-09 07:52:11 +0000 (a6f12c3) +++ ext/groonga/rb-grn-object.c 2011-09-09 09:49:06 +0000 (9a53beb) @@ -138,7 +138,8 @@ rb_grn_object_run_finalizer (grn_ctx *context, grn_obj *grn_object, break; default: rb_raise(rb_eTypeError, - "unsupported groonga object type for finalizer: 0x%x", + "unsupported groonga object type for finalizer: %s(%#x)", + rb_grn_inspect_type(grn_object->header.type), grn_object->header.type); break; } From null+ranguba at clear-code.com Tue Sep 13 20:29:33 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 14 Sep 2011 00:29:33 +0000 Subject: [groonga-commit:4006] ranguba/activegroonga [master] add ResultSet#empty?. Message-ID: <20110914003304.BCE822C462A@taiyaki.ru> Kouhei Sutou 2011-09-14 00:29:33 +0000 (Wed, 14 Sep 2011) New Revision: 2e097a116cc44a8a5a845e4082f40995cd3a1514 Log: add ResultSet#empty?. Modified files: lib/active_groonga/result_set.rb test/test-result-set.rb Modified: lib/active_groonga/result_set.rb (+8 -0) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-09 05:13:38 +0000 (5fa6c19) +++ lib/active_groonga/result_set.rb 2011-09-14 00:29:33 +0000 (54ff79c) @@ -157,6 +157,14 @@ module ActiveGroonga end end + # Returns whether this result set has records or not. + # + # @return [true, false] true if the result set has one + # or more records, false otherwise. + def empty? + records.empty? + end + private def instantiate(record) resolved_record = record Modified: test/test-result-set.rb (+14 -0) =================================================================== --- test/test-result-set.rb 2011-09-09 05:13:38 +0000 (a5e7427) +++ test/test-result-set.rb 2011-09-14 00:29:33 +0000 (a69df21) @@ -140,4 +140,18 @@ class TestResultSet < Test::Unit::TestCase bookmarks.sort(["user"], :limit => 1).collect(&:user)) end end + + class TestEmpty < self + def test_have_records + all_bookmarks = Bookmark.all + assert_not_predicate(all_bookmarks, :empty?) + end + + def test_not_have_records + no_bookmarks = Bookmark.select do |bookmark| + bookmark.uri == "http://example.com/" + end + assert_predicate(no_bookmarks, :empty?) + end + end end From null+ranguba at clear-code.com Tue Sep 13 20:31:26 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 14 Sep 2011 00:31:26 +0000 Subject: [groonga-commit:4007] ranguba/activegroonga [master] [doc] use "Boolean" instead of "true, false". Message-ID: <20110914003443.0A8B62C462A@taiyaki.ru> Kouhei Sutou 2011-09-14 00:31:26 +0000 (Wed, 14 Sep 2011) New Revision: 94fcb4a65cca8d5cde51bfbdc896c3c180319f9e Log: [doc] use "Boolean" instead of "true, false". Modified files: lib/active_groonga/result_set.rb Modified: lib/active_groonga/result_set.rb (+1 -1) =================================================================== --- lib/active_groonga/result_set.rb 2011-09-14 00:29:33 +0000 (54ff79c) +++ lib/active_groonga/result_set.rb 2011-09-14 00:31:26 +0000 (f3dcae7) @@ -159,7 +159,7 @@ module ActiveGroonga # Returns whether this result set has records or not. # - # @return [true, false] true if the result set has one + # @return [Boolean] true if the result set has one # or more records, false otherwise. def empty? records.empty? From null+ranguba at clear-code.com Tue Sep 13 20:35:04 2011 From: null+ranguba at clear-code.com (null+ranguba at clear-code.com) Date: Wed, 14 Sep 2011 00:35:04 +0000 Subject: [groonga-commit:4008] ranguba/activegroonga [master] [doc][translate][ja] update. Message-ID: <20110914003823.1A32F2C462B@taiyaki.ru> Kouhei Sutou 2011-09-14 00:35:04 +0000 (Wed, 14 Sep 2011) New Revision: 968c51475769d02f450521380b55ff71b755d50d Log: [doc][translate][ja] update. Modified files: doc/po/ja.po Modified: doc/po/ja.po (+7366 -7902) =================================================================== --- doc/po/ja.po 2011-09-14 00:31:26 +0000 (d1578f5) +++ doc/po/ja.po 2011-09-14 00:35:04 +0000 (bf5c2d5) @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ActiveGroonga 1.0.5\n" -"POT-Creation-Date: 2011-09-05 00:03+0900\n" -"PO-Revision-Date: 2011-09-05 00:03+0900\n" +"POT-Creation-Date: 2011-09-14 09:31+0900\n" +"PO-Revision-Date: 2011-09-14 09:34+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" "Language: ja\n" @@ -16,62 +16,65 @@ msgid "File: news — activegroonga" msgstr "" #: doc/reference/en/file.news.html:17(script) +#: doc/reference/en/file.README.html:17(script) +#: doc/reference/en/index.html:17(script) #: doc/reference/en/top-level-namespace.html:17(script) +#: doc/reference/en/_index.html:15(script) #: doc/reference/en/file.lgpl.html:17(script) -#: doc/reference/en/index.html:17(script) -#: doc/reference/en/file.README.html:17(script) +#: doc/reference/en/file.tutorial.html:17(script) #: doc/reference/en/ActiveGroonga.html:17(script) -#: doc/reference/en/_index.html:15(script) msgid "relpath = ''; if (relpath != '') relpath += '/';" msgstr "" #: doc/reference/en/file.news.html:29(script) -#: doc/reference/en/top-level-namespace.html:29(script) -#: doc/reference/en/file.lgpl.html:29(script) -#: doc/reference/en/index.html:29(script) -#: doc/reference/en/ActiveSupport/TestCase.html:29(script) #: doc/reference/en/file.README.html:29(script) -#: doc/reference/en/ActiveGroonga.html:29(script) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:29(script) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:29(script) #: doc/reference/en/ActiveGroonga/Generators.html:29(script) -#: doc/reference/en/ActiveGroonga/Railtie.html:29(script) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:29(script) -#: doc/reference/en/ActiveGroonga/Persistence.html:29(script) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:29(script) +#: doc/reference/en/ActiveGroonga/Schema.html:29(script) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:29(script) #: doc/reference/en/ActiveGroonga/Generators/Column.html:29(script) #: doc/reference/en/ActiveGroonga/Generators/Base.html:29(script) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:29(script) -#: doc/reference/en/ActiveGroonga/Schema.html:29(script) +#: doc/reference/en/ActiveGroonga/Persistence.html:29(script) +#: doc/reference/en/ActiveGroonga/Error.html:29(script) #: doc/reference/en/ActiveGroonga/Validations.html:29(script) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:29(script) #: doc/reference/en/ActiveGroonga/TestFixtures.html:29(script) -#: doc/reference/en/ActiveGroonga/Base.html:29(script) -#: doc/reference/en/ActiveGroonga/Migrator.html:29(script) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:29(script) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:29(script) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:29(script) +#: doc/reference/en/ActiveGroonga/Railties.html:29(script) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:29(script) #: doc/reference/en/ActiveGroonga/Database.html:29(script) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:29(script) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:29(script) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:29(script) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:29(script) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:29(script) +#: doc/reference/en/ActiveGroonga/Callbacks.html:29(script) +#: doc/reference/en/ActiveGroonga/Migration.html:29(script) +#: doc/reference/en/ActiveGroonga/Vector.html:29(script) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:29(script) -#: doc/reference/en/ActiveGroonga/VERSION.html:29(script) +#: doc/reference/en/ActiveGroonga/Base.html:29(script) +#: doc/reference/en/ActiveGroonga/ResultSet.html:29(script) #: doc/reference/en/ActiveGroonga/TestCase.html:29(script) -#: doc/reference/en/ActiveGroonga/Error.html:29(script) -#: doc/reference/en/ActiveGroonga/Railties.html:29(script) -#: doc/reference/en/ActiveGroonga/Migration.html:29(script) -#: doc/reference/en/ActiveGroonga/Callbacks.html:29(script) +#: doc/reference/en/ActiveGroonga/Railtie.html:29(script) +#: doc/reference/en/ActiveGroonga/Migrator.html:29(script) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:29(script) -#: doc/reference/en/ActiveGroonga/ResultSet.html:29(script) -#: doc/reference/en/ActiveGroonga/Vector.html:29(script) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:29(script) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:29(script) +#: doc/reference/en/ActiveGroonga/VERSION.html:29(script) +#: doc/reference/en/index.html:29(script) +#: doc/reference/en/top-level-namespace.html:29(script) +#: doc/reference/en/ActiveSupport/TestCase.html:29(script) #: doc/reference/en/_index.html:27(script) +#: doc/reference/en/file.lgpl.html:29(script) +#: doc/reference/en/file.tutorial.html:29(script) +#: doc/reference/en/ActiveGroonga.html:29(script) msgid "if (window.top.frames.main) document.body.className = 'frames';" 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.lgpl.html:36(a) doc/reference/en/index.html:36(a) -#: doc/reference/en/file.README.html:36(a) +#: doc/reference/en/file.lgpl.html:36(a) +#: doc/reference/en/file.tutorial.html:36(a) msgid "Index" msgstr "" @@ -80,649 +83,632 @@ msgid "File: news" msgstr "????: ????" #: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) -#: doc/reference/en/file.lgpl.html:40(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/ActiveSupport/TestCase.html:42(span) #: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/ActiveGroonga.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:42(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:214(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) #: doc/reference/en/ActiveGroonga/Generators.html:42(span) -#: doc/reference/en/ActiveGroonga/Railtie.html:42(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:156(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:158(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:159(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:162(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:166(span) +#: doc/reference/en/ActiveGroonga/Schema.html:42(span) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Schema.html:399(span) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:826(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:875(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:924(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:973(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:239(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:240(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:346(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:376(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) #: doc/reference/en/ActiveGroonga/Persistence.html:42(span) #: doc/reference/en/ActiveGroonga/Persistence.html:383(span) #: doc/reference/en/ActiveGroonga/Persistence.html:385(span) #: doc/reference/en/ActiveGroonga/Persistence.html:386(span) #: doc/reference/en/ActiveGroonga/Persistence.html:387(span) #: doc/reference/en/ActiveGroonga/Persistence.html:388(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:453(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:649(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:679(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:708(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:709(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:739(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:742(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:771(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:802(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:379(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) -#: doc/reference/en/ActiveGroonga/Schema.html:42(span) -#: doc/reference/en/ActiveGroonga/Schema.html:262(span) -#: doc/reference/en/ActiveGroonga/Schema.html:263(span) -#: doc/reference/en/ActiveGroonga/Schema.html:264(span) -#: doc/reference/en/ActiveGroonga/Schema.html:265(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:301(span) -#: doc/reference/en/ActiveGroonga/Schema.html:302(span) -#: doc/reference/en/ActiveGroonga/Schema.html:337(span) -#: doc/reference/en/ActiveGroonga/Schema.html:339(span) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:403(span) -#: doc/reference/en/ActiveGroonga/Schema.html:404(span) -#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:640(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:698(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:727(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:730(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:758(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:788(span) +#: doc/reference/en/ActiveGroonga/Error.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) -#: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Validations.html:295(span) -#: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Validations.html:297(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/Validations.html:293(span) +#: doc/reference/en/ActiveGroonga/Validations.html:294(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:42(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) -#: doc/reference/en/ActiveGroonga/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Base.html:1164(span) -#: doc/reference/en/ActiveGroonga/Base.html:1173(span) -#: doc/reference/en/ActiveGroonga/Base.html:1174(span) -#: doc/reference/en/ActiveGroonga/Base.html:1177(span) -#: doc/reference/en/ActiveGroonga/Base.html:1387(span) -#: doc/reference/en/ActiveGroonga/Base.html:1388(span) -#: doc/reference/en/ActiveGroonga/Base.html:1422(span) -#: doc/reference/en/ActiveGroonga/Base.html:1425(span) -#: doc/reference/en/ActiveGroonga/Base.html:1524(span) -#: doc/reference/en/ActiveGroonga/Base.html:1525(span) -#: doc/reference/en/ActiveGroonga/Base.html:1527(span) -#: doc/reference/en/ActiveGroonga/Base.html:1530(span) -#: doc/reference/en/ActiveGroonga/Base.html:1531(span) -#: doc/reference/en/ActiveGroonga/Base.html:1564(span) -#: doc/reference/en/ActiveGroonga/Base.html:1596(span) -#: doc/reference/en/ActiveGroonga/Base.html:1626(span) -#: doc/reference/en/ActiveGroonga/Base.html:1627(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1696(span) -#: doc/reference/en/ActiveGroonga/Base.html:1698(span) -#: doc/reference/en/ActiveGroonga/Base.html:1699(span) -#: doc/reference/en/ActiveGroonga/Base.html:1733(span) -#: doc/reference/en/ActiveGroonga/Base.html:1735(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1771(span) -#: doc/reference/en/ActiveGroonga/Base.html:1837(span) -#: doc/reference/en/ActiveGroonga/Base.html:1838(span) -#: doc/reference/en/ActiveGroonga/Base.html:1843(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:1887(span) -#: doc/reference/en/ActiveGroonga/Base.html:1888(span) -#: doc/reference/en/ActiveGroonga/Base.html:1891(span) -#: doc/reference/en/ActiveGroonga/Base.html:1895(span) -#: doc/reference/en/ActiveGroonga/Base.html:1899(span) -#: doc/reference/en/ActiveGroonga/Base.html:1999(span) -#: doc/reference/en/ActiveGroonga/Base.html:2000(span) -#: doc/reference/en/ActiveGroonga/Base.html:2001(span) -#: doc/reference/en/ActiveGroonga/Base.html:2003(span) -#: doc/reference/en/ActiveGroonga/Base.html:2005(span) -#: doc/reference/en/ActiveGroonga/Base.html:2036(span) -#: doc/reference/en/ActiveGroonga/Base.html:2071(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) -#: doc/reference/en/ActiveGroonga/Base.html:2074(span) -#: doc/reference/en/ActiveGroonga/Base.html:2076(span) -#: doc/reference/en/ActiveGroonga/Base.html:2137(span) -#: doc/reference/en/ActiveGroonga/Base.html:2170(span) -#: doc/reference/en/ActiveGroonga/Base.html:2205(span) -#: doc/reference/en/ActiveGroonga/Base.html:2206(span) -#: doc/reference/en/ActiveGroonga/Base.html:2265(span) -#: doc/reference/en/ActiveGroonga/Base.html:2267(span) -#: doc/reference/en/ActiveGroonga/Base.html:2347(span) -#: doc/reference/en/ActiveGroonga/Base.html:2348(span) -#: doc/reference/en/ActiveGroonga/Base.html:2505(span) -#: doc/reference/en/ActiveGroonga/Base.html:2506(span) -#: doc/reference/en/ActiveGroonga/Base.html:2507(span) -#: doc/reference/en/ActiveGroonga/Base.html:2536(span) -#: doc/reference/en/ActiveGroonga/Base.html:2660(span) -#: doc/reference/en/ActiveGroonga/Base.html:2747(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:42(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:251(span) -#: doc/reference/en/ActiveGroonga/Database.html:332(span) -#: doc/reference/en/ActiveGroonga/Database.html:335(span) -#: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:216(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) -#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) -#: doc/reference/en/ActiveGroonga/VERSION.html:42(span) -#: doc/reference/en/ActiveGroonga/VERSION.html:106(span) -#: doc/reference/en/ActiveGroonga/TestCase.html:42(span) -#: doc/reference/en/ActiveGroonga/Error.html:42(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:363(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:393(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) #: doc/reference/en/ActiveGroonga/Railties.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:327(span) -#: doc/reference/en/ActiveGroonga/Migration.html:370(span) -#: doc/reference/en/ActiveGroonga/Migration.html:371(span) -#: doc/reference/en/ActiveGroonga/Migration.html:372(span) -#: doc/reference/en/ActiveGroonga/Migration.html:498(span) -#: doc/reference/en/ActiveGroonga/Migration.html:577(span) -#: doc/reference/en/ActiveGroonga/Migration.html:581(span) -#: doc/reference/en/ActiveGroonga/Migration.html:583(span) -#: doc/reference/en/ActiveGroonga/Migration.html:586(span) -#: doc/reference/en/ActiveGroonga/Migration.html:590(span) -#: doc/reference/en/ActiveGroonga/Migration.html:592(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:617(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:719(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:860(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:961(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) -#: doc/reference/en/ActiveGroonga/Vector.html:42(span) -#: doc/reference/en/ActiveGroonga/Vector.html:379(span) -#: doc/reference/en/ActiveGroonga/Vector.html:383(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Database.html:42(span) +#: doc/reference/en/ActiveGroonga/Database.html:250(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:168(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:170(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:171(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:174(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:190(span) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:385(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/Migration.html:42(span) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Migration.html:490(span) +#: doc/reference/en/ActiveGroonga/Migration.html:567(span) +#: doc/reference/en/ActiveGroonga/Migration.html:571(span) +#: doc/reference/en/ActiveGroonga/Migration.html:573(span) +#: doc/reference/en/ActiveGroonga/Migration.html:576(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Vector.html:42(span) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) +#: doc/reference/en/ActiveGroonga/Base.html:42(span) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1170(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1377(span) +#: doc/reference/en/ActiveGroonga/Base.html:1410(span) +#: doc/reference/en/ActiveGroonga/Base.html:1413(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1512(span) +#: doc/reference/en/ActiveGroonga/Base.html:1515(span) +#: doc/reference/en/ActiveGroonga/Base.html:1516(span) +#: doc/reference/en/ActiveGroonga/Base.html:1548(span) +#: doc/reference/en/ActiveGroonga/Base.html:1579(span) +#: doc/reference/en/ActiveGroonga/Base.html:1608(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:1645(span) +#: doc/reference/en/ActiveGroonga/Base.html:1676(span) +#: doc/reference/en/ActiveGroonga/Base.html:1678(span) +#: doc/reference/en/ActiveGroonga/Base.html:1679(span) +#: doc/reference/en/ActiveGroonga/Base.html:1712(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1715(span) +#: doc/reference/en/ActiveGroonga/Base.html:1749(span) +#: doc/reference/en/ActiveGroonga/Base.html:1813(span) +#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1819(span) +#: doc/reference/en/ActiveGroonga/Base.html:1823(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1863(span) +#: doc/reference/en/ActiveGroonga/Base.html:1866(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1874(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:1971(span) +#: doc/reference/en/ActiveGroonga/Base.html:1972(span) +#: doc/reference/en/ActiveGroonga/Base.html:1973(span) +#: doc/reference/en/ActiveGroonga/Base.html:1975(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +#: doc/reference/en/ActiveGroonga/Base.html:2007(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2042(span) +#: doc/reference/en/ActiveGroonga/Base.html:2044(span) +#: doc/reference/en/ActiveGroonga/Base.html:2046(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2172(span) +#: doc/reference/en/ActiveGroonga/Base.html:2229(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2308(span) +#: doc/reference/en/ActiveGroonga/Base.html:2309(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/Base.html:2461(span) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Base.html:2491(span) +#: doc/reference/en/ActiveGroonga/Base.html:2611(span) +#: doc/reference/en/ActiveGroonga/Base.html:2695(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:379(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:549(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:630(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:631(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(span) +#: doc/reference/en/ActiveGroonga/TestCase.html:42(span) +#: doc/reference/en/ActiveGroonga/Railtie.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:295(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:457(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:374(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:412(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:413(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:42(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:103(span) +#: doc/reference/en/index.html:40(span) +#: doc/reference/en/top-level-namespace.html:42(span) +#: doc/reference/en/ActiveSupport/TestCase.html:42(span) #: doc/reference/en/_index.html:38(span) +#: doc/reference/en/file.lgpl.html:40(span) +#: doc/reference/en/file.tutorial.html:40(span) +#: doc/reference/en/ActiveGroonga.html:42(span) msgid "(" msgstr "" #: doc/reference/en/file.news.html:40(a) -#: doc/reference/en/top-level-namespace.html:42(a) -#: doc/reference/en/file.lgpl.html:40(a) doc/reference/en/index.html:40(a) -#: doc/reference/en/ActiveSupport/TestCase.html:42(a) #: doc/reference/en/file.README.html:40(a) -#: doc/reference/en/ActiveGroonga.html:42(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:42(a) #: doc/reference/en/ActiveGroonga/Generators.html:42(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:42(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:42(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(a) +#: doc/reference/en/ActiveGroonga/Schema.html:42(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:42(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:42(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(a) -#: doc/reference/en/ActiveGroonga/Schema.html:42(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:42(a) +#: doc/reference/en/ActiveGroonga/Error.html:42(a) #: doc/reference/en/ActiveGroonga/Validations.html:42(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:42(a) -#: doc/reference/en/ActiveGroonga/Base.html:42(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:42(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(a) +#: doc/reference/en/ActiveGroonga/Railties.html:42(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(a) #: doc/reference/en/ActiveGroonga/Database.html:42(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(a) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:42(a) +#: doc/reference/en/ActiveGroonga/Migration.html:42(a) +#: doc/reference/en/ActiveGroonga/Vector.html:42(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:42(a) +#: doc/reference/en/ActiveGroonga/Base.html:42(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:42(a) #: doc/reference/en/ActiveGroonga/TestCase.html:42(a) -#: doc/reference/en/ActiveGroonga/Error.html:42(a) -#: doc/reference/en/ActiveGroonga/Railties.html:42(a) -#: doc/reference/en/ActiveGroonga/Migration.html:42(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:42(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:42(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:42(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:42(a) -#: doc/reference/en/ActiveGroonga/Vector.html:42(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(a) -#: doc/reference/en/_index.html:38(a) +#: doc/reference/en/ActiveGroonga/VERSION.html:42(a) +#: doc/reference/en/index.html:40(a) +#: doc/reference/en/top-level-namespace.html:42(a) +#: doc/reference/en/ActiveSupport/TestCase.html:42(a) +#: doc/reference/en/_index.html:38(a) doc/reference/en/file.lgpl.html:40(a) +#: doc/reference/en/file.tutorial.html:40(a) +#: doc/reference/en/ActiveGroonga.html:42(a) msgid "no frames" msgstr "" #: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) -#: doc/reference/en/file.lgpl.html:40(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/ActiveSupport/TestCase.html:42(span) #: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/ActiveGroonga.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:42(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:214(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) #: doc/reference/en/ActiveGroonga/Generators.html:42(span) -#: doc/reference/en/ActiveGroonga/Railtie.html:42(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:156(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:158(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:159(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:161(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:162(span) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:166(span) +#: doc/reference/en/ActiveGroonga/Schema.html:42(span) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Schema.html:399(span) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:776(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:826(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:875(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:924(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:973(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:239(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:240(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:483(span) #: doc/reference/en/ActiveGroonga/Persistence.html:42(span) #: doc/reference/en/ActiveGroonga/Persistence.html:383(span) #: doc/reference/en/ActiveGroonga/Persistence.html:385(span) #: doc/reference/en/ActiveGroonga/Persistence.html:386(span) #: doc/reference/en/ActiveGroonga/Persistence.html:387(span) #: doc/reference/en/ActiveGroonga/Persistence.html:388(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:453(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:649(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:679(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:708(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:709(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:739(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:741(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:742(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:771(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:802(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:224(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:843(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:894(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:945(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:996(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:243(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:349(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:380(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:414(span) -#: doc/reference/en/ActiveGroonga/Schema.html:42(span) -#: doc/reference/en/ActiveGroonga/Schema.html:262(span) -#: doc/reference/en/ActiveGroonga/Schema.html:263(span) -#: doc/reference/en/ActiveGroonga/Schema.html:264(span) -#: doc/reference/en/ActiveGroonga/Schema.html:265(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Schema.html:301(span) -#: doc/reference/en/ActiveGroonga/Schema.html:302(span) -#: doc/reference/en/ActiveGroonga/Schema.html:337(span) -#: doc/reference/en/ActiveGroonga/Schema.html:339(span) -#: doc/reference/en/ActiveGroonga/Schema.html:341(span) -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:403(span) -#: doc/reference/en/ActiveGroonga/Schema.html:404(span) -#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:640(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:698(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:727(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:730(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:758(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:788(span) +#: doc/reference/en/ActiveGroonga/Error.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:42(span) #: doc/reference/en/ActiveGroonga/Validations.html:213(span) #: doc/reference/en/ActiveGroonga/Validations.html:214(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) #: doc/reference/en/ActiveGroonga/Validations.html:242(span) -#: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Validations.html:295(span) -#: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Validations.html:297(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/Validations.html:293(span) +#: doc/reference/en/ActiveGroonga/Validations.html:294(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:42(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) #: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) -#: doc/reference/en/ActiveGroonga/Base.html:42(span) -#: doc/reference/en/ActiveGroonga/Base.html:1164(span) -#: doc/reference/en/ActiveGroonga/Base.html:1173(span) -#: doc/reference/en/ActiveGroonga/Base.html:1174(span) -#: doc/reference/en/ActiveGroonga/Base.html:1177(span) -#: doc/reference/en/ActiveGroonga/Base.html:1387(span) -#: doc/reference/en/ActiveGroonga/Base.html:1388(span) -#: doc/reference/en/ActiveGroonga/Base.html:1422(span) -#: doc/reference/en/ActiveGroonga/Base.html:1425(span) -#: doc/reference/en/ActiveGroonga/Base.html:1524(span) -#: doc/reference/en/ActiveGroonga/Base.html:1525(span) -#: doc/reference/en/ActiveGroonga/Base.html:1527(span) -#: doc/reference/en/ActiveGroonga/Base.html:1530(span) -#: doc/reference/en/ActiveGroonga/Base.html:1531(span) -#: doc/reference/en/ActiveGroonga/Base.html:1564(span) -#: doc/reference/en/ActiveGroonga/Base.html:1596(span) -#: doc/reference/en/ActiveGroonga/Base.html:1626(span) -#: doc/reference/en/ActiveGroonga/Base.html:1627(span) -#: doc/reference/en/ActiveGroonga/Base.html:1664(span) -#: doc/reference/en/ActiveGroonga/Base.html:1696(span) -#: doc/reference/en/ActiveGroonga/Base.html:1698(span) -#: doc/reference/en/ActiveGroonga/Base.html:1699(span) -#: doc/reference/en/ActiveGroonga/Base.html:1733(span) -#: doc/reference/en/ActiveGroonga/Base.html:1735(span) -#: doc/reference/en/ActiveGroonga/Base.html:1736(span) -#: doc/reference/en/ActiveGroonga/Base.html:1771(span) -#: doc/reference/en/ActiveGroonga/Base.html:1837(span) -#: doc/reference/en/ActiveGroonga/Base.html:1838(span) -#: doc/reference/en/ActiveGroonga/Base.html:1843(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:1887(span) -#: doc/reference/en/ActiveGroonga/Base.html:1888(span) -#: doc/reference/en/ActiveGroonga/Base.html:1891(span) -#: doc/reference/en/ActiveGroonga/Base.html:1895(span) -#: doc/reference/en/ActiveGroonga/Base.html:1899(span) -#: doc/reference/en/ActiveGroonga/Base.html:1999(span) -#: doc/reference/en/ActiveGroonga/Base.html:2000(span) -#: doc/reference/en/ActiveGroonga/Base.html:2001(span) -#: doc/reference/en/ActiveGroonga/Base.html:2003(span) -#: doc/reference/en/ActiveGroonga/Base.html:2005(span) -#: doc/reference/en/ActiveGroonga/Base.html:2036(span) -#: doc/reference/en/ActiveGroonga/Base.html:2071(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) -#: doc/reference/en/ActiveGroonga/Base.html:2074(span) -#: doc/reference/en/ActiveGroonga/Base.html:2076(span) -#: doc/reference/en/ActiveGroonga/Base.html:2137(span) -#: doc/reference/en/ActiveGroonga/Base.html:2170(span) -#: doc/reference/en/ActiveGroonga/Base.html:2205(span) -#: doc/reference/en/ActiveGroonga/Base.html:2206(span) -#: doc/reference/en/ActiveGroonga/Base.html:2265(span) -#: doc/reference/en/ActiveGroonga/Base.html:2267(span) -#: doc/reference/en/ActiveGroonga/Base.html:2347(span) -#: doc/reference/en/ActiveGroonga/Base.html:2348(span) -#: doc/reference/en/ActiveGroonga/Base.html:2505(span) -#: doc/reference/en/ActiveGroonga/Base.html:2506(span) -#: doc/reference/en/ActiveGroonga/Base.html:2507(span) -#: doc/reference/en/ActiveGroonga/Base.html:2536(span) -#: doc/reference/en/ActiveGroonga/Base.html:2660(span) -#: doc/reference/en/ActiveGroonga/Base.html:2747(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:42(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:479(span) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:42(span) -#: doc/reference/en/ActiveGroonga/Database.html:251(span) -#: doc/reference/en/ActiveGroonga/Database.html:333(span) -#: doc/reference/en/ActiveGroonga/Database.html:335(span) -#: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:389(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:390(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:391(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:42(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:216(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) #: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:42(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:302(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:368(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:399(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:400(span) -#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) -#: doc/reference/en/ActiveGroonga/VERSION.html:42(span) -#: doc/reference/en/ActiveGroonga/VERSION.html:106(span) -#: doc/reference/en/ActiveGroonga/TestCase.html:42(span) -#: doc/reference/en/ActiveGroonga/Error.html:42(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:363(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:393(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) #: doc/reference/en/ActiveGroonga/Railties.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:42(span) -#: doc/reference/en/ActiveGroonga/Migration.html:327(span) -#: doc/reference/en/ActiveGroonga/Migration.html:370(span) -#: doc/reference/en/ActiveGroonga/Migration.html:371(span) -#: doc/reference/en/ActiveGroonga/Migration.html:372(span) -#: doc/reference/en/ActiveGroonga/Migration.html:498(span) -#: doc/reference/en/ActiveGroonga/Migration.html:577(span) -#: doc/reference/en/ActiveGroonga/Migration.html:581(span) -#: doc/reference/en/ActiveGroonga/Migration.html:583(span) -#: doc/reference/en/ActiveGroonga/Migration.html:586(span) -#: doc/reference/en/ActiveGroonga/Migration.html:590(span) -#: doc/reference/en/ActiveGroonga/Migration.html:592(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:447(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:354(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:359(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:536(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:565(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:566(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:619(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:720(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:805(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:806(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:809(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:862(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:962(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1040(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1041(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1045(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1046(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1047(span) -#: doc/reference/en/ActiveGroonga/Vector.html:42(span) -#: doc/reference/en/ActiveGroonga/Vector.html:379(span) -#: doc/reference/en/ActiveGroonga/Vector.html:383(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:42(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:252(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:42(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Database.html:42(span) +#: doc/reference/en/ActiveGroonga/Database.html:250(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:42(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:168(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:170(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:171(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:174(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:190(span) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:42(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) #: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:42(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:385(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:42(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/Migration.html:42(span) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Migration.html:490(span) +#: doc/reference/en/ActiveGroonga/Migration.html:567(span) +#: doc/reference/en/ActiveGroonga/Migration.html:571(span) +#: doc/reference/en/ActiveGroonga/Migration.html:573(span) +#: doc/reference/en/ActiveGroonga/Migration.html:576(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Vector.html:42(span) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:42(span) +#: doc/reference/en/ActiveGroonga/Base.html:42(span) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1170(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1377(span) +#: doc/reference/en/ActiveGroonga/Base.html:1410(span) +#: doc/reference/en/ActiveGroonga/Base.html:1413(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1512(span) +#: doc/reference/en/ActiveGroonga/Base.html:1515(span) +#: doc/reference/en/ActiveGroonga/Base.html:1516(span) +#: doc/reference/en/ActiveGroonga/Base.html:1548(span) +#: doc/reference/en/ActiveGroonga/Base.html:1579(span) +#: doc/reference/en/ActiveGroonga/Base.html:1608(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:1645(span) +#: doc/reference/en/ActiveGroonga/Base.html:1676(span) +#: doc/reference/en/ActiveGroonga/Base.html:1678(span) +#: doc/reference/en/ActiveGroonga/Base.html:1679(span) +#: doc/reference/en/ActiveGroonga/Base.html:1712(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1715(span) +#: doc/reference/en/ActiveGroonga/Base.html:1749(span) +#: doc/reference/en/ActiveGroonga/Base.html:1813(span) +#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1819(span) +#: doc/reference/en/ActiveGroonga/Base.html:1823(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1863(span) +#: doc/reference/en/ActiveGroonga/Base.html:1866(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1874(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:1971(span) +#: doc/reference/en/ActiveGroonga/Base.html:1972(span) +#: doc/reference/en/ActiveGroonga/Base.html:1973(span) +#: doc/reference/en/ActiveGroonga/Base.html:1975(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +#: doc/reference/en/ActiveGroonga/Base.html:2007(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2042(span) +#: doc/reference/en/ActiveGroonga/Base.html:2044(span) +#: doc/reference/en/ActiveGroonga/Base.html:2046(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2172(span) +#: doc/reference/en/ActiveGroonga/Base.html:2229(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2308(span) +#: doc/reference/en/ActiveGroonga/Base.html:2309(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/Base.html:2461(span) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Base.html:2491(span) +#: doc/reference/en/ActiveGroonga/Base.html:2611(span) +#: doc/reference/en/ActiveGroonga/Base.html:2695(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:42(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:379(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:549(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:630(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:631(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:683(span) +#: doc/reference/en/ActiveGroonga/TestCase.html:42(span) +#: doc/reference/en/ActiveGroonga/Railtie.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:42(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:295(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:457(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:42(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:374(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:412(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:413(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:42(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:103(span) +#: doc/reference/en/index.html:40(span) +#: doc/reference/en/top-level-namespace.html:42(span) +#: doc/reference/en/ActiveSupport/TestCase.html:42(span) #: doc/reference/en/_index.html:38(span) +#: doc/reference/en/file.lgpl.html:40(span) +#: doc/reference/en/file.tutorial.html:40(span) +#: doc/reference/en/ActiveGroonga.html:42(span) msgid ")" msgstr "" #: doc/reference/en/file.news.html:45(a) -#: doc/reference/en/top-level-namespace.html:47(a) -#: doc/reference/en/class_list.html:28(h1) -#: doc/reference/en/file.lgpl.html:45(a) doc/reference/en/index.html:45(a) -#: doc/reference/en/ActiveSupport/TestCase.html:47(a) #: doc/reference/en/file.README.html:45(a) -#: doc/reference/en/ActiveGroonga.html:47(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:47(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:47(a) #: doc/reference/en/ActiveGroonga/Generators.html:47(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:47(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:47(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:47(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:47(a) +#: doc/reference/en/ActiveGroonga/Schema.html:47(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:47(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:47(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:47(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:47(a) -#: doc/reference/en/ActiveGroonga/Schema.html:47(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:47(a) +#: doc/reference/en/ActiveGroonga/Error.html:47(a) #: doc/reference/en/ActiveGroonga/Validations.html:47(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:47(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:47(a) -#: doc/reference/en/ActiveGroonga/Base.html:47(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:47(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:47(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:47(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:47(a) +#: doc/reference/en/ActiveGroonga/Railties.html:47(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:47(a) #: doc/reference/en/ActiveGroonga/Database.html:47(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:47(a) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:47(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:47(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:47(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:47(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:47(a) +#: doc/reference/en/ActiveGroonga/Migration.html:47(a) +#: doc/reference/en/ActiveGroonga/Vector.html:47(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:47(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:47(a) +#: doc/reference/en/ActiveGroonga/Base.html:47(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:47(a) #: doc/reference/en/ActiveGroonga/TestCase.html:47(a) -#: doc/reference/en/ActiveGroonga/Error.html:47(a) -#: doc/reference/en/ActiveGroonga/Railties.html:47(a) -#: doc/reference/en/ActiveGroonga/Migration.html:47(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:47(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:47(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:47(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:47(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:47(a) -#: doc/reference/en/ActiveGroonga/Vector.html:47(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:47(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:47(a) -#: doc/reference/en/_index.html:43(a) +#: doc/reference/en/ActiveGroonga/VERSION.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/ActiveSupport/TestCase.html:47(a) +#: doc/reference/en/_index.html:43(a) doc/reference/en/file.lgpl.html:45(a) +#: doc/reference/en/file.tutorial.html:45(a) +#: doc/reference/en/ActiveGroonga.html:47(a) msgid "Class List" msgstr "" #: doc/reference/en/file.news.html:47(a) -#: doc/reference/en/top-level-namespace.html:49(a) -#: doc/reference/en/method_list.html:28(h1) -#: doc/reference/en/file.lgpl.html:47(a) doc/reference/en/index.html:47(a) -#: doc/reference/en/ActiveSupport/TestCase.html:49(a) #: doc/reference/en/file.README.html:47(a) -#: doc/reference/en/ActiveGroonga.html:49(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:49(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:49(a) #: doc/reference/en/ActiveGroonga/Generators.html:49(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:49(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:49(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:49(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:49(a) +#: doc/reference/en/ActiveGroonga/Schema.html:49(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:49(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:49(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:49(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:49(a) -#: doc/reference/en/ActiveGroonga/Schema.html:49(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:49(a) +#: doc/reference/en/ActiveGroonga/Error.html:49(a) #: doc/reference/en/ActiveGroonga/Validations.html:49(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:49(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:49(a) -#: doc/reference/en/ActiveGroonga/Base.html:49(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:49(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:49(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:49(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:49(a) +#: doc/reference/en/ActiveGroonga/Railties.html:49(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:49(a) #: doc/reference/en/ActiveGroonga/Database.html:49(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:49(a) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:49(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:49(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:49(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:49(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:49(a) +#: doc/reference/en/ActiveGroonga/Migration.html:49(a) +#: doc/reference/en/ActiveGroonga/Vector.html:49(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:49(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:49(a) +#: doc/reference/en/ActiveGroonga/Base.html:49(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:49(a) #: doc/reference/en/ActiveGroonga/TestCase.html:49(a) -#: doc/reference/en/ActiveGroonga/Error.html:49(a) -#: doc/reference/en/ActiveGroonga/Railties.html:49(a) -#: doc/reference/en/ActiveGroonga/Migration.html:49(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:49(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:49(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:49(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:49(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:49(a) -#: doc/reference/en/ActiveGroonga/Vector.html:49(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:49(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:49(a) -#: doc/reference/en/_index.html:45(a) +#: doc/reference/en/ActiveGroonga/VERSION.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/ActiveSupport/TestCase.html:49(a) +#: doc/reference/en/_index.html:45(a) doc/reference/en/file.lgpl.html:47(a) +#: doc/reference/en/file.tutorial.html:47(a) +#: doc/reference/en/ActiveGroonga.html:49(a) msgid "Method List" msgstr "" #: doc/reference/en/file.news.html:49(a) -#: doc/reference/en/top-level-namespace.html:51(a) -#: doc/reference/en/file.lgpl.html:49(a) doc/reference/en/index.html:49(a) -#: doc/reference/en/ActiveSupport/TestCase.html:51(a) #: doc/reference/en/file.README.html:49(a) -#: doc/reference/en/ActiveGroonga.html:51(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:51(a) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:51(a) #: doc/reference/en/ActiveGroonga/Generators.html:51(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:51(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:51(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:51(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:51(a) +#: doc/reference/en/ActiveGroonga/Schema.html:51(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:51(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:51(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:51(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:51(a) -#: doc/reference/en/ActiveGroonga/Schema.html:51(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:51(a) +#: doc/reference/en/ActiveGroonga/Error.html:51(a) #: doc/reference/en/ActiveGroonga/Validations.html:51(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:51(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:51(a) -#: doc/reference/en/ActiveGroonga/Base.html:51(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:51(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:51(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:51(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:51(a) +#: doc/reference/en/ActiveGroonga/Railties.html:51(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:51(a) #: doc/reference/en/ActiveGroonga/Database.html:51(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:51(a) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:51(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:51(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:51(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:51(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:51(a) +#: doc/reference/en/ActiveGroonga/Migration.html:51(a) +#: doc/reference/en/ActiveGroonga/Vector.html:51(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:51(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:51(a) +#: doc/reference/en/ActiveGroonga/Base.html:51(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:51(a) #: doc/reference/en/ActiveGroonga/TestCase.html:51(a) -#: doc/reference/en/ActiveGroonga/Error.html:51(a) -#: doc/reference/en/ActiveGroonga/Railties.html:51(a) -#: doc/reference/en/ActiveGroonga/Migration.html:51(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:51(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:51(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:51(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:51(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:51(a) -#: doc/reference/en/ActiveGroonga/Vector.html:51(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:51(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:51(a) -#: doc/reference/en/file_list.html:28(h1) doc/reference/en/_index.html:47(a) +#: doc/reference/en/ActiveGroonga/VERSION.html:51(a) +#: doc/reference/en/index.html:49(a) +#: doc/reference/en/top-level-namespace.html:51(a) +#: doc/reference/en/ActiveSupport/TestCase.html:51(a) +#: doc/reference/en/_index.html:47(a) doc/reference/en/file.lgpl.html:49(a) +#: doc/reference/en/file_list.html:28(h1) +#: doc/reference/en/file.tutorial.html:49(a) +#: doc/reference/en/ActiveGroonga.html:51(a) msgid "File List" msgstr "" @@ -747,7 +733,9 @@ msgstr "Rails 3.1.0???" #: doc/reference/en/file.news.html:62(li) msgid "groonga:seed showes seed candidate files on not found." -msgstr "groonga:seed?seed????????????????seed?????????????????????????" +msgstr "" +"groonga:seed?seed????????????????seed???????????" +"??????????????" #: doc/reference/en/file.news.html:63(span) msgid "YARD" @@ -862,4321 +850,4144 @@ msgstr "" msgid "Initial release!" msgstr "????????" -#: doc/reference/en/top-level-namespace.html:6(title) -msgid "Top Level Namespace — activegroonga" +#: doc/reference/en/file.README.html:6(title) +#: doc/reference/en/index.html:6(title) +msgid "File: README — activegroonga" msgstr "" -#: doc/reference/en/top-level-namespace.html:39(span) -#: doc/reference/en/top-level-namespace.html:59(h1) -#: doc/reference/en/class_list.html:41(a) -#: doc/reference/en/class_list.html:42(small) -msgid "Top Level Namespace" -msgstr "" +#: doc/reference/en/file.README.html:37(span) +#: doc/reference/en/index.html:37(span) +msgid "File: README" +msgstr "????: ????" -#: doc/reference/en/top-level-namespace.html:77(h2) -#: doc/reference/en/ActiveGroonga.html:105(h2) -#: doc/reference/en/ActiveGroonga/Generators.html:82(h2) -#: doc/reference/en/ActiveGroonga/Validations.html:92(h2) -#: doc/reference/en/ActiveGroonga/TestFixtures.html:84(h2) -#: doc/reference/en/ActiveGroonga/Railties.html:80(h2) -#: doc/reference/en/ActiveGroonga/ResultSet.html:99(h2) -msgid "Defined Under Namespace" -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/top-level-namespace.html:81(strong) -#: doc/reference/en/ActiveGroonga.html:109(strong) -#: doc/reference/en/ActiveGroonga/Validations.html:96(strong) -#: doc/reference/en/ActiveGroonga/Railties.html:84(strong) -#: doc/reference/en/ActiveGroonga/ResultSet.html:103(strong) -msgid "Modules:" -msgstr "" +#: doc/reference/en/file.README.html:58(h2) doc/reference/en/index.html:58(h2) +msgid "Name" +msgstr "??" -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/index.html:59(p) doc/reference/en/file.README.html:59(p) -#: doc/reference/en/ActiveGroonga.html:39(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:37(a) +#: doc/reference/en/file.README.html:59(p) #: doc/reference/en/ActiveGroonga/NoKeyTableError.html:37(a) #: doc/reference/en/ActiveGroonga/Generators.html:37(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:37(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:37(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:37(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:37(a) +#: doc/reference/en/ActiveGroonga/Schema.html:37(a) #: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:37(a) #: doc/reference/en/ActiveGroonga/Generators/Column.html:37(a) #: doc/reference/en/ActiveGroonga/Generators/Base.html:37(a) #: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:37(a) -#: doc/reference/en/ActiveGroonga/Schema.html:37(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:37(a) +#: doc/reference/en/ActiveGroonga/Error.html:37(a) #: doc/reference/en/ActiveGroonga/Validations.html:37(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:37(a) #: doc/reference/en/ActiveGroonga/TestFixtures.html:37(a) -#: doc/reference/en/ActiveGroonga/Base.html:37(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:37(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:37(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:37(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:37(a) +#: doc/reference/en/ActiveGroonga/Railties.html:37(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:37(a) #: doc/reference/en/ActiveGroonga/Database.html:37(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:37(a) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:37(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:37(a) #: doc/reference/en/ActiveGroonga/MigrationEntry.html:37(a) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:37(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:37(a) +#: doc/reference/en/ActiveGroonga/Migration.html:37(a) +#: doc/reference/en/ActiveGroonga/Vector.html:37(a) #: doc/reference/en/ActiveGroonga/RecordNotSaved.html:37(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:37(a) +#: doc/reference/en/ActiveGroonga/Base.html:37(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:37(a) #: doc/reference/en/ActiveGroonga/TestCase.html:37(a) -#: doc/reference/en/ActiveGroonga/Error.html:37(a) -#: doc/reference/en/ActiveGroonga/Railties.html:37(a) -#: doc/reference/en/ActiveGroonga/Migration.html:37(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:37(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:37(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:37(a) #: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:37(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:37(a) -#: doc/reference/en/ActiveGroonga/Vector.html:37(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:37(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:37(a) -#: doc/reference/en/_index.html:90(a) +#: doc/reference/en/ActiveGroonga/VERSION.html:37(a) +#: doc/reference/en/index.html:59(p) 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/_index.html:93(a) +#: doc/reference/en/ActiveGroonga.html:39(span) msgid "ActiveGroonga" msgstr "" -#: doc/reference/en/method_list.html:21(script) -#: doc/reference/en/class_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/method_list.html:31(a) -#: doc/reference/en/class_list.html:31(a) -#: doc/reference/en/file_list.html:31(a) -msgid "Classes" -msgstr "" +#: doc/reference/en/file.README.html:60(h2) doc/reference/en/index.html:60(h2) +msgid "Description" +msgstr "??" -#: doc/reference/en/method_list.html:33(a) -#: doc/reference/en/class_list.html:33(a) -#: doc/reference/en/file_list.html:33(a) -msgid "Methods" +#: doc/reference/en/file.README.html:61(span) +#: doc/reference/en/index.html:61(span) +msgid "API" msgstr "" -#: doc/reference/en/method_list.html:35(a) -#: doc/reference/en/class_list.html:35(a) -#: doc/reference/en/file_list.html:35(a) -msgid "Files" +#: doc/reference/en/file.README.html:61(p) doc/reference/en/index.html:61(p) +msgid "A library to use groonga with ActiveRecord like ." msgstr "" +"ActiveRecord??????groonga??????????????" -#: doc/reference/en/method_list.html:38(div) -#: doc/reference/en/class_list.html:38(div) -#: doc/reference/en/file_list.html:38(div) -msgid "Search: " +#: doc/reference/en/file.README.html:64(span) +#: doc/reference/en/index.html:64(span) +msgid "RDB" msgstr "" -#: doc/reference/en/method_list.html:44(a) -msgid "#<<" +#: doc/reference/en/file.README.html:62(p) doc/reference/en/index.html:62(p) +msgid "" +"groonga provides both of full text search and column store features. " +"ActiveGroonga + groonga can be used as an alternative of ActiveRecord + " +"." msgstr "" +"groonga??????????????????????????ActiveRecord?" +"????????????ActiveGroonga?groonga???????" +"??????????" -#: doc/reference/en/method_list.html:46(small) -#: doc/reference/en/method_list.html:102(small) -#: doc/reference/en/method_list.html:150(small) -#: doc/reference/en/method_list.html:158(small) -#: doc/reference/en/method_list.html:382(small) -#: doc/reference/en/method_list.html:614(small) -#: doc/reference/en/method_list.html:678(small) -#: doc/reference/en/method_list.html:822(small) -#: doc/reference/en/method_list.html:1126(small) -#: doc/reference/en/method_list.html:1206(small) -#: doc/reference/en/ActiveGroonga/Vector.html:74(li) -msgid "ActiveGroonga::Vector" +#: doc/reference/en/file.README.html:65(p) doc/reference/en/index.html:65(p) +msgid "" +"ActiveGroonga is based on rroonga. See the following URLs about rroonga and " +"groonga." msgstr "" +"rroonga???????????rroonga?groonga????????????????" +"??" -#: doc/reference/en/method_list.html:52(a) -msgid "#==" -msgstr "" - -#: doc/reference/en/method_list.html:54(small) -#: doc/reference/en/method_list.html:62(small) -#: doc/reference/en/method_list.html:70(small) -#: doc/reference/en/method_list.html:78(small) -#: doc/reference/en/method_list.html:118(small) -#: doc/reference/en/method_list.html:126(small) -#: doc/reference/en/method_list.html:134(small) -#: doc/reference/en/method_list.html:142(small) -#: doc/reference/en/method_list.html:238(small) -#: doc/reference/en/method_list.html:246(small) -#: doc/reference/en/method_list.html:254(small) -#: doc/reference/en/method_list.html:278(small) -#: doc/reference/en/method_list.html:286(small) -#: doc/reference/en/method_list.html:294(small) -#: doc/reference/en/method_list.html:390(small) -#: doc/reference/en/method_list.html:406(small) -#: doc/reference/en/method_list.html:422(small) -#: doc/reference/en/method_list.html:446(small) -#: doc/reference/en/method_list.html:454(small) -#: doc/reference/en/method_list.html:462(small) -#: doc/reference/en/method_list.html:470(small) -#: doc/reference/en/method_list.html:518(small) -#: doc/reference/en/method_list.html:630(small) -#: doc/reference/en/method_list.html:638(small) -#: doc/reference/en/method_list.html:646(small) -#: doc/reference/en/method_list.html:654(small) -#: doc/reference/en/method_list.html:670(small) -#: doc/reference/en/method_list.html:686(small) -#: doc/reference/en/method_list.html:878(small) -#: doc/reference/en/method_list.html:894(small) -#: doc/reference/en/method_list.html:902(small) -#: doc/reference/en/method_list.html:926(small) -#: doc/reference/en/method_list.html:1022(small) -#: doc/reference/en/method_list.html:1030(small) -#: doc/reference/en/method_list.html:1038(small) -#: doc/reference/en/method_list.html:1062(small) -#: doc/reference/en/method_list.html:1078(small) -#: doc/reference/en/method_list.html:1086(small) -#: doc/reference/en/method_list.html:1102(small) -#: doc/reference/en/method_list.html:1110(small) -#: doc/reference/en/method_list.html:1134(small) -#: doc/reference/en/method_list.html:1270(small) -#: doc/reference/en/ActiveGroonga/Base.html:74(li) -msgid "ActiveGroonga::Base" +#: doc/reference/en/file.README.html:68(a) +#: doc/reference/en/file.README.html:81(li) doc/reference/en/index.html:68(a) +#: doc/reference/en/index.html:81(li) +msgid "rroonga" msgstr "" -#: doc/reference/en/method_list.html:60(a) -#: doc/reference/en/ActiveGroonga/Base.html:232(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1370(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1387(span) -#: doc/reference/en/ActiveGroonga/Base.html:2072(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:611(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:712(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:856(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:956(span) -msgid "all" +#: doc/reference/en/file.README.html:69(a) doc/reference/en/index.html:69(a) +msgid "groonga" msgstr "" -#: doc/reference/en/method_list.html:68(a) -msgid "#attributes" -msgstr "" +#: doc/reference/en/file.README.html:71(h2) doc/reference/en/index.html:71(h2) +msgid "Authors" +msgstr "??" -#: doc/reference/en/method_list.html:76(a) -msgid "#attributes=" +#: doc/reference/en/file.README.html:73(li) doc/reference/en/index.html:73(li) +msgid "Kouhei Sutou <kou at clear-code.com>" msgstr "" -#: doc/reference/en/method_list.html:84(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:188(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:134(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:187(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:263(a) -msgid "base_root" -msgstr "" +#: doc/reference/en/file.README.html:75(h2) doc/reference/en/index.html:75(h2) +msgid "License" +msgstr "?????" -#: doc/reference/en/method_list.html:86(small) -#: doc/reference/en/method_list.html:806(small) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:76(li) -msgid "ActiveGroonga::Generators::Base" +#: doc/reference/en/file.README.html:76(span) +#: doc/reference/en/index.html:76(span) +msgid "LGPL" msgstr "" -#: doc/reference/en/method_list.html:92(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#becomes" +#: doc/reference/en/file.README.html:76(p) doc/reference/en/index.html:76(p) +msgid " 2.1. See license/ for details." msgstr "" +" 2.1???????license/????????" -#: doc/reference/en/method_list.html:94(small) -#: doc/reference/en/method_list.html:310(small) -#: doc/reference/en/method_list.html:318(small) -#: doc/reference/en/method_list.html:334(small) -#: doc/reference/en/method_list.html:798(small) -#: doc/reference/en/method_list.html:862(small) -#: doc/reference/en/method_list.html:942(small) -#: doc/reference/en/method_list.html:990(small) -#: doc/reference/en/method_list.html:1006(small) -#: doc/reference/en/method_list.html:1166(small) -#: doc/reference/en/method_list.html:1174(small) -#: doc/reference/en/method_list.html:1182(small) -msgid "ActiveGroonga::Persistence" +#: doc/reference/en/file.README.html:77(p) doc/reference/en/index.html:77(p) +msgid "" +"(Kouhei Sutou has a right to change license inclidng contributed patches.)" msgstr "" +"?????????????????????Kouhei Sutou???????????" +"?????????" -#: doc/reference/en/method_list.html:100(a) -msgid "#build" -msgstr "" +#: doc/reference/en/file.README.html:79(h2) doc/reference/en/index.html:79(h2) +msgid "Dependencies" +msgstr "????????" -#: doc/reference/en/method_list.html:108(a) -msgid "#close" -msgstr "" +#: doc/reference/en/file.README.html:83(h2) doc/reference/en/index.html:83(h2) +msgid "Install" +msgstr "??????" -#: doc/reference/en/method_list.html:110(small) -#: doc/reference/en/method_list.html:398(small) -#: doc/reference/en/method_list.html:510(small) -#: doc/reference/en/method_list.html:950(small) -#: doc/reference/en/method_list.html:982(small) -#: doc/reference/en/ActiveGroonga/Database.html:74(li) -msgid "ActiveGroonga::Database" +#: doc/reference/en/file.README.html:84(pre) +#: doc/reference/en/index.html:84(pre) +msgid "% sudo gem install activegroonga" msgstr "" -#: doc/reference/en/method_list.html:116(a) -#: doc/reference/en/ActiveGroonga/Base.html:253(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1399(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1422(span) -#: doc/reference/en/ActiveGroonga/Base.html:1425(span) -msgid "configure" -msgstr "" +#: doc/reference/en/file.README.html:86(h2) doc/reference/en/index.html:86(h2) +msgid "Documents" +msgstr "??????" -#: doc/reference/en/method_list.html:124(a) -#: doc/reference/en/ActiveGroonga/Schema.html:265(span) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Validations.html:295(span) -#: doc/reference/en/ActiveGroonga/Validations.html:296(span) -#: doc/reference/en/ActiveGroonga/Validations.html:297(span) -#: doc/reference/en/ActiveGroonga/Base.html:274(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1440(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1457(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:2105(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) -#: doc/reference/en/ActiveGroonga/Database.html:333(span) -#: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -msgid "context" -msgstr "" +#: doc/reference/en/file.README.html:88(a) doc/reference/en/index.html:88(a) +msgid "Reference manual in English" +msgstr "???????????????" -#: doc/reference/en/method_list.html:132(a) -#: doc/reference/en/ActiveGroonga/Base.html:295(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1469(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1486(span) -msgid "count" -msgstr "" +#: doc/reference/en/file.README.html:89(a) doc/reference/en/index.html:89(a) +msgid "Reference manual in Japanese" +msgstr "????????????????" -#: doc/reference/en/method_list.html:140(a) -#: doc/reference/en/ActiveGroonga/Base.html:316(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1498(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1524(span) -#: doc/reference/en/ActiveGroonga/Base.html:1527(span) -#: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/ActiveGroonga/Vector.html:236(strong) -msgid "create" -msgstr "" +#: doc/reference/en/file.README.html:91(h2) doc/reference/en/index.html:91(h2) +msgid "Mailing list" +msgstr "????????" -#: doc/reference/en/method_list.html:148(a) -msgid "#create" +#: doc/reference/en/file.README.html:93(a) doc/reference/en/index.html:93(a) +msgid "groonga-users-en" msgstr "" -#: doc/reference/en/method_list.html:156(a) -#: doc/reference/en/method_list.html:164(a) -msgid "#create!" -msgstr "" +#: doc/reference/en/file.README.html:93(li) doc/reference/en/index.html:93(li) +msgid "English: " +msgstr "??: " -#: doc/reference/en/method_list.html:166(small) -msgid "ActiveGroonga::Validations::ClassMethods" +#: doc/reference/en/file.README.html:94(a) doc/reference/en/index.html:94(a) +msgid "groonga-dev" msgstr "" -#: doc/reference/en/method_list.html:172(a) -msgid "#create_code" -msgstr "" - -#: doc/reference/en/method_list.html:174(small) -#: doc/reference/en/method_list.html:478(small) -#: doc/reference/en/method_list.html:550(small) -#: doc/reference/en/method_list.html:782(small) -#: doc/reference/en/method_list.html:814(small) -#: doc/reference/en/method_list.html:918(small) -#: doc/reference/en/method_list.html:934(small) -#: doc/reference/en/method_list.html:958(small) -#: doc/reference/en/method_list.html:1150(small) -#: doc/reference/en/method_list.html:1214(small) -#: doc/reference/en/method_list.html:1246(small) -#: doc/reference/en/method_list.html:1254(small) -#: doc/reference/en/method_list.html:1262(small) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:74(li) -msgid "ActiveGroonga::Generators::Column" -msgstr "" - -#: doc/reference/en/method_list.html:180(a) -#: doc/reference/en/method_list.html:188(a) -msgid "#create_migration_file" -msgstr "" - -#: doc/reference/en/method_list.html:182(small) -#: doc/reference/en/method_list.html:566(small) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:78(li) -msgid "ActiveGroonga::Generators::MigrationGenerator" -msgstr "" - -#: doc/reference/en/method_list.html:190(small) -#: doc/reference/en/method_list.html:198(small) -#: doc/reference/en/method_list.html:206(small) -#: doc/reference/en/method_list.html:214(small) -#: doc/reference/en/method_list.html:494(small) -#: doc/reference/en/method_list.html:966(small) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:78(li) -msgid "ActiveGroonga::Generators::ModelGenerator" -msgstr "" +#: doc/reference/en/file.README.html:94(li) doc/reference/en/index.html:94(li) +msgid "Japanese: " +msgstr "???: " -#: doc/reference/en/method_list.html:196(a) -msgid "#create_model_file" -msgstr "" +#: doc/reference/en/file.README.html:96(h2) doc/reference/en/index.html:96(h2) +msgid "Thanks" +msgstr "??" -#: doc/reference/en/method_list.html:204(a) -msgid "#create_module_file" +#: doc/reference/en/file.README.html:98(li) doc/reference/en/index.html:98(li) +msgid "?" msgstr "" -#: doc/reference/en/method_list.html:212(a) -msgid "#create_table_code" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:6(title) +msgid "Exception: ActiveGroonga::NoKeyTableError — activegroonga" msgstr "" -#: doc/reference/en/method_list.html:220(a) -#: doc/reference/en/method_list.html:228(a) -msgid "#current_version" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:17(script) +#: doc/reference/en/ActiveGroonga/Generators.html:17(script) +#: doc/reference/en/ActiveGroonga/Schema.html:17(script) +#: doc/reference/en/ActiveGroonga/Persistence.html:17(script) +#: doc/reference/en/ActiveGroonga/Error.html:17(script) +#: doc/reference/en/ActiveGroonga/Validations.html:17(script) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:17(script) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:17(script) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:17(script) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:17(script) +#: doc/reference/en/ActiveGroonga/Railties.html:17(script) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:17(script) +#: doc/reference/en/ActiveGroonga/Database.html:17(script) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:17(script) +#: doc/reference/en/ActiveGroonga/Callbacks.html:17(script) +#: doc/reference/en/ActiveGroonga/Migration.html:17(script) +#: doc/reference/en/ActiveGroonga/Vector.html:17(script) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:17(script) +#: doc/reference/en/ActiveGroonga/Base.html:17(script) +#: doc/reference/en/ActiveGroonga/ResultSet.html:17(script) +#: doc/reference/en/ActiveGroonga/TestCase.html:17(script) +#: doc/reference/en/ActiveGroonga/Railtie.html:17(script) +#: doc/reference/en/ActiveGroonga/Migrator.html:17(script) +#: doc/reference/en/ActiveGroonga/VERSION.html:17(script) +#: doc/reference/en/ActiveSupport/TestCase.html:17(script) +msgid "relpath = '..'; if (relpath != '') relpath += '/';" msgstr "" -#: doc/reference/en/method_list.html:222(small) -#: doc/reference/en/method_list.html:350(small) -#: doc/reference/en/method_list.html:598(small) -#: doc/reference/en/method_list.html:702(small) -#: doc/reference/en/method_list.html:726(small) -#: doc/reference/en/method_list.html:742(small) -#: doc/reference/en/method_list.html:1158(small) -#: doc/reference/en/ActiveGroonga/Migrator.html:74(li) -msgid "ActiveGroonga::Migrator" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:36(a) +msgid "Index (N)" msgstr "" -#: doc/reference/en/method_list.html:230(small) -#: doc/reference/en/method_list.html:606(small) -#: doc/reference/en/method_list.html:734(small) -#: doc/reference/en/method_list.html:974(small) -#: doc/reference/en/method_list.html:1190(small) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:74(li) -msgid "ActiveGroonga::SchemaManagementTable" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:39(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:188(a) +#: doc/reference/en/ActiveGroonga/Error.html:107(a) +#: doc/reference/en/ActiveGroonga/Base.html:2438(a) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:284(a) +#: doc/reference/en/ActiveGroonga.html:112(a) +msgid "NoKeyTableError" msgstr "" -#: doc/reference/en/method_list.html:236(a) -#: doc/reference/en/ActiveGroonga/Base.html:337(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1545(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1564(span) -msgid "custom_reference_class" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:59(h1) +msgid "Exception: ActiveGroonga::NoKeyTableError" msgstr "" -#: doc/reference/en/method_list.html:244(a) -#: doc/reference/en/ActiveGroonga/Base.html:358(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1578(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1595(span) -#: doc/reference/en/ActiveGroonga/Base.html:1774(span) -#: doc/reference/en/ActiveGroonga/Base.html:1777(span) -msgid "database" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:67(dt) +#: doc/reference/en/ActiveGroonga/Schema.html:67(dt) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:67(dt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:67(dt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:67(dt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:67(dt) +#: doc/reference/en/ActiveGroonga/Error.html:67(dt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:67(dt) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:67(dt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:67(dt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:67(dt) +#: doc/reference/en/ActiveGroonga/Database.html:67(dt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:67(dt) +#: doc/reference/en/ActiveGroonga/Migration.html:67(dt) +#: doc/reference/en/ActiveGroonga/Vector.html:67(dt) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:67(dt) +#: doc/reference/en/ActiveGroonga/Base.html:67(dt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:67(dt) +#: doc/reference/en/ActiveGroonga/TestCase.html:67(dt) +#: doc/reference/en/ActiveGroonga/Railtie.html:67(dt) +#: doc/reference/en/ActiveGroonga/Migrator.html:67(dt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:67(dt) +#: doc/reference/en/ActiveSupport/TestCase.html:67(dt) +msgid "Inherits:" msgstr "" -#: doc/reference/en/method_list.html:252(a) -#: doc/reference/en/ActiveGroonga/Base.html:379(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1607(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1626(span) -msgid "database_path=" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:69(a) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:76(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) +#: doc/reference/en/ActiveGroonga/Error.html:39(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:69(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:76(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:69(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:76(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:69(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:76(a) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:69(a) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:76(a) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:193(a) +#: doc/reference/en/ActiveGroonga.html:112(a) +msgid "Error" msgstr "" -#: doc/reference/en/method_list.html:260(a) -msgid "#define" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:72(li) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:234(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:69(span) +#: doc/reference/en/ActiveGroonga/Schema.html:72(li) +#: doc/reference/en/ActiveGroonga/Schema.html:282(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:310(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:358(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:411(tt) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:72(li) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:241(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:69(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:72(li) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:468(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:507(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:546(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:589(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:723(tt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:751(tt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:72(li) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:186(tt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:214(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:72(li) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:325(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:357(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:387(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:421(tt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:465(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:361(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:399(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:431(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:610(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:652(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:680(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:708(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:740(tt) +#: doc/reference/en/ActiveGroonga/Persistence.html:770(tt) +#: doc/reference/en/ActiveGroonga/Error.html:72(li) +#: doc/reference/en/ActiveGroonga/Validations.html:196(tt) +#: doc/reference/en/ActiveGroonga/Validations.html:224(tt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:72(li) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:268(tt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:307(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:182(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:230(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:268(tt) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:72(li) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:238(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:69(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:72(li) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:281(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:309(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:345(tt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:375(tt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:72(li) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:260(tt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:299(tt) +#: doc/reference/en/ActiveGroonga/Database.html:69(span) +#: doc/reference/en/ActiveGroonga/Database.html:72(li) +#: doc/reference/en/ActiveGroonga/Database.html:269(tt) +#: doc/reference/en/ActiveGroonga/Database.html:301(tt) +#: doc/reference/en/ActiveGroonga/Database.html:345(tt) +#: doc/reference/en/ActiveGroonga/Database.html:379(tt) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:126(tt) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:126(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:69(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:72(li) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:283(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:322(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:365(tt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:395(tt) +#: doc/reference/en/ActiveGroonga/Callbacks.html:137(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:69(span) +#: doc/reference/en/ActiveGroonga/Migration.html:72(li) +#: doc/reference/en/ActiveGroonga/Migration.html:346(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:390(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:429(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:472(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:500(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:534(tt) +#: doc/reference/en/ActiveGroonga/Migration.html:594(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:69(span) +#: doc/reference/en/ActiveGroonga/Vector.html:72(li) +#: doc/reference/en/ActiveGroonga/Vector.html:400(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:439(tt) +#: doc/reference/en/ActiveGroonga/Vector.html:478(tt) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:72(li) +#: doc/reference/en/ActiveGroonga/Base.html:69(span) +#: doc/reference/en/ActiveGroonga/Base.html:72(li) +#: doc/reference/en/ActiveGroonga/Base.html:1359(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1387(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1427(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1455(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1483(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1529(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1561(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1589(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1621(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1655(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1691(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1727(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1834(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1884(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1912(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1948(tt) +#: doc/reference/en/ActiveGroonga/Base.html:1988(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2020(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2056(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2084(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2120(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2154(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2182(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2210(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2242(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2319(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2347(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2393(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2421(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2474(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2502(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2538(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2566(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2594(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2622(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2650(tt) +#: doc/reference/en/ActiveGroonga/Base.html:2678(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:69(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:72(li) +#: doc/reference/en/ActiveGroonga/ResultSet.html:403(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:442(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:481(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:524(tt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:613(tt) +#: doc/reference/en/ActiveGroonga/TestCase.html:72(li) +#: doc/reference/en/ActiveGroonga/Railtie.html:72(li) +#: doc/reference/en/ActiveGroonga/Migrator.html:69(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:72(li) +#: doc/reference/en/ActiveGroonga/Migrator.html:317(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:394(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:422(tt) +#: doc/reference/en/ActiveGroonga/Migrator.html:486(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:69(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:72(li) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:288(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:320(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:348(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:394(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:424(tt) +#: doc/reference/en/ActiveSupport/TestCase.html:69(span) +#: doc/reference/en/ActiveSupport/TestCase.html:72(li) +msgid "Object" msgstr "" -#: doc/reference/en/method_list.html:262(small) -#: doc/reference/en/method_list.html:270(small) -#: doc/reference/en/method_list.html:358(small) -#: doc/reference/en/method_list.html:366(small) -#: doc/reference/en/method_list.html:558(small) -#: doc/reference/en/ActiveGroonga/Schema.html:74(li) -msgid "ActiveGroonga::Schema" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:74(li) +#: doc/reference/en/ActiveGroonga/Error.html:69(span) +#: doc/reference/en/ActiveGroonga/Error.html:74(li) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:74(li) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:74(li) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:74(li) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:74(li) +msgid "StandardError" msgstr "" -#: doc/reference/en/method_list.html:268(a) -#: doc/reference/en/ActiveGroonga/Schema.html:111(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:162(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:284(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:301(span) -#: doc/reference/en/ActiveGroonga/Schema.html:302(span) -#: doc/reference/en/ActiveGroonga/Schema.html:362(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:403(span) -#: doc/reference/en/ActiveGroonga/Schema.html:405(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) -msgid "define" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:78(li) +msgid "ActiveGroonga::NoKeyTableError" msgstr "" -#: doc/reference/en/method_list.html:276(a) -#: doc/reference/en/ActiveGroonga/Base.html:400(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1165(span) -#: doc/reference/en/ActiveGroonga/Base.html:1640(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1660(span) -msgid "define_column_accessors" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:81(a) +#: doc/reference/en/ActiveGroonga/Schema.html:77(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:81(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:77(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:79(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:81(a) +#: doc/reference/en/ActiveGroonga/Error.html:79(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:81(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:81(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:77(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:81(a) +#: doc/reference/en/ActiveGroonga/Database.html:77(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:77(a) +#: doc/reference/en/ActiveGroonga/Migration.html:77(a) +#: doc/reference/en/ActiveGroonga/Vector.html:77(a) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:81(a) +#: doc/reference/en/ActiveGroonga/Base.html:77(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:77(a) +#: doc/reference/en/ActiveGroonga/TestCase.html:79(a) +#: doc/reference/en/ActiveGroonga/Railtie.html:79(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:77(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:77(a) +#: doc/reference/en/ActiveSupport/TestCase.html:77(a) +msgid "show all" msgstr "" -#: doc/reference/en/method_list.html:284(a) -#: doc/reference/en/ActiveGroonga/Base.html:421(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1675(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1696(span) -msgid "define_method_attribute" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:93(dt) +#: doc/reference/en/ActiveGroonga/Generators.html:74(dt) +#: doc/reference/en/ActiveGroonga/Schema.html:89(dt) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:93(dt) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:89(dt) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:95(dt) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:93(dt) +#: doc/reference/en/ActiveGroonga/Persistence.html:78(dt) +#: doc/reference/en/ActiveGroonga/Error.html:91(dt) +#: doc/reference/en/ActiveGroonga/Validations.html:86(dt) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:93(dt) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:78(dt) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:93(dt) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:89(dt) +#: doc/reference/en/ActiveGroonga/Railties.html:74(dt) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:93(dt) +#: doc/reference/en/ActiveGroonga/Database.html:89(dt) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:74(dt) +#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:74(dt) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:74(dt) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:89(dt) +#: doc/reference/en/ActiveGroonga/Callbacks.html:82(dt) +#: doc/reference/en/ActiveGroonga/Migration.html:89(dt) +#: doc/reference/en/ActiveGroonga/Vector.html:93(dt) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:93(dt) +#: doc/reference/en/ActiveGroonga/Base.html:97(dt) +#: doc/reference/en/ActiveGroonga/ResultSet.html:93(dt) +#: doc/reference/en/ActiveGroonga/TestCase.html:91(dt) +#: doc/reference/en/ActiveGroonga/Railtie.html:91(dt) +#: doc/reference/en/ActiveGroonga/Migrator.html:89(dt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:89(dt) +#: doc/reference/en/ActiveGroonga/VERSION.html:74(dt) +#: doc/reference/en/ActiveSupport/TestCase.html:93(dt) +#: doc/reference/en/ActiveGroonga.html:78(dt) +msgid "Defined in:" msgstr "" -#: doc/reference/en/method_list.html:292(a) -#: doc/reference/en/ActiveGroonga/Base.html:442(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1712(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1733(span) -msgid "define_method_attribute=" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:94(dd) +#: doc/reference/en/ActiveGroonga/Error.html:92(dd) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:94(dd) +#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:94(dd) +msgid "lib/active_groonga/error.rb" msgstr "" -#: doc/reference/en/method_list.html:300(a) -#: doc/reference/en/method_list.html:308(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#delete" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:106(a) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:145(a) +#: doc/reference/en/ActiveGroonga/Schema.html:103(a) +#: doc/reference/en/ActiveGroonga/Schema.html:154(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:126(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:105(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:188(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:125(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:118(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:92(a) +#: doc/reference/en/ActiveGroonga/Validations.html:114(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:114(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:177(a) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:102(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:106(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:145(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:115(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:106(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:169(a) +#: doc/reference/en/ActiveGroonga/Database.html:103(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:88(a) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:88(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:97(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:156(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:98(a) +#: doc/reference/en/ActiveGroonga/Migration.html:109(a) +#: doc/reference/en/ActiveGroonga/Migration.html:168(a) +#: doc/reference/en/ActiveGroonga/Migration.html:219(a) +#: doc/reference/en/ActiveGroonga/Vector.html:102(a) +#: doc/reference/en/ActiveGroonga/Vector.html:186(a) +#: doc/reference/en/ActiveGroonga/Base.html:145(a) +#: doc/reference/en/ActiveGroonga/Base.html:221(a) +#: doc/reference/en/ActiveGroonga/Base.html:692(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:112(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:196(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:103(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:103(a) +msgid "collapse" msgstr "" -#: doc/reference/en/method_list.html:302(small) -#: doc/reference/en/method_list.html:342(small) -#: doc/reference/en/method_list.html:486(small) -#: doc/reference/en/method_list.html:622(small) -#: doc/reference/en/method_list.html:870(small) -#: doc/reference/en/method_list.html:1142(small) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:74(li) -msgid "ActiveGroonga::TestFixtures::ConnectionMock" -msgstr "" - -#: doc/reference/en/method_list.html:316(a) -#: doc/reference/en/method_list.html:324(a) -#: doc/reference/en/ActiveGroonga/Base.html:1093(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#destroy" -msgstr "" - -#: doc/reference/en/method_list.html:326(small) -msgid "ActiveGroonga::Callbacks" -msgstr "" - -#: doc/reference/en/method_list.html:332(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#destroyed?" -msgstr "" - -#: doc/reference/en/method_list.html:340(a) -msgid "#disable_referential_integrity" -msgstr "" - -#: doc/reference/en/method_list.html:348(a) -msgid "#down?" -msgstr "" - -#: doc/reference/en/method_list.html:356(a) -#: doc/reference/en/ActiveGroonga/Schema.html:132(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:183(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:313(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:337(span) -#: doc/reference/en/ActiveGroonga/Schema.html:345(span) -#: doc/reference/en/ActiveGroonga/Schema.html:417(strong) -#: doc/reference/en/ActiveGroonga/Schema.html:458(span) -#: doc/reference/en/ActiveGroonga/Schema.html:459(span) -msgid "dump" -msgstr "" - -#: doc/reference/en/method_list.html:364(a) -msgid "#dump" -msgstr "" - -#: doc/reference/en/method_list.html:372(a) -#: doc/reference/en/method_list.html:380(a) -msgid "#each" -msgstr "" - -#: doc/reference/en/method_list.html:374(small) -#: doc/reference/en/method_list.html:414(small) -#: doc/reference/en/method_list.html:438(small) -#: doc/reference/en/method_list.html:542(small) -#: doc/reference/en/method_list.html:766(small) -#: doc/reference/en/method_list.html:830(small) -#: doc/reference/en/method_list.html:910(small) -#: doc/reference/en/method_list.html:1054(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveGroonga/ResultSet.html:74(li) -msgid "ActiveGroonga::ResultSet" -msgstr "" - -#: doc/reference/en/method_list.html:388(a) -#: doc/reference/en/ActiveGroonga/Base.html:463(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1749(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1771(span) -msgid "encoding=" -msgstr "" - -#: doc/reference/en/method_list.html:396(a) -msgid "#ensure_available" -msgstr "" - -#: doc/reference/en/method_list.html:404(a) -#: doc/reference/en/ActiveGroonga/Base.html:484(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1788(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1837(span) -msgid "exists?" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:106(small) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:145(small) +#: doc/reference/en/ActiveGroonga/Schema.html:103(small) +#: doc/reference/en/ActiveGroonga/Schema.html:154(small) +#: doc/reference/en/ActiveGroonga/Schema.html:375(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:126(small) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:105(small) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:188(small) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:642(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:691(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:804(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:853(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:902(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:951(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:125(small) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:118(small) +#: doc/reference/en/ActiveGroonga/Persistence.html:92(small) +#: doc/reference/en/ActiveGroonga/Persistence.html:480(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:529(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:578(span) +#: doc/reference/en/ActiveGroonga/Validations.html:114(small) +#: doc/reference/en/ActiveGroonga/Validations.html:269(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:114(small) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:177(small) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:102(small) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:106(small) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:145(small) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:115(small) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:106(small) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:169(small) +#: doc/reference/en/ActiveGroonga/Database.html:103(small) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:88(small) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:88(small) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:97(small) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:156(small) +#: doc/reference/en/ActiveGroonga/Callbacks.html:98(small) +#: doc/reference/en/ActiveGroonga/Migration.html:109(small) +#: doc/reference/en/ActiveGroonga/Migration.html:168(small) +#: doc/reference/en/ActiveGroonga/Migration.html:219(small) +#: doc/reference/en/ActiveGroonga/Vector.html:102(small) +#: doc/reference/en/ActiveGroonga/Vector.html:186(small) +#: doc/reference/en/ActiveGroonga/Base.html:145(small) +#: doc/reference/en/ActiveGroonga/Base.html:221(small) +#: doc/reference/en/ActiveGroonga/Base.html:692(small) +#: doc/reference/en/ActiveGroonga/Base.html:1222(span) +#: doc/reference/en/ActiveGroonga/Base.html:1305(span) +#: doc/reference/en/ActiveGroonga/Base.html:1782(span) +#: doc/reference/en/ActiveGroonga/Base.html:2287(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:112(small) +#: doc/reference/en/ActiveGroonga/ResultSet.html:196(small) +#: doc/reference/en/ActiveGroonga/ResultSet.html:577(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:694(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:716(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:103(small) +#: doc/reference/en/ActiveGroonga/Migrator.html:362(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:531(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:103(small) +msgid "()" msgstr "" -#: doc/reference/en/method_list.html:412(a) -msgid "#expression" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:106(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:105(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:114(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:106(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:106(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:97(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:109(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:102(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:112(h2) +msgid "Instance Attribute Summary " msgstr "" -#: doc/reference/en/method_list.html:420(a) -#: doc/reference/en/ActiveGroonga/Base.html:505(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1859(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1887(span) -msgid "find" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:214(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:234(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:259(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:638(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:136(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:299(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:324(span) +#: doc/reference/en/ActiveGroonga/Base.html:628(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1017(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1377(span) +#: doc/reference/en/ActiveGroonga/Base.html:1473(span) +#: doc/reference/en/ActiveGroonga/Base.html:1642(span) +#: doc/reference/en/ActiveGroonga/Base.html:1815(span) +#: doc/reference/en/ActiveGroonga/Base.html:1816(span) +#: doc/reference/en/ActiveGroonga/Base.html:1823(span) +#: doc/reference/en/ActiveGroonga/Base.html:1864(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1872(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +#: doc/reference/en/ActiveGroonga/Base.html:1935(span) +#: doc/reference/en/ActiveGroonga/Base.html:2043(span) +#: doc/reference/en/ActiveGroonga/Base.html:2056(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2309(span) +#: doc/reference/en/ActiveGroonga/Base.html:2375(span) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Base.html:2524(span) +#: doc/reference/en/ActiveGroonga/Base.html:2622(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2639(span) +#: doc/reference/en/ActiveGroonga/Base.html:2640(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:376(span) +msgid "table" msgstr "" -#: doc/reference/en/method_list.html:428(a) -msgid "#groonga_configurations" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:134(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:111(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:135(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:159(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:196(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:282(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:303(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:126(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:147(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:168(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:189(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:233(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:121(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:142(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:226(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:120(a) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:144(a) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:110(a) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:131(a) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:152(a) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:112(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:123(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:167(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:112(a) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:136(a) +#: doc/reference/en/ActiveGroonga/Database.html:111(a) +#: doc/reference/en/ActiveGroonga/Database.html:132(a) +#: doc/reference/en/ActiveGroonga/Database.html:176(a) +#: doc/reference/en/ActiveGroonga/Database.html:197(a) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:96(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:103(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:127(a) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:208(a) +#: doc/reference/en/ActiveGroonga/Callbacks.html:106(a) +#: doc/reference/en/ActiveGroonga/Migration.html:115(a) +#: doc/reference/en/ActiveGroonga/Migration.html:139(a) +#: doc/reference/en/ActiveGroonga/Migration.html:271(a) +#: doc/reference/en/ActiveGroonga/Vector.html:108(a) +#: doc/reference/en/ActiveGroonga/Vector.html:132(a) +#: doc/reference/en/ActiveGroonga/Vector.html:156(a) +#: doc/reference/en/ActiveGroonga/Vector.html:278(a) +#: doc/reference/en/ActiveGroonga/Vector.html:322(a) +#: doc/reference/en/ActiveGroonga/Base.html:721(a) +#: doc/reference/en/ActiveGroonga/Base.html:763(a) +#: doc/reference/en/ActiveGroonga/Base.html:805(a) +#: doc/reference/en/ActiveGroonga/Base.html:849(a) +#: doc/reference/en/ActiveGroonga/Base.html:870(a) +#: doc/reference/en/ActiveGroonga/Base.html:933(a) +#: doc/reference/en/ActiveGroonga/Base.html:954(a) +#: doc/reference/en/ActiveGroonga/Base.html:975(a) +#: doc/reference/en/ActiveGroonga/Base.html:1017(a) +#: doc/reference/en/ActiveGroonga/Base.html:1038(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:118(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:142(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:166(a) +#: doc/reference/en/ActiveGroonga/ResultSet.html:204(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:111(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:176(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:218(a) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:132(a) +msgid "- (Object) " msgstr "" -#: doc/reference/en/method_list.html:430(small) -msgid "ActiveGroonga::Railties::Configurable" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:119(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:127(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:151(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:119(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:119(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:143(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:110(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:134(span) +#: doc/reference/en/ActiveGroonga/Migration.html:122(span) +#: doc/reference/en/ActiveGroonga/Migration.html:146(span) +#: doc/reference/en/ActiveGroonga/Vector.html:115(span) +#: doc/reference/en/ActiveGroonga/Vector.html:139(span) +#: doc/reference/en/ActiveGroonga/Vector.html:163(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:125(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:149(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:173(span) +msgid "readonly" msgstr "" -#: doc/reference/en/method_list.html:436(a) -msgid "#group" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:128(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:152(p) +msgid "Returns the value of attribute table." msgstr "" -#: doc/reference/en/method_list.html:444(a) -msgid "#hash" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:143(h2) +#: doc/reference/en/ActiveGroonga/Schema.html:152(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:124(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:186(h2) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:116(h2) +#: doc/reference/en/ActiveGroonga/Persistence.html:90(h2) +#: doc/reference/en/ActiveGroonga/Validations.html:112(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:175(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:100(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:143(h2) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:113(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:167(h2) +#: doc/reference/en/ActiveGroonga/Database.html:101(h2) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:86(h2) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:86(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:154(h2) +#: doc/reference/en/ActiveGroonga/Callbacks.html:96(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:217(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:184(h2) +#: doc/reference/en/ActiveGroonga/Base.html:690(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:194(h2) +#: doc/reference/en/ActiveGroonga/Migrator.html:101(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:101(h2) +msgid "Instance Method Summary " msgstr "" -#: doc/reference/en/method_list.html:452(a) -msgid "#have_column?" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:153(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:188(strong) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:214(span) +#: doc/reference/en/ActiveGroonga/Schema.html:204(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:233(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:155(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:196(strong) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:238(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:414(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:210(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(strong) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:185(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:220(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:153(strong) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:188(strong) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:216(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:144(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:236(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:262(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:177(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:212(strong) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/Database.html:153(strong) +#: doc/reference/en/ActiveGroonga/Database.html:224(strong) +#: doc/reference/en/ActiveGroonga/Database.html:250(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:164(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:235(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/Migration.html:227(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:298(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Vector.html:299(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:350(strong) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Base.html:826(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1122(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:267(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:339(strong) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:153(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:266(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:295(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:153(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:245(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:270(span) +msgid "initialize" msgstr "" -#: doc/reference/en/method_list.html:460(a) -#: doc/reference/en/ActiveGroonga/Base.html:526(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1910(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1927(span) -msgid "i18n_scope" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:153(a) +msgid "- (NoKeyTableError) (table)" msgstr "" -#: doc/reference/en/method_list.html:468(a) -msgid "#id" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:159(span) +#: doc/reference/en/ActiveGroonga/Schema.html:210(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:161(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:244(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:216(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:191(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:159(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:150(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:183(span) +#: doc/reference/en/ActiveGroonga/Database.html:159(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:170(span) +#: doc/reference/en/ActiveGroonga/Migration.html:233(span) +#: doc/reference/en/ActiveGroonga/Vector.html:305(span) +#: doc/reference/en/ActiveGroonga/Base.html:832(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:273(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:159(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:159(span) +msgid "constructor" msgstr "" -#: doc/reference/en/method_list.html:476(a) -msgid "#index?" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:168(p) +msgid "A new instance of NoKeyTableError." msgstr "" -#: doc/reference/en/method_list.html:484(a) -#: doc/reference/en/method_list.html:492(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) -#: doc/reference/en/method_list.html:524(a) -#: doc/reference/en/method_list.html:532(a) -#: doc/reference/en/method_list.html:540(a) -#: doc/reference/en/method_list.html:548(a) -#: doc/reference/en/method_list.html:556(a) -#: doc/reference/en/method_list.html:564(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) -#: doc/reference/en/method_list.html:604(a) -#: doc/reference/en/method_list.html:612(a) -msgid "#initialize" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:183(h2) +#: doc/reference/en/ActiveGroonga/Schema.html:228(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:191(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:409(h2) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:267(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:215(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:183(h2) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:231(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:207(h2) +#: doc/reference/en/ActiveGroonga/Database.html:219(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:230(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:293(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:345(h2) +#: doc/reference/en/ActiveGroonga/Base.html:1117(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:334(h2) +#: doc/reference/en/ActiveGroonga/Migrator.html:261(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:240(h2) +msgid "Constructor Details" msgstr "" -#: doc/reference/en/method_list.html:502(small) -#: doc/reference/en/method_list.html:886(small) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:78(li) -msgid "ActiveGroonga::RecordInvalid" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:186(p) +msgid "" +"- () " +"(table)" msgstr "" -#: doc/reference/en/method_list.html:526(small) -#: doc/reference/en/method_list.html:718(small) -#: doc/reference/en/method_list.html:750(small) -#: doc/reference/en/method_list.html:758(small) -#: doc/reference/en/method_list.html:790(small) -#: doc/reference/en/method_list.html:838(small) -#: doc/reference/en/method_list.html:1222(small) -#: doc/reference/en/ActiveGroonga/Migration.html:74(li) -msgid "ActiveGroonga::Migration" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:194(p) +msgid "A new instance of NoKeyTableError" msgstr "" -#: doc/reference/en/method_list.html:534(small) -#: doc/reference/en/method_list.html:710(small) -#: doc/reference/en/method_list.html:774(small) -#: doc/reference/en/method_list.html:846(small) -#: doc/reference/en/method_list.html:1238(small) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:74(li) -msgid "ActiveGroonga::MigrationEntry" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:203(pre) +msgid "26 27 28 29" msgstr "" -#: doc/reference/en/method_list.html:574(small) -#: doc/reference/en/method_list.html:662(small) -#: doc/reference/en/method_list.html:1094(small) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:78(li) -msgid "ActiveGroonga::KeyOverrideError" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:212(span) +msgid "# File 'lib/active_groonga/error.rb', line 26" msgstr "" -#: doc/reference/en/method_list.html:582(small) -#: doc/reference/en/method_list.html:1070(small) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:78(li) -msgid "ActiveGroonga::NoKeyTableError" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:214(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:259(span) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:259(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:493(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:532(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:571(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:610(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:663(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:712(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:740(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:772(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:825(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:874(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:923(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:972(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:203(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:239(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:344(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:375(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:407(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:482(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:383(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:418(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:450(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:501(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:550(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:599(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:634(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:727(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:758(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:788(span) +#: doc/reference/en/ActiveGroonga/Validations.html:213(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:293(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:332(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:209(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:252(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:285(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:216(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:263(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:262(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:298(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:330(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:363(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:393(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:285(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:324(span) +#: doc/reference/en/ActiveGroonga/Database.html:250(span) +#: doc/reference/en/ActiveGroonga/Database.html:288(span) +#: doc/reference/en/ActiveGroonga/Database.html:326(span) +#: doc/reference/en/ActiveGroonga/Database.html:365(span) +#: doc/reference/en/ActiveGroonga/Database.html:397(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:166(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:308(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:347(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:412(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:162(span) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:415(span) +#: doc/reference/en/ActiveGroonga/Migration.html:454(span) +#: doc/reference/en/ActiveGroonga/Migration.html:489(span) +#: doc/reference/en/ActiveGroonga/Migration.html:517(span) +#: doc/reference/en/ActiveGroonga/Migration.html:567(span) +#: doc/reference/en/ActiveGroonga/Migration.html:611(span) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Vector.html:425(span) +#: doc/reference/en/ActiveGroonga/Vector.html:464(span) +#: doc/reference/en/ActiveGroonga/Vector.html:503(span) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1410(span) +#: doc/reference/en/ActiveGroonga/Base.html:1444(span) +#: doc/reference/en/ActiveGroonga/Base.html:1472(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1548(span) +#: doc/reference/en/ActiveGroonga/Base.html:1578(span) +#: doc/reference/en/ActiveGroonga/Base.html:1608(span) +#: doc/reference/en/ActiveGroonga/Base.html:1641(span) +#: doc/reference/en/ActiveGroonga/Base.html:1676(span) +#: doc/reference/en/ActiveGroonga/Base.html:1712(span) +#: doc/reference/en/ActiveGroonga/Base.html:1749(span) +#: doc/reference/en/ActiveGroonga/Base.html:1813(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1901(span) +#: doc/reference/en/ActiveGroonga/Base.html:1933(span) +#: doc/reference/en/ActiveGroonga/Base.html:1971(span) +#: doc/reference/en/ActiveGroonga/Base.html:2007(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2073(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2137(span) +#: doc/reference/en/ActiveGroonga/Base.html:2171(span) +#: doc/reference/en/ActiveGroonga/Base.html:2199(span) +#: doc/reference/en/ActiveGroonga/Base.html:2229(span) +#: doc/reference/en/ActiveGroonga/Base.html:2259(span) +#: doc/reference/en/ActiveGroonga/Base.html:2308(span) +#: doc/reference/en/ActiveGroonga/Base.html:2336(span) +#: doc/reference/en/ActiveGroonga/Base.html:2373(span) +#: doc/reference/en/ActiveGroonga/Base.html:2410(span) +#: doc/reference/en/ActiveGroonga/Base.html:2461(span) +#: doc/reference/en/ActiveGroonga/Base.html:2491(span) +#: doc/reference/en/ActiveGroonga/Base.html:2523(span) +#: doc/reference/en/ActiveGroonga/Base.html:2555(span) +#: doc/reference/en/ActiveGroonga/Base.html:2583(span) +#: doc/reference/en/ActiveGroonga/Base.html:2611(span) +#: doc/reference/en/ActiveGroonga/Base.html:2639(span) +#: doc/reference/en/ActiveGroonga/Base.html:2667(span) +#: doc/reference/en/ActiveGroonga/Base.html:2695(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:428(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:467(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:506(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:545(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:602(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:630(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:295(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:334(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:383(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:411(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:457(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:503(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:552(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:270(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:337(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:374(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:412(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +msgid "def" msgstr "" -#: doc/reference/en/method_list.html:590(small) -#: doc/reference/en/method_list.html:854(small) -#: doc/reference/en/method_list.html:1230(small) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:78(li) -msgid "ActiveGroonga::DuplicateMigrationVersionError" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:260(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:331(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:364(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:325(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/Base.html:2640(span) +msgid "@table" msgstr "" -#: doc/reference/en/method_list.html:620(a) -msgid "#insert_fixture" -msgstr "" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Schema.html:453(span) +#: doc/reference/en/ActiveGroonga/Schema.html:456(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:304(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:306(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:448(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:384(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:452(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:636(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:638(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:641(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:728(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:759(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:789(span) +#: doc/reference/en/ActiveGroonga/Validations.html:213(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/Validations.html:294(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:248(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:249(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:217(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:241(span) +#: doc/reference/en/ActiveGroonga/Database.html:251(span) +#: doc/reference/en/ActiveGroonga/Database.html:252(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Database.html:369(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:167(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:169(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:263(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:265(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/Migration.html:326(span) +#: doc/reference/en/ActiveGroonga/Migration.html:327(span) +#: doc/reference/en/ActiveGroonga/Migration.html:328(span) +#: doc/reference/en/ActiveGroonga/Migration.html:568(span) +#: doc/reference/en/ActiveGroonga/Migration.html:575(span) +#: doc/reference/en/ActiveGroonga/Migration.html:576(span) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Vector.html:379(span) +#: doc/reference/en/ActiveGroonga/Vector.html:380(span) +#: doc/reference/en/ActiveGroonga/Vector.html:381(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/Base.html:1162(span) +#: doc/reference/en/ActiveGroonga/Base.html:1163(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +#: doc/reference/en/ActiveGroonga/Base.html:1166(span) +#: doc/reference/en/ActiveGroonga/Base.html:1167(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1210(span) +#: doc/reference/en/ActiveGroonga/Base.html:1213(span) +#: doc/reference/en/ActiveGroonga/Base.html:1288(span) +#: doc/reference/en/ActiveGroonga/Base.html:1293(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1415(span) +#: doc/reference/en/ActiveGroonga/Base.html:1416(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1515(span) +#: doc/reference/en/ActiveGroonga/Base.html:1550(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:1610(span) +#: doc/reference/en/ActiveGroonga/Base.html:1611(span) +#: doc/reference/en/ActiveGroonga/Base.html:1642(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1751(span) +#: doc/reference/en/ActiveGroonga/Base.html:1752(span) +#: doc/reference/en/ActiveGroonga/Base.html:1753(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1819(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1863(span) +#: doc/reference/en/ActiveGroonga/Base.html:1866(span) +#: doc/reference/en/ActiveGroonga/Base.html:1872(span) +#: doc/reference/en/ActiveGroonga/Base.html:1935(span) +#: doc/reference/en/ActiveGroonga/Base.html:1972(span) +#: doc/reference/en/ActiveGroonga/Base.html:2009(span) +#: doc/reference/en/ActiveGroonga/Base.html:2010(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2043(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2109(span) +#: doc/reference/en/ActiveGroonga/Base.html:2138(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2374(span) +#: doc/reference/en/ActiveGroonga/Base.html:2464(span) +#: doc/reference/en/ActiveGroonga/Base.html:2612(span) +#: doc/reference/en/ActiveGroonga/Base.html:2696(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:375(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:376(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:377(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:378(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:380(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:382(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:383(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:547(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:675(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:296(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:297(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:299(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:457(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:458(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:271(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:376(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:381(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:413(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +msgid "=" +msgstr "" -#: doc/reference/en/method_list.html:628(a) -msgid "#inspect" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:223(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:303(span) +#: doc/reference/en/ActiveGroonga/Validations.html:214(span) +#: doc/reference/en/ActiveGroonga/Validations.html:242(span) +#: doc/reference/en/ActiveGroonga/Validations.html:294(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/Migration.html:371(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +msgid "super" msgstr "" -#: doc/reference/en/method_list.html:636(a) -#: doc/reference/en/ActiveGroonga/Base.html:547(strong) -#: doc/reference/en/ActiveGroonga/Base.html:852(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1939(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1960(span) -#: doc/reference/en/ActiveGroonga/Base.html:2388(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2414(span) -msgid "inspect" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:472(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:261(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:774(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:776(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:826(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:875(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:924(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:973(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:240(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:346(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:483(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:385(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:386(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:387(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:388(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:103(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:167(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:169(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Migration.html:571(span) +#: doc/reference/en/ActiveGroonga/Migration.html:573(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Base.html:121(span) +#: doc/reference/en/ActiveGroonga/Base.html:1288(span) +#: doc/reference/en/ActiveGroonga/Base.html:1293(span) +#: doc/reference/en/ActiveGroonga/Base.html:1415(span) +#: doc/reference/en/ActiveGroonga/Base.html:1416(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1936(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:1973(span) +#: doc/reference/en/ActiveGroonga/Base.html:1975(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2378(span) +#: doc/reference/en/ActiveGroonga/Base.html:2381(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:103(span) +msgid "\"" msgstr "" -#: doc/reference/en/method_list.html:644(a) -#: doc/reference/en/ActiveGroonga/Base.html:568(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1899(span) -#: doc/reference/en/ActiveGroonga/Base.html:1976(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1999(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:534(span) -msgid "instantiate" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +msgid "table doesn't have key:" msgstr "" -#: doc/reference/en/method_list.html:652(a) -#: doc/reference/en/method_list.html:660(a) -msgid "#key" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:261(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:774(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:776(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:483(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1936(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2378(span) +#: doc/reference/en/ActiveGroonga/Base.html:2381(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +msgid "#{" msgstr "" -#: doc/reference/en/method_list.html:668(a) -msgid "#key=" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:335(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:261(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:446(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:774(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:776(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:347(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:447(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:483(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:641(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/Validations.html:213(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:255(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:242(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:169(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/Base.html:111(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1549(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1936(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:2008(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2378(span) +#: doc/reference/en/ActiveGroonga/Base.html:2381(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:377(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +msgid "}" msgstr "" -#: doc/reference/en/method_list.html:676(a) -msgid "#klass" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:217(span) +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:266(span) +#: doc/reference/en/ActiveGroonga/Schema.html:301(span) +#: doc/reference/en/ActiveGroonga/Schema.html:341(span) +#: doc/reference/en/ActiveGroonga/Schema.html:343(span) +#: doc/reference/en/ActiveGroonga/Schema.html:402(span) +#: doc/reference/en/ActiveGroonga/Schema.html:460(span) +#: doc/reference/en/ActiveGroonga/Schema.html:469(span) +#: doc/reference/en/ActiveGroonga/Schema.html:470(span) +#: doc/reference/en/ActiveGroonga/Schema.html:477(span) +#: doc/reference/en/ActiveGroonga/Schema.html:478(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:225(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:262(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:495(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:534(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:573(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:615(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:616(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:665(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:714(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:742(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:777(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:778(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:827(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:876(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:925(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:974(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:205(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:241(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:309(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:348(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:378(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:411(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:412(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:484(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:390(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:422(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:454(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:503(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:552(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:601(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:639(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:643(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:671(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:699(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:731(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:761(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:791(span) +#: doc/reference/en/ActiveGroonga/Validations.html:215(span) +#: doc/reference/en/ActiveGroonga/Validations.html:243(span) +#: doc/reference/en/ActiveGroonga/Validations.html:296(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:251(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:295(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:334(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:213(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:219(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:220(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:221(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:259(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:287(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:221(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:265(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:265(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:300(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:335(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:336(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:366(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:396(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:243(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:287(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:326(span) +#: doc/reference/en/ActiveGroonga/Database.html:253(span) +#: doc/reference/en/ActiveGroonga/Database.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:335(span) +#: doc/reference/en/ActiveGroonga/Database.html:336(span) +#: doc/reference/en/ActiveGroonga/Database.html:370(span) +#: doc/reference/en/ActiveGroonga/Database.html:400(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:187(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:188(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:189(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:191(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:156(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:162(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:163(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:266(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:310(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:349(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:386(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:414(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:164(span) +#: doc/reference/en/ActiveGroonga/Migration.html:329(span) +#: doc/reference/en/ActiveGroonga/Migration.html:372(span) +#: doc/reference/en/ActiveGroonga/Migration.html:373(span) +#: doc/reference/en/ActiveGroonga/Migration.html:417(span) +#: doc/reference/en/ActiveGroonga/Migration.html:456(span) +#: doc/reference/en/ActiveGroonga/Migration.html:491(span) +#: doc/reference/en/ActiveGroonga/Migration.html:519(span) +#: doc/reference/en/ActiveGroonga/Migration.html:574(span) +#: doc/reference/en/ActiveGroonga/Migration.html:577(span) +#: doc/reference/en/ActiveGroonga/Migration.html:583(span) +#: doc/reference/en/ActiveGroonga/Migration.html:585(span) +#: doc/reference/en/ActiveGroonga/Migration.html:613(span) +#: doc/reference/en/ActiveGroonga/Vector.html:383(span) +#: doc/reference/en/ActiveGroonga/Vector.html:427(span) +#: doc/reference/en/ActiveGroonga/Vector.html:466(span) +#: doc/reference/en/ActiveGroonga/Vector.html:505(span) +#: doc/reference/en/ActiveGroonga/Base.html:1174(span) +#: doc/reference/en/ActiveGroonga/Base.html:1175(span) +#: doc/reference/en/ActiveGroonga/Base.html:1378(span) +#: doc/reference/en/ActiveGroonga/Base.html:1417(span) +#: doc/reference/en/ActiveGroonga/Base.html:1418(span) +#: doc/reference/en/ActiveGroonga/Base.html:1446(span) +#: doc/reference/en/ActiveGroonga/Base.html:1474(span) +#: doc/reference/en/ActiveGroonga/Base.html:1513(span) +#: doc/reference/en/ActiveGroonga/Base.html:1519(span) +#: doc/reference/en/ActiveGroonga/Base.html:1520(span) +#: doc/reference/en/ActiveGroonga/Base.html:1552(span) +#: doc/reference/en/ActiveGroonga/Base.html:1580(span) +#: doc/reference/en/ActiveGroonga/Base.html:1612(span) +#: doc/reference/en/ActiveGroonga/Base.html:1644(span) +#: doc/reference/en/ActiveGroonga/Base.html:1646(span) +#: doc/reference/en/ActiveGroonga/Base.html:1680(span) +#: doc/reference/en/ActiveGroonga/Base.html:1681(span) +#: doc/reference/en/ActiveGroonga/Base.html:1682(span) +#: doc/reference/en/ActiveGroonga/Base.html:1716(span) +#: doc/reference/en/ActiveGroonga/Base.html:1717(span) +#: doc/reference/en/ActiveGroonga/Base.html:1718(span) +#: doc/reference/en/ActiveGroonga/Base.html:1756(span) +#: doc/reference/en/ActiveGroonga/Base.html:1822(span) +#: doc/reference/en/ActiveGroonga/Base.html:1824(span) +#: doc/reference/en/ActiveGroonga/Base.html:1825(span) +#: doc/reference/en/ActiveGroonga/Base.html:1869(span) +#: doc/reference/en/ActiveGroonga/Base.html:1871(span) +#: doc/reference/en/ActiveGroonga/Base.html:1875(span) +#: doc/reference/en/ActiveGroonga/Base.html:1903(span) +#: doc/reference/en/ActiveGroonga/Base.html:1937(span) +#: doc/reference/en/ActiveGroonga/Base.html:1939(span) +#: doc/reference/en/ActiveGroonga/Base.html:1976(span) +#: doc/reference/en/ActiveGroonga/Base.html:1979(span) +#: doc/reference/en/ActiveGroonga/Base.html:2011(span) +#: doc/reference/en/ActiveGroonga/Base.html:2045(span) +#: doc/reference/en/ActiveGroonga/Base.html:2047(span) +#: doc/reference/en/ActiveGroonga/Base.html:2075(span) +#: doc/reference/en/ActiveGroonga/Base.html:2110(span) +#: doc/reference/en/ActiveGroonga/Base.html:2111(span) +#: doc/reference/en/ActiveGroonga/Base.html:2139(span) +#: doc/reference/en/ActiveGroonga/Base.html:2173(span) +#: doc/reference/en/ActiveGroonga/Base.html:2201(span) +#: doc/reference/en/ActiveGroonga/Base.html:2232(span) +#: doc/reference/en/ActiveGroonga/Base.html:2233(span) +#: doc/reference/en/ActiveGroonga/Base.html:2261(span) +#: doc/reference/en/ActiveGroonga/Base.html:2310(span) +#: doc/reference/en/ActiveGroonga/Base.html:2338(span) +#: doc/reference/en/ActiveGroonga/Base.html:2379(span) +#: doc/reference/en/ActiveGroonga/Base.html:2382(span) +#: doc/reference/en/ActiveGroonga/Base.html:2384(span) +#: doc/reference/en/ActiveGroonga/Base.html:2412(span) +#: doc/reference/en/ActiveGroonga/Base.html:2465(span) +#: doc/reference/en/ActiveGroonga/Base.html:2493(span) +#: doc/reference/en/ActiveGroonga/Base.html:2528(span) +#: doc/reference/en/ActiveGroonga/Base.html:2529(span) +#: doc/reference/en/ActiveGroonga/Base.html:2557(span) +#: doc/reference/en/ActiveGroonga/Base.html:2585(span) +#: doc/reference/en/ActiveGroonga/Base.html:2613(span) +#: doc/reference/en/ActiveGroonga/Base.html:2641(span) +#: doc/reference/en/ActiveGroonga/Base.html:2669(span) +#: doc/reference/en/ActiveGroonga/Base.html:2697(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:381(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:386(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:430(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:469(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:508(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:550(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:551(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:604(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:632(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:300(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:301(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:336(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:385(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:413(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:464(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:469(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:474(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:476(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:477(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:505(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:554(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:272(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:310(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:339(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:382(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:385(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:415(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:443(span) +msgid "end" msgstr "" -#: doc/reference/en/method_list.html:684(a) -#: doc/reference/en/ActiveGroonga/Base.html:154(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1197(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1215(span) -#: doc/reference/en/ActiveGroonga/Base.html:1218(span) -msgid "limit" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:226(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:460(h2) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:260(h2) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:230(h2) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:252(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:275(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:382(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:392(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:395(h2) +msgid "Instance Attribute Details" msgstr "" -#: doc/reference/en/method_list.html:692(a) -#: doc/reference/en/ActiveSupport/TestCase.html:124(a) -msgid "#load_active_groonga_fixtures" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:234(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:268(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:307(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:238(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:260(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:299(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:283(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:322(span) +#: doc/reference/en/ActiveGroonga/Migration.html:390(span) +#: doc/reference/en/ActiveGroonga/Migration.html:429(span) +#: doc/reference/en/ActiveGroonga/Vector.html:400(span) +#: doc/reference/en/ActiveGroonga/Vector.html:439(span) +#: doc/reference/en/ActiveGroonga/Vector.html:478(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:403(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:442(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:481(span) +msgid "(readonly)" msgstr "" -#: doc/reference/en/method_list.html:694(small) -#: doc/reference/en/method_list.html:1046(small) -#: doc/reference/en/method_list.html:1118(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveSupport/TestCase.html:87(a) -#: doc/reference/en/ActiveSupport/TestCase.html:123(a) -msgid "ActiveGroonga::TestFixtures" -msgstr "" - -#: doc/reference/en/method_list.html:700(a) -msgid "#management_table" -msgstr "" - -#: doc/reference/en/method_list.html:708(a) -#: doc/reference/en/method_list.html:716(a) -#: doc/reference/en/method_list.html:724(a) -msgid "#migrate" -msgstr "" - -#: doc/reference/en/method_list.html:732(a) -#: doc/reference/en/method_list.html:740(a) -msgid "#migrated_versions" -msgstr "" - -#: doc/reference/en/method_list.html:748(a) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:420(span) -#: doc/reference/en/ActiveGroonga/Migration.html:177(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:480(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:497(span) -#: doc/reference/en/ActiveGroonga/Migration.html:623(span) -msgid "migration_name" -msgstr "" - -#: doc/reference/en/method_list.html:756(a) -#: doc/reference/en/ActiveGroonga/Migration.html:198(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:509(strong) -#: doc/reference/en/ActiveGroonga/Migration.html:526(span) -msgid "migrations" -msgstr "" - -#: doc/reference/en/method_list.html:764(a) -msgid "#n_records" -msgstr "" - -#: doc/reference/en/method_list.html:772(a) -#: doc/reference/en/method_list.html:780(a) -#: doc/reference/en/method_list.html:788(a) -msgid "#name" -msgstr "" - -#: doc/reference/en/method_list.html:796(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#new_record?" -msgstr "" - -#: doc/reference/en/method_list.html:804(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:188(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:155(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:216(strong) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:242(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:263(a) -msgid "next_migration_number" -msgstr "" - -#: doc/reference/en/method_list.html:812(a) -msgid "#options" -msgstr "" - -#: doc/reference/en/method_list.html:820(a) -msgid "#owner" -msgstr "" - -#: doc/reference/en/method_list.html:828(a) -msgid "#paginate" -msgstr "" - -#: doc/reference/en/method_list.html:836(a) -#: doc/reference/en/method_list.html:844(a) -#: doc/reference/en/method_list.html:852(a) -msgid "#path" -msgstr "" - -#: doc/reference/en/method_list.html:860(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#persisted?" -msgstr "" - -#: doc/reference/en/method_list.html:868(a) -msgid "#quote_table_name" -msgstr "" - -#: doc/reference/en/method_list.html:876(a) -msgid "#read_attribute" -msgstr "" - -#: doc/reference/en/method_list.html:884(a) -msgid "#record" -msgstr "" - -#: doc/reference/en/method_list.html:892(a) -msgid "#record_id" -msgstr "" - -#: doc/reference/en/method_list.html:900(a) -msgid "#record_raw_id" -msgstr "" - -#: doc/reference/en/method_list.html:908(a) -msgid "#records" -msgstr "" - -#: doc/reference/en/method_list.html:916(a) -msgid "#reference?" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:232(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:266(p) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:305(p) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:236(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:258(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:297(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:281(p) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:320(p) +#: doc/reference/en/ActiveGroonga/Migration.html:388(p) +#: doc/reference/en/ActiveGroonga/Migration.html:427(p) +#: doc/reference/en/ActiveGroonga/Vector.html:398(p) +#: doc/reference/en/ActiveGroonga/Vector.html:437(p) +#: doc/reference/en/ActiveGroonga/Vector.html:476(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:401(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:440(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:479(p) +msgid "- () " msgstr "" -#: doc/reference/en/method_list.html:924(a) -#: doc/reference/en/ActiveGroonga/Base.html:589(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2017(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2036(span) -msgid "reference_class" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:240(p) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:305(p) +msgid "Returns the value of attribute table" msgstr "" -#: doc/reference/en/method_list.html:932(a) -msgid "#reference_table_name" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:249(pre) +#: doc/reference/en/ActiveGroonga/Migration.html:507(pre) +msgid "25 26 27" msgstr "" -#: doc/reference/en/method_list.html:940(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#reload" +#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:257(span) +msgid "# File 'lib/active_groonga/error.rb', line 25" msgstr "" -#: doc/reference/en/method_list.html:948(a) -msgid "#remove" +#: doc/reference/en/ActiveGroonga/Generators.html:6(title) +msgid "Module: ActiveGroonga::Generators — activegroonga" msgstr "" -#: doc/reference/en/method_list.html:956(a) -msgid "#remove_code" +#: doc/reference/en/ActiveGroonga/Generators.html:36(a) +msgid "Index (G)" msgstr "" -#: doc/reference/en/method_list.html:964(a) -msgid "#remove_table_code" +#: doc/reference/en/ActiveGroonga/Generators.html:39(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:37(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:37(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:37(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:37(a) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:208(a) +#: doc/reference/en/ActiveGroonga.html:108(a) +msgid "Generators" msgstr "" -#: doc/reference/en/method_list.html:972(a) -msgid "#remove_version" +#: doc/reference/en/ActiveGroonga/Generators.html:59(h1) +msgid "Module: ActiveGroonga::Generators" msgstr "" -#: doc/reference/en/method_list.html:980(a) -msgid "#reopen" +#: doc/reference/en/ActiveGroonga/Generators.html:75(span) +msgid "" +",
lib/rails/generators/active_groonga/migration/column.rb,
lib/" +"rails/generators/active_groonga/model/model_generator.rb,
lib/rails/" +"generators/active_groonga/migration/migration_generator.rb" msgstr "" -#: doc/reference/en/method_list.html:988(a) -#: doc/reference/en/method_list.html:996(a) -#: doc/reference/en/ActiveGroonga/Base.html:1104(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#save" +#: doc/reference/en/ActiveGroonga/Generators.html:75(dd) +msgid "lib/rails/generators/active_groonga.rb" msgstr "" -#: doc/reference/en/method_list.html:998(small) -#: doc/reference/en/method_list.html:1014(small) -#: doc/reference/en/method_list.html:1198(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveGroonga::Validations" +#: doc/reference/en/ActiveGroonga/Generators.html:82(h2) +#: doc/reference/en/ActiveGroonga/Validations.html:92(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:84(h2) +#: doc/reference/en/ActiveGroonga/Railties.html:80(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:99(h2) +#: doc/reference/en/top-level-namespace.html:77(h2) +#: doc/reference/en/ActiveGroonga.html:104(h2) +msgid "Defined Under Namespace" msgstr "" -#: doc/reference/en/method_list.html:1004(a) -#: doc/reference/en/method_list.html:1012(a) -#: doc/reference/en/ActiveGroonga/Base.html:1104(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#save!" +#: doc/reference/en/ActiveGroonga/Generators.html:88(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:90(strong) +#: doc/reference/en/ActiveGroonga.html:112(strong) +msgid "Classes:" msgstr "" -#: doc/reference/en/method_list.html:1020(a) -msgid "#score" +#: doc/reference/en/ActiveGroonga/Generators.html:88(a) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:69(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:76(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:186(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:39(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:69(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:76(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:262(a) +#: doc/reference/en/ActiveGroonga/Persistence.html:74(a) +#: doc/reference/en/ActiveGroonga/Validations.html:82(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:78(a) +#: doc/reference/en/ActiveGroonga/Base.html:39(span) +#: doc/reference/en/ActiveGroonga/Base.html:1122(a) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:413(span) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:106(a) +#: doc/reference/en/_index.html:113(a) +#: doc/reference/en/ActiveGroonga.html:112(a) +msgid "Base" msgstr "" -#: doc/reference/en/method_list.html:1028(a) -msgid "#score=" +#: doc/reference/en/ActiveGroonga/Generators.html:88(a) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:39(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:414(a) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:142(a) +msgid "Column" msgstr "" -#: doc/reference/en/method_list.html:1036(a) -#: doc/reference/en/ActiveGroonga/Base.html:610(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2050(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2071(span) -#: doc/reference/en/ActiveGroonga/Base.html:2073(span) -msgid "select" +#: doc/reference/en/ActiveGroonga/Generators.html:88(a) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:39(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:196(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:111(a) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:255(a) +msgid "MigrationGenerator" msgstr "" -#: doc/reference/en/method_list.html:1044(a) -#: doc/reference/en/ActiveSupport/TestCase.html:124(a) -msgid "#setup_fixtures_with_active_groonga" +#: doc/reference/en/ActiveGroonga/Generators.html:88(a) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:111(a) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:39(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(a) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:269(a) +msgid "ModelGenerator" msgstr "" -#: doc/reference/en/method_list.html:1052(a) -msgid "#sort" +#: doc/reference/en/ActiveGroonga/Generators.html:83(p) +msgid "" +" , , , " msgstr "" -#: doc/reference/en/method_list.html:1060(a) -#: doc/reference/en/ActiveGroonga/Base.html:179(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1278(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1296(span) -#: doc/reference/en/ActiveGroonga/Base.html:1301(span) -#: doc/reference/en/ActiveGroonga/Base.html:1304(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:628(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:711(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:800(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:801(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:802(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:803(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:807(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:808(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:955(span) -msgid "sort_keys" +#: doc/reference/en/ActiveGroonga/Schema.html:6(title) +msgid "Class: ActiveGroonga::Schema — activegroonga" msgstr "" -#: doc/reference/en/method_list.html:1068(a) -#: doc/reference/en/method_list.html:1076(a) -#: doc/reference/en/method_list.html:1092(a) -msgid "#table" +#: doc/reference/en/ActiveGroonga/Schema.html:36(a) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:36(a) +msgid "Index (S)" msgstr "" -#: doc/reference/en/method_list.html:1084(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:136(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:240(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:241(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:303(strong) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:329(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:112(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:215(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:216(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:236(strong) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:262(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:453(span) -#: doc/reference/en/ActiveGroonga/Persistence.html:647(span) -#: doc/reference/en/ActiveGroonga/Base.html:631(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1020(strong) -#: doc/reference/en/ActiveGroonga/Base.html:1388(span) -#: doc/reference/en/ActiveGroonga/Base.html:1487(span) -#: doc/reference/en/ActiveGroonga/Base.html:1661(span) -#: doc/reference/en/ActiveGroonga/Base.html:1839(span) -#: doc/reference/en/ActiveGroonga/Base.html:1840(span) -#: doc/reference/en/ActiveGroonga/Base.html:1847(span) -#: doc/reference/en/ActiveGroonga/Base.html:1889(span) -#: doc/reference/en/ActiveGroonga/Base.html:1895(span) -#: doc/reference/en/ActiveGroonga/Base.html:1897(span) -#: doc/reference/en/ActiveGroonga/Base.html:1961(span) -#: doc/reference/en/ActiveGroonga/Base.html:1962(span) -#: doc/reference/en/ActiveGroonga/Base.html:2073(span) -#: doc/reference/en/ActiveGroonga/Base.html:2087(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2104(span) -#: doc/reference/en/ActiveGroonga/Base.html:2348(span) -#: doc/reference/en/ActiveGroonga/Base.html:2416(span) -#: doc/reference/en/ActiveGroonga/Base.html:2506(span) -#: doc/reference/en/ActiveGroonga/Base.html:2507(span) -#: doc/reference/en/ActiveGroonga/Base.html:2570(span) -#: doc/reference/en/ActiveGroonga/Base.html:2672(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2689(span) -#: doc/reference/en/ActiveGroonga/Base.html:2690(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) -msgid "table" +#: doc/reference/en/ActiveGroonga/Schema.html:39(span) +#: doc/reference/en/ActiveGroonga/Schema.html:233(a) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:364(a) +#: doc/reference/en/ActiveGroonga.html:112(a) +msgid "Schema" msgstr "" -#: doc/reference/en/method_list.html:1100(a) -#: doc/reference/en/ActiveGroonga/Base.html:652(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2105(span) -#: doc/reference/en/ActiveGroonga/Base.html:2116(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2137(span) -#: doc/reference/en/ActiveGroonga/Base.html:2141(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:417(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:419(span) -msgid "table_name" +#: doc/reference/en/ActiveGroonga/Schema.html:59(h1) +msgid "Class: ActiveGroonga::Schema" msgstr "" -#: doc/reference/en/method_list.html:1108(a) -#: doc/reference/en/ActiveGroonga/Base.html:673(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2153(strong) -#: doc/reference/en/ActiveGroonga/Base.html:2170(span) -msgid "table_name=" +#: doc/reference/en/ActiveGroonga/Schema.html:74(li) +msgid "ActiveGroonga::Schema" msgstr "" -#: doc/reference/en/method_list.html:1116(a) -#: doc/reference/en/ActiveSupport/TestCase.html:124(a) -msgid "#teardown_fixtures_with_active_groonga" +#: doc/reference/en/ActiveGroonga/Schema.html:90(dd) +msgid "lib/active_groonga/schema.rb" msgstr "" -#: doc/reference/en/method_list.html:1124(a) -msgid "#to_ary" +#: doc/reference/en/ActiveGroonga/Schema.html:101(h2) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:123(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:166(h2) +#: doc/reference/en/ActiveGroonga/Base.html:219(h2) +msgid "Class Method Summary " msgstr "" -#: doc/reference/en/method_list.html:1132(a) -msgid "#to_key" +#: doc/reference/en/ActiveGroonga/Schema.html:111(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:162(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:282(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:358(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Schema.html:400(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +msgid "define" msgstr "" -#: doc/reference/en/method_list.html:1140(a) -msgid "#transaction" +#: doc/reference/en/ActiveGroonga/Schema.html:111(a) +msgid "+ (Object) (options = {}, &block)" msgstr "" -#: doc/reference/en/method_list.html:1148(a) -msgid "#type" +#: doc/reference/en/ActiveGroonga/Schema.html:132(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:183(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:310(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:411(strong) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Schema.html:453(span) +msgid "dump" msgstr "" -#: doc/reference/en/method_list.html:1156(a) -msgid "#up?" +#: doc/reference/en/ActiveGroonga/Schema.html:132(a) +#: doc/reference/en/ActiveGroonga/Base.html:229(a) +#: doc/reference/en/ActiveGroonga/Base.html:607(a) +msgid "+ (Object) (options = {})" msgstr "" -#: doc/reference/en/method_list.html:1164(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#update_attribute" +#: doc/reference/en/ActiveGroonga/Schema.html:162(a) +msgid "- (Object) {|@schema| ... }" msgstr "" -#: doc/reference/en/method_list.html:1172(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#update_attributes" +#: doc/reference/en/ActiveGroonga/Schema.html:183(a) +msgid "- (Object) (output = nil)" msgstr "" -#: doc/reference/en/method_list.html:1180(a) -#: doc/reference/en/ActiveGroonga/Base.html:1116(a) -msgid "#update_attributes!" +#: doc/reference/en/ActiveGroonga/Schema.html:204(a) +msgid "- (Schema) (options = {})" msgstr "" -#: doc/reference/en/method_list.html:1188(a) -msgid "#update_version" +#: doc/reference/en/ActiveGroonga/Schema.html:219(p) +msgid "A new instance of Schema." msgstr "" -#: doc/reference/en/method_list.html:1196(a) -#: doc/reference/en/ActiveGroonga/Base.html:1104(a) -msgid "#valid?" +#: doc/reference/en/ActiveGroonga/Schema.html:231(p) +#: doc/reference/en/ActiveGroonga/ResultSet.html:644(span) +msgid "" +"- () " +"(options = {})" msgstr "" -#: doc/reference/en/method_list.html:1204(a) -msgid "#values" +#: doc/reference/en/ActiveGroonga/Schema.html:239(p) +msgid "A new instance of Schema" msgstr "" -#: doc/reference/en/method_list.html:1212(a) -msgid "#vector?" +#: doc/reference/en/ActiveGroonga/Schema.html:248(pre) +#: doc/reference/en/ActiveGroonga/Database.html:352(pre) +msgid "37 38 39 40 41 42" msgstr "" -#: doc/reference/en/method_list.html:1220(a) -#: doc/reference/en/method_list.html:1228(a) -#: doc/reference/en/method_list.html:1236(a) -msgid "#version" +#: doc/reference/en/ActiveGroonga/Schema.html:259(span) +msgid "# File 'lib/active_groonga/schema.rb', line 37" msgstr "" -#: doc/reference/en/method_list.html:1244(a) -msgid "#with_position?" +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:335(span) +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:135(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:507(strong) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:532(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:345(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:448(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Validations.html:213(span) +#: doc/reference/en/ActiveGroonga/Validations.html:214(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) +#: doc/reference/en/ActiveGroonga/Validations.html:242(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/Base.html:2042(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:378(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:382(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:383(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:384(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:711(tt) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +msgid "options" msgstr "" -#: doc/reference/en/method_list.html:1252(a) -msgid "#with_section?" +#: doc/reference/en/ActiveGroonga/Schema.html:261(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:334(span) +#: doc/reference/en/ActiveGroonga/Schema.html:335(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:641(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:669(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:697(span) +#: doc/reference/en/ActiveGroonga/Validations.html:213(span) +#: doc/reference/en/ActiveGroonga/Validations.html:241(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:255(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) +#: doc/reference/en/ActiveGroonga/Callbacks.html:163(span) +#: doc/reference/en/ActiveGroonga/Base.html:111(span) +#: doc/reference/en/ActiveGroonga/Base.html:1168(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1376(span) +#: doc/reference/en/ActiveGroonga/Base.html:1549(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:2008(span) +#: doc/reference/en/ActiveGroonga/Base.html:2041(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:377(span) +msgid "{" msgstr "" -#: doc/reference/en/method_list.html:1260(a) -msgid "#with_weight?" +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:533(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:826(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:875(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:924(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:973(span) +msgid "@options" msgstr "" -#: doc/reference/en/method_list.html:1268(a) -msgid "#write_attribute" +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:382(span) +msgid "||" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Generators.html:88(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:74(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:69(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:187(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:69(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:262(a) -#: doc/reference/en/ActiveGroonga/Schema.html:265(span) -#: doc/reference/en/ActiveGroonga/Validations.html:82(a) -#: doc/reference/en/ActiveGroonga/Base.html:39(span) -#: doc/reference/en/ActiveGroonga/Base.html:1125(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:400(span) +#: doc/reference/en/ActiveGroonga/Schema.html:453(span) +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Schema.html:457(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:445(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:741(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:826(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:875(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:924(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:973(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:204(span) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:240(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:345(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:408(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:384(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:385(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:386(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:387(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:388(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:728(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:759(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:789(span) +#: doc/reference/en/ActiveGroonga/Validations.html:242(span) +#: doc/reference/en/ActiveGroonga/Validations.html:295(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:212(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:214(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:216(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:331(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:332(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:364(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) +#: doc/reference/en/ActiveGroonga/Database.html:289(span) +#: doc/reference/en/ActiveGroonga/Database.html:290(span) +#: doc/reference/en/ActiveGroonga/Database.html:328(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:332(span) #: doc/reference/en/ActiveGroonga/Database.html:333(span) -#: doc/reference/en/ActiveGroonga/Database.html:337(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:266(span) -#: doc/reference/en/ActiveGroonga/Callbacks.html:78(a) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:311(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:379(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:418(span) -#: doc/reference/en/_index.html:103(a) doc/reference/en/_index.html:110(a) -msgid "Base" +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Database.html:366(span) +#: doc/reference/en/ActiveGroonga/Database.html:367(span) +#: doc/reference/en/ActiveGroonga/Database.html:368(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:167(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:168(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:170(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:171(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:174(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:190(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:160(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:385(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:413(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Migration.html:490(span) +#: doc/reference/en/ActiveGroonga/Migration.html:575(span) +#: doc/reference/en/ActiveGroonga/Migration.html:580(span) +#: doc/reference/en/ActiveGroonga/Migration.html:582(span) +#: doc/reference/en/ActiveGroonga/Migration.html:612(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Base.html:1161(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1173(span) +#: doc/reference/en/ActiveGroonga/Base.html:1210(span) +#: doc/reference/en/ActiveGroonga/Base.html:1213(span) +#: doc/reference/en/ActiveGroonga/Base.html:1288(span) +#: doc/reference/en/ActiveGroonga/Base.html:1293(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1413(span) +#: doc/reference/en/ActiveGroonga/Base.html:1415(span) +#: doc/reference/en/ActiveGroonga/Base.html:1416(span) +#: doc/reference/en/ActiveGroonga/Base.html:1445(span) +#: doc/reference/en/ActiveGroonga/Base.html:1473(span) +#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1511(span) +#: doc/reference/en/ActiveGroonga/Base.html:1517(span) +#: doc/reference/en/ActiveGroonga/Base.html:1550(span) +#: doc/reference/en/ActiveGroonga/Base.html:1579(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:1642(span) +#: doc/reference/en/ActiveGroonga/Base.html:1643(span) +#: doc/reference/en/ActiveGroonga/Base.html:1677(span) +#: doc/reference/en/ActiveGroonga/Base.html:1713(span) +#: doc/reference/en/ActiveGroonga/Base.html:1752(span) +#: doc/reference/en/ActiveGroonga/Base.html:1753(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +#: doc/reference/en/ActiveGroonga/Base.html:1755(span) +#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1815(span) +#: doc/reference/en/ActiveGroonga/Base.html:1816(span) +#: doc/reference/en/ActiveGroonga/Base.html:1823(span) +#: doc/reference/en/ActiveGroonga/Base.html:1863(span) +#: doc/reference/en/ActiveGroonga/Base.html:1864(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1873(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +#: doc/reference/en/ActiveGroonga/Base.html:1935(span) +#: doc/reference/en/ActiveGroonga/Base.html:1936(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:1973(span) +#: doc/reference/en/ActiveGroonga/Base.html:1974(span) +#: doc/reference/en/ActiveGroonga/Base.html:1975(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +#: doc/reference/en/ActiveGroonga/Base.html:2009(span) +#: doc/reference/en/ActiveGroonga/Base.html:2043(span) +#: doc/reference/en/ActiveGroonga/Base.html:2046(span) +#: doc/reference/en/ActiveGroonga/Base.html:2106(span) +#: doc/reference/en/ActiveGroonga/Base.html:2107(span) +#: doc/reference/en/ActiveGroonga/Base.html:2109(span) +#: doc/reference/en/ActiveGroonga/Base.html:2172(span) +#: doc/reference/en/ActiveGroonga/Base.html:2230(span) +#: doc/reference/en/ActiveGroonga/Base.html:2260(span) +#: doc/reference/en/ActiveGroonga/Base.html:2309(span) +#: doc/reference/en/ActiveGroonga/Base.html:2375(span) +#: doc/reference/en/ActiveGroonga/Base.html:2380(span) +#: doc/reference/en/ActiveGroonga/Base.html:2381(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Base.html:2524(span) +#: doc/reference/en/ActiveGroonga/Base.html:2640(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:379(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:380(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:382(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:603(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:631(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:675(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:335(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:412(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:459(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:461(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:504(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:376(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:378(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:384(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:413(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:103(span) +msgid "." msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < " -"Object" +#: doc/reference/en/ActiveGroonga/Schema.html:262(span) +#: doc/reference/en/ActiveGroonga/Schema.html:337(span) +msgid "dup" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1092(a) -#: doc/reference/en/ActiveGroonga/Callbacks.html:39(span) -#: doc/reference/en/_index.html:125(a) -msgid "Callbacks" +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:401(span) +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:248(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:333(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:348(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/Migration.html:326(span) +#: doc/reference/en/ActiveGroonga/Migration.html:455(span) +msgid "@version" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Base.html:1596(span) -#: doc/reference/en/ActiveGroonga/Database.html:39(span) -#: doc/reference/en/ActiveGroonga/Database.html:224(a) -#: doc/reference/en/ActiveGroonga/Database.html:332(span) -#: doc/reference/en/ActiveGroonga/Database.html:336(span) -#: doc/reference/en/_index.html:168(a) -msgid "Database" +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:121(strong) +#: doc/reference/en/ActiveGroonga/Persistence.html:399(strong) +#: doc/reference/en/ActiveGroonga/Persistence.html:418(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:364(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:111(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:288(strong) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +msgid "delete" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Error.html:108(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:39(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:221(a) -#: doc/reference/en/_index.html:175(a) -msgid "DuplicateMigrationVersionError" +#: doc/reference/en/ActiveGroonga/Schema.html:263(span) +msgid ":version" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < Error" +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/Validations.html:293(span) +#: doc/reference/en/ActiveGroonga/Validations.html:294(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:264(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Base.html:271(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1427(strong) +#: doc/reference/en/ActiveGroonga/Base.html:1444(span) +#: doc/reference/en/ActiveGroonga/Base.html:1752(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:309(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:375(span) +msgid "context" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:69(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:76(a) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:69(a) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:76(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:69(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:76(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) -#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:69(a) -#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:76(a) -#: doc/reference/en/ActiveGroonga/Error.html:39(span) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:69(a) -#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:76(a) -#: doc/reference/en/_index.html:190(a) -msgid "Error" +#: doc/reference/en/ActiveGroonga/Schema.html:264(span) +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +msgid ":context" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < " -"StandardError" +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:375(tt) +#: doc/reference/en/ActiveGroonga/Schema.html:399(span) +#: doc/reference/en/ActiveGroonga/Schema.html:400(span) +#: doc/reference/en/ActiveGroonga/Schema.html:453(span) +#: doc/reference/en/ActiveGroonga/Migration.html:328(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +msgid "@schema" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/Generators.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:37(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:37(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:37(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:37(a) -#: doc/reference/en/_index.html:205(a) -msgid "Generators" +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1445(span) +#: doc/reference/en/ActiveGroonga/Base.html:1753(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +msgid "Groonga" msgstr "" -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveGroonga::Generators" +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Migration.html:490(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1445(span) +#: doc/reference/en/ActiveGroonga/Base.html:1753(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +msgid "::" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < " -"NamedBase" +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:384(span) +#: doc/reference/en/ActiveGroonga/Validations.html:242(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:212(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:190(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:158(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/Base.html:1515(span) +#: doc/reference/en/ActiveGroonga/Base.html:1579(span) +#: doc/reference/en/ActiveGroonga/Base.html:1972(span) +#: doc/reference/en/ActiveGroonga/Base.html:2462(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:412(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +msgid "new" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/Generators.html:88(a) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/Column.html:415(a) -#: doc/reference/en/_index.html:139(a) -msgid "Column" +#: doc/reference/en/ActiveGroonga/Schema.html:265(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:730(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:220(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) +#: doc/reference/en/ActiveGroonga/Database.html:330(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Database.html:334(span) +#: doc/reference/en/ActiveGroonga/Base.html:1754(span) +#: doc/reference/en/ActiveGroonga/Base.html:2046(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:682(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:683(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:466(span) +msgid "=>" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/Generators.html:88(a) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:197(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:112(a) -#: doc/reference/en/_index.html:252(a) -msgid "MigrationGenerator" +#: doc/reference/en/ActiveGroonga/Schema.html:276(h2) +#: doc/reference/en/ActiveGroonga/Generators/Base.html:180(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:466(h2) +#: doc/reference/en/ActiveGroonga/Base.html:1353(h2) +msgid "Class Method Details" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < Base" +#: doc/reference/en/ActiveGroonga/Schema.html:280(p) +msgid "+ () (options = {}, &block)" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/Generators.html:88(a) -#: doc/reference/en/ActiveGroonga/Generators/Base.html:112(a) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:39(span) -#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:272(a) -#: doc/reference/en/_index.html:266(a) -msgid "ModelGenerator" +#: doc/reference/en/ActiveGroonga/Schema.html:289(pre) +msgid "21 22 23" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:39(span) -#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:212(a) -#: doc/reference/en/ActiveGroonga/Base.html:2507(span) -#: doc/reference/en/ActiveGroonga/Error.html:108(a) -#: doc/reference/en/_index.html:220(a) -msgid "KeyOverrideError" +#: doc/reference/en/ActiveGroonga/Schema.html:297(span) +msgid "# File 'lib/active_groonga/schema.rb', line 21" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Migration.html:39(span) -#: doc/reference/en/ActiveGroonga/Migration.html:299(a) -#: doc/reference/en/_index.html:238(a) -msgid "Migration" +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:222(span) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:261(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:444(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:448(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:302(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:346(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:376(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:377(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:385(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:386(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:387(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:388(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:727(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:729(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:218(span) +#: doc/reference/en/ActiveGroonga/RecordInvalid.html:219(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:332(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) +#: doc/reference/en/ActiveGroonga/KeyOverrideError.html:239(span) +#: doc/reference/en/ActiveGroonga/Database.html:329(span) +#: doc/reference/en/ActiveGroonga/Database.html:333(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:171(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:383(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:384(span) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Vector.html:378(span) +#: doc/reference/en/ActiveGroonga/Base.html:1288(span) +#: doc/reference/en/ActiveGroonga/Base.html:1293(span) +#: doc/reference/en/ActiveGroonga/Base.html:1412(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1512(span) +#: doc/reference/en/ActiveGroonga/Base.html:1715(span) +#: doc/reference/en/ActiveGroonga/Base.html:1862(span) +#: doc/reference/en/ActiveGroonga/Base.html:1938(span) +#: doc/reference/en/ActiveGroonga/Base.html:1973(span) +#: doc/reference/en/ActiveGroonga/Base.html:1975(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +#: doc/reference/en/ActiveGroonga/Base.html:2007(span) +#: doc/reference/en/ActiveGroonga/Base.html:2046(span) +#: doc/reference/en/ActiveGroonga/Base.html:2230(span) +#: doc/reference/en/ActiveGroonga/Base.html:2231(span) +#: doc/reference/en/ActiveGroonga/Base.html:2380(span) +#: doc/reference/en/ActiveGroonga/Base.html:2383(span) +#: doc/reference/en/ActiveGroonga/Base.html:2463(span) +#: doc/reference/en/ActiveGroonga/Base.html:2695(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:374(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:681(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:682(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:295(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:468(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:374(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +#: doc/reference/en/ActiveGroonga/VERSION.html:103(span) +msgid "," msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:39(span) -#: doc/reference/en/ActiveGroonga/MigrationEntry.html:235(a) -#: doc/reference/en/_index.html:245(a) -msgid "MigrationEntry" +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1512(span) +msgid "&" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:39(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:266(a) -#: doc/reference/en/_index.html:259(a) -msgid "Migrator" +#: doc/reference/en/ActiveGroonga/Schema.html:299(span) +#: doc/reference/en/ActiveGroonga/Schema.html:300(span) +#: doc/reference/en/ActiveGroonga/Schema.html:398(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:155(span) +#: doc/reference/en/ActiveGroonga/Migration.html:367(span) +#: doc/reference/en/ActiveGroonga/Migration.html:369(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1512(span) +msgid "block" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:39(span) -#: doc/reference/en/ActiveGroonga/NoKeyTableError.html:188(a) -#: doc/reference/en/ActiveGroonga/Base.html:2482(a) -#: doc/reference/en/ActiveGroonga/Base.html:2506(span) -#: doc/reference/en/ActiveGroonga/Error.html:108(a) -#: doc/reference/en/_index.html:281(a) -msgid "NoKeyTableError" +#: doc/reference/en/ActiveGroonga/Schema.html:308(p) +#: doc/reference/en/ActiveGroonga/Base.html:1357(p) +#: doc/reference/en/ActiveGroonga/Base.html:2018(p) +msgid "+ () (options = {})" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:39(span) -#: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1115(a) -#: doc/reference/en/_index.html:303(a) -msgid "Persistence" +#: doc/reference/en/ActiveGroonga/Schema.html:317(pre) +msgid "25 26 27 28 29 30 31 32 33 34" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Railtie.html:39(span) -#: doc/reference/en/_index.html:318(a) -msgid "Railtie" +#: doc/reference/en/ActiveGroonga/Schema.html:332(span) +msgid "# File 'lib/active_groonga/schema.rb', line 25" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < " -"Railtie" +#: doc/reference/en/ActiveGroonga/Schema.html:335(span) +#: doc/reference/en/ActiveGroonga/Validations.html:293(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:210(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:255(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:256(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:299(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:331(span) +#: doc/reference/en/ActiveGroonga/Base.html:1445(span) +#: doc/reference/en/ActiveGroonga/Base.html:1549(span) +#: doc/reference/en/ActiveGroonga/Base.html:1579(span) +#: doc/reference/en/ActiveGroonga/Base.html:2008(span) +#: doc/reference/en/ActiveGroonga/Base.html:2074(span) +#: doc/reference/en/ActiveGroonga/Base.html:2107(span) +#: doc/reference/en/ActiveGroonga/Base.html:2640(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:631(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:412(span) +msgid "||=" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:37(a) -#: doc/reference/en/ActiveGroonga/Railties.html:39(span) -#: doc/reference/en/_index.html:325(a) -msgid "Railties" +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Schema.html:401(span) +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Schema.html:457(span) +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Schema.html:473(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:445(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:611(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:773(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:408(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:409(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:419(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:451(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:635(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:215(span) +#: doc/reference/en/ActiveGroonga/Database.html:289(span) +#: doc/reference/en/ActiveGroonga/Database.html:327(span) +#: doc/reference/en/ActiveGroonga/Database.html:328(span) +#: doc/reference/en/ActiveGroonga/Database.html:366(span) +#: doc/reference/en/ActiveGroonga/Database.html:367(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:170(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) +#: doc/reference/en/ActiveGroonga/Migration.html:368(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1516(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:1750(span) +#: doc/reference/en/ActiveGroonga/Base.html:1755(span) +#: doc/reference/en/ActiveGroonga/Base.html:1814(span) +#: doc/reference/en/ActiveGroonga/Base.html:1815(span) +#: doc/reference/en/ActiveGroonga/Base.html:1863(span) +#: doc/reference/en/ActiveGroonga/Base.html:1873(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +#: doc/reference/en/ActiveGroonga/Base.html:1974(span) +#: doc/reference/en/ActiveGroonga/Base.html:2106(span) +#: doc/reference/en/ActiveGroonga/Base.html:2375(span) +#: doc/reference/en/ActiveGroonga/Base.html:2524(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:379(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:460(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:461(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:470(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:308(span) +msgid "if" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:39(span) -#: doc/reference/en/ActiveGroonga/Railties.html:84(a) -#: doc/reference/en/_index.html:146(a) -msgid "Configurable" +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:153(span) +#: doc/reference/en/ActiveGroonga/Vector.html:382(span) +#: doc/reference/en/ActiveGroonga/Base.html:1169(span) +#: doc/reference/en/ActiveGroonga/Base.html:1510(span) +#: doc/reference/en/ActiveGroonga/Base.html:1609(span) +#: doc/reference/en/ActiveGroonga/Base.html:2172(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:298(span) +msgid "is_a?" msgstr "" -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveGroonga::Railties" +#: doc/reference/en/ActiveGroonga/Schema.html:336(span) +#: doc/reference/en/ActiveGroonga/Base.html:1414(span) +msgid "Hash" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:39(span) -#: doc/reference/en/ActiveGroonga/RecordInvalid.html:188(a) -#: doc/reference/en/ActiveGroonga/Validations.html:243(span) -#: doc/reference/en/ActiveGroonga/Error.html:108(a) -#: doc/reference/en/_index.html:332(a) -msgid "RecordInvalid" +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +#: doc/reference/en/ActiveGroonga/Schema.html:340(span) +#: doc/reference/en/ActiveGroonga/Schema.html:342(span) +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Schema.html:457(span) +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:466(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:472(span) +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +#: doc/reference/en/ActiveGroonga/Schema.html:476(span) +msgid "output" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Persistence.html:709(span) -#: doc/reference/en/ActiveGroonga/RecordNotSaved.html:39(span) -#: doc/reference/en/ActiveGroonga/Error.html:108(a) -#: doc/reference/en/_index.html:339(a) -msgid "RecordNotSaved" +#: doc/reference/en/ActiveGroonga/Schema.html:338(span) +msgid ":output" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:37(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:39(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:318(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:578(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:580(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:598(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:681(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:697(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:760(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:823(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:825(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:843(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:925(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:941(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:1004(a) -#: doc/reference/en/_index.html:346(a) -msgid "ResultSet" +#: doc/reference/en/ActiveGroonga/Schema.html:339(span) +#: doc/reference/en/ActiveGroonga/Schema.html:467(span) +#: doc/reference/en/ActiveGroonga/Schema.html:475(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:613(span) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:775(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:637(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:217(span) +#: doc/reference/en/ActiveGroonga/Database.html:331(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:172(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:157(span) +#: doc/reference/en/ActiveGroonga/Migration.html:370(span) +#: doc/reference/en/ActiveGroonga/Base.html:1171(span) +#: doc/reference/en/ActiveGroonga/Base.html:1514(span) +#: doc/reference/en/ActiveGroonga/Base.html:1817(span) +#: doc/reference/en/ActiveGroonga/Base.html:2108(span) +#: doc/reference/en/ActiveGroonga/Base.html:2377(span) +#: doc/reference/en/ActiveGroonga/Base.html:2526(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:462(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) +msgid "else" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" " -"< Object" +#: doc/reference/en/ActiveGroonga/Schema.html:352(h2) +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:235(h2) +#: doc/reference/en/ActiveGroonga/Generators/Column.html:583(h2) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:319(h2) +#: doc/reference/en/ActiveGroonga/Persistence.html:355(h2) +#: doc/reference/en/ActiveGroonga/Validations.html:190(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:176(h2) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:275(h2) +#: doc/reference/en/ActiveGroonga/Database.html:263(h2) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:120(h2) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:120(h2) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:359(h2) +#: doc/reference/en/ActiveGroonga/Callbacks.html:131(h2) +#: doc/reference/en/ActiveGroonga/Migration.html:528(h2) +#: doc/reference/en/ActiveGroonga/Vector.html:515(h2) +#: doc/reference/en/ActiveGroonga/Base.html:2148(h2) +#: doc/reference/en/ActiveGroonga/ResultSet.html:518(h2) +#: doc/reference/en/ActiveGroonga/Migrator.html:311(h2) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:282(h2) +msgid "Instance Method Details" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/ResultSet/PaginationProxy.html:39(span) -#: doc/reference/en/ActiveGroonga/ResultSet.html:103(a) -#: doc/reference/en/ActiveGroonga/ResultSet.html:810(span) -#: doc/reference/en/_index.html:296(a) -msgid "PaginationProxy" +#: doc/reference/en/ActiveGroonga/Schema.html:356(p) +msgid "- () {|@schema| ... }" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Schema.html:39(span) -#: doc/reference/en/ActiveGroonga/Schema.html:233(a) -#: doc/reference/en/ActiveGroonga/Schema.html:266(span) -#: doc/reference/en/ActiveGroonga/Migrator.html:472(span) -#: doc/reference/en/_index.html:361(a) -msgid "Schema" +#: doc/reference/en/ActiveGroonga/Schema.html:369(h3) +msgid "Yields:" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Migrator.html:417(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:39(span) -#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:237(a) -#: doc/reference/en/_index.html:368(a) -msgid "SchemaManagementTable" +#: doc/reference/en/ActiveGroonga/Schema.html:386(pre) +#: doc/reference/en/ActiveGroonga/Persistence.html:438(pre) +#: doc/reference/en/ActiveGroonga/Database.html:276(pre) +msgid "44 45 46 47 48" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveSupport/TestCase.html:39(span) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/TestCase.html:39(span) -#: doc/reference/en/_index.html:383(a) doc/reference/en/_index.html:390(a) -msgid "TestCase" +#: doc/reference/en/ActiveGroonga/Schema.html:396(span) +msgid "# File 'lib/active_groonga/schema.rb', line 44" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/ActiveGroonga/Schema.html:399(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:159(span) +#: doc/reference/en/ActiveGroonga/Base.html:1516(span) +#: doc/reference/en/ActiveGroonga/Base.html:2044(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:549(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:338(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:442(span) +msgid "yield" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:401(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:209(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:375(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:393(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +msgid "update_version" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:409(p) +msgid "- () (output = nil)" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:418(pre) msgid "" -" < " -"TestCase" +"50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 " +"75 76" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/TestFixtures.html:39(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:37(a) -#: doc/reference/en/_index.html:397(a) -msgid "TestFixtures" +#: doc/reference/en/ActiveGroonga/Schema.html:450(span) +msgid "# File 'lib/active_groonga/schema.rb', line 50" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/TestFixtures.html:90(a) -#: doc/reference/en/ActiveGroonga/TestFixtures.html:212(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:39(span) -#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:245(a) -#: doc/reference/en/_index.html:153(a) -msgid "ConnectionMock" +#: doc/reference/en/ActiveGroonga/Schema.html:452(span) +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:304(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:305(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:307(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:636(span) +#: doc/reference/en/ActiveGroonga/Validations.html:292(span) +#: doc/reference/en/ActiveGroonga/Database.html:252(span) +#: doc/reference/en/ActiveGroonga/Database.html:291(span) +#: doc/reference/en/ActiveGroonga/Database.html:369(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:152(span) +#: doc/reference/en/ActiveGroonga/Migration.html:568(span) +#: doc/reference/en/ActiveGroonga/Base.html:116(span) +#: doc/reference/en/ActiveGroonga/Base.html:1160(span) +#: doc/reference/en/ActiveGroonga/Base.html:1162(span) +#: doc/reference/en/ActiveGroonga/Base.html:1163(span) +#: doc/reference/en/ActiveGroonga/Base.html:1164(span) +#: doc/reference/en/ActiveGroonga/Base.html:1213(span) +#: doc/reference/en/ActiveGroonga/Base.html:1296(span) +#: doc/reference/en/ActiveGroonga/Base.html:1509(span) +#: doc/reference/en/ActiveGroonga/Base.html:1611(span) +#: doc/reference/en/ActiveGroonga/Base.html:1753(span) +#: doc/reference/en/ActiveGroonga/Base.html:1868(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1873(span) +#: doc/reference/en/ActiveGroonga/Base.html:2105(span) +#: doc/reference/en/ActiveGroonga/Base.html:2668(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:457(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:271(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:307(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:441(span) +msgid "nil" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/VERSION.html:39(span) -#: doc/reference/en/_index.html:412(a) -msgid "VERSION" +#: doc/reference/en/ActiveGroonga/Schema.html:453(span) +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +msgid "dumped_schema" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:109(a) -#: doc/reference/en/ActiveGroonga/Validations.html:39(span) -#: doc/reference/en/ActiveGroonga/Base.html:91(a) -#: doc/reference/en/ActiveGroonga/Base.html:1103(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:37(a) -#: doc/reference/en/_index.html:419(a) -msgid "Validations" +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:345(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:408(span) +#: doc/reference/en/ActiveGroonga/Database.html:289(span) +#: doc/reference/en/ActiveGroonga/Database.html:327(span) +#: doc/reference/en/ActiveGroonga/Database.html:367(span) +#: doc/reference/en/ActiveGroonga/Base.html:1750(span) +#: doc/reference/en/ActiveGroonga/Base.html:1821(span) +#: doc/reference/en/ActiveGroonga/Base.html:1868(span) +#: doc/reference/en/ActiveGroonga/Base.html:1870(span) +#: doc/reference/en/ActiveGroonga/Base.html:1873(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +#: doc/reference/en/ActiveGroonga/Base.html:2042(span) +msgid "return" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga/Validations.html:96(a) -#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:39(span) -#: doc/reference/en/_index.html:132(a) -msgid "ClassMethods" +#: doc/reference/en/ActiveGroonga/Schema.html:454(span) +#: doc/reference/en/ActiveGroonga/Schema.html:457(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:345(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:214(span) +#: doc/reference/en/ActiveGroonga/Database.html:289(span) +#: doc/reference/en/ActiveGroonga/Database.html:367(span) +#: doc/reference/en/ActiveGroonga/Base.html:1752(span) +#: doc/reference/en/ActiveGroonga/Base.html:1816(span) +#: doc/reference/en/ActiveGroonga/Base.html:1873(span) +#: doc/reference/en/ActiveGroonga/Base.html:1934(span) +#: doc/reference/en/ActiveGroonga/Base.html:2106(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:379(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:548(span) +msgid "nil?" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveGroonga.html:113(a) -#: doc/reference/en/ActiveGroonga/Vector.html:39(span) -#: doc/reference/en/ActiveGroonga/Vector.html:350(a) -#: doc/reference/en/_index.html:426(a) -msgid "Vector" +#: doc/reference/en/ActiveGroonga/Schema.html:456(span) +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Schema.html:473(span) +msgid "return_string" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveSupport/TestCase.html:74(li) -#: doc/reference/en/ActiveGroonga/TestFixtures.html:74(a) -#: doc/reference/en/ActiveGroonga/TestCase.html:69(span) -#: doc/reference/en/ActiveGroonga/TestCase.html:74(li) -msgid "ActiveSupport::TestCase" +#: doc/reference/en/ActiveGroonga/Schema.html:456(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:306(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:730(span) +#: doc/reference/en/ActiveGroonga/Validations.html:214(span) +#: doc/reference/en/ActiveGroonga/Base.html:1166(span) +#: doc/reference/en/ActiveGroonga/Base.html:1821(span) +#: doc/reference/en/ActiveGroonga/Base.html:1977(span) +msgid "false" msgstr "" -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveSupport/TestCase.html:37(span) -msgid "ActiveSupport" +#: doc/reference/en/ActiveGroonga/Schema.html:458(span) +msgid "StringIO" msgstr "" -#: doc/reference/en/file.lgpl.html:6(title) -msgid "File: lgpl — activegroonga" +#: doc/reference/en/ActiveGroonga/Schema.html:459(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:420(span) +#: doc/reference/en/ActiveGroonga/Persistence.html:452(span) +#: doc/reference/en/ActiveGroonga/Base.html:1165(span) +msgid "true" msgstr "" -#: doc/reference/en/file.lgpl.html:37(span) -msgid "File: lgpl" +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:144(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:247(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:248(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:250(span) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:307(strong) +#: doc/reference/en/ActiveGroonga/DuplicateMigrationVersionError.html:332(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:334(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:363(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:364(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:393(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:394(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:127(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:262(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:264(span) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:322(strong) +#: doc/reference/en/ActiveGroonga/MigrationEntry.html:347(span) +#: doc/reference/en/ActiveGroonga/Migration.html:139(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:325(span) +#: doc/reference/en/ActiveGroonga/Migration.html:326(span) +#: doc/reference/en/ActiveGroonga/Migration.html:429(strong) +#: doc/reference/en/ActiveGroonga/Migration.html:454(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:461(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:463(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:465(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:475(span) +msgid "version" msgstr "" -#: doc/reference/en/file.lgpl.html:57(pre) -msgid "" -"GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) " -"1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, " -"Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute " -"verbatim copies of this license document, but changing it is not allowed. " -"[This is the first released version of the Lesser GPL. It also counts as the " -"successor of the GNU Library Public License, version 2, hence the version " -"number 2.1.] Preamble The licenses for most software are designed to take " -"away your freedom to share and change it. By contrast, the GNU General " -"Public Licenses are intended to guarantee your freedom to share and change " -"free software--to make sure the software is free for all its users. This " -"license, the Lesser General Public License, applies to some specially " -"designated software packages--typically libraries--of the Free Software " -"Foundation and other authors who decide to use it. You can use it too, but " -"we suggest you first think carefully about whether this license or the " -"ordinary General Public License is the better strategy to use in any " -"particular case, based on the explanations below. When we speak of free " -"software, we are referring to freedom of use, not price. Our General Public " -"Licenses are designed to make sure that you have the freedom to distribute " -"copies of free software (and charge for this service if you wish); that you " -"receive source code or can get it if you want it; that you can change the " -"software and use pieces of it in new free programs; and that you are " -"informed that you can do these things. To protect your rights, we need to " -"make restrictions that forbid distributors to deny you these rights or to " -"ask you to surrender these rights. These restrictions translate to certain " -"responsibilities for you if you distribute copies of the library or if you " -"modify it. For example, if you distribute copies of the library, whether " -"gratis or for a fee, you must give the recipients all the rights that we " -"gave you. You must make sure that they, too, receive or can get the source " -"code. If you link other code with the library, you must provide complete " -"object files to the recipients, so that they can relink them with the " -"library after making changes to the library and recompiling it. And you must " -"show them these terms so they know their rights. We protect your rights with " -"a two-step method: (1) we copyright the library, and (2) we offer you this " -"license, which gives you legal permission to copy, distribute and/or modify " -"the library. To protect each distributor, we want to make it very clear that " -"there is no warranty for the free library. Also, if the library is modified " -"by someone else and passed on, the recipients should know that what they " -"have is not the original version, so that the original author's reputation " -"will not be affected by problems that might be introduced by others. " -"Finally, software patents pose a constant threat to the existence of any " -"free program. We wish to make sure that a company cannot effectively " -"restrict the users of a free program by obtaining a restrictive license from " -"a patent holder. Therefore, we insist that any patent license obtained for a " -"version of the library must be consistent with the full freedom of use " -"specified in this license. Most GNU software, including some libraries, is " -"covered by the ordinary GNU General Public License. This license, the GNU " -"Lesser General Public License, applies to certain designated libraries, and " -"is quite different from the ordinary General Public License. We use this " -"license for certain libraries in order to permit linking those libraries " -"into non-free programs. When a program is linked with a library, whether " -"statically or using a shared library, the combination of the two is legally " -"speaking a combined work, a derivative of the original library. The ordinary " -"General Public License therefore permits such linking only if the entire " -"combination fits its criteria of freedom. The Lesser General Public License " -"permits more lax criteria for linking other code with the library. We call " -"this license the \"Lesser\" General Public License because it does Less to " -"protect the user's freedom than the ordinary General Public License. It also " -"provides other free software developers Less of an advantage over competing " -"non-free programs. These disadvantages are the reason we use the ordinary " -"General Public License for many libraries. However, the Lesser license " -"provides advantages in certain special circumstances. For example, on rare " -"occasions, there may be a special need to encourage the widest possible use " -"of a certain library, so that it becomes a de-facto standard. To achieve " -"this, non-free programs must be allowed to use the library. A more frequent " -"case is that a free library does the same job as widely used non-free " -"libraries. In this case, there is little to gain by limiting the free " -"library to free software only, so we use the Lesser General Public License. " -"In other cases, permission to use a particular library in non-free programs " -"enables a greater number of people to use a large body of free software. For " -"example, permission to use the GNU C Library in non-free programs enables " -"many more people to use the whole GNU operating system, as well as its " -"variant, the GNU/Linux operating system. Although the Lesser General Public " -"License is Less protective of the users' freedom, it does ensure that the " -"user of a program that is linked with the Library has the freedom and the " -"wherewithal to run that program using a modified version of the Library. The " -"precise terms and conditions for copying, distribution and modification " -"follow. Pay close attention to the difference between a \"work based on the " -"library\" and a \"work that uses the library\". The former contains code " -"derived from the library, whereas the latter must be combined with the " -"library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND " -"CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License " -"Agreement applies to any software library or other program which contains a " -"notice placed by the copyright holder or other authorized party saying it " -"may be distributed under the terms of this Lesser General Public License " -"(also called \"this License\"). Each licensee is addressed as \"you\". A " -"\"library\" means a collection of software functions and/or data prepared so " -"as to be conveniently linked with application programs (which use some of " -"those functions and data) to form executables. The \"Library\", below, " -"refers to any such software library or work which has been distributed under " -"these terms. A \"work based on the Library\" means either the Library or any " -"derivative work under copyright law: that is to say, a work containing the " -"Library or a portion of it, either verbatim or with modifications and/or " -"translated straightforwardly into another language. (Hereinafter, " -"translation is included without limitation in the term \"modification\".) " -"\"Source code\" for a work means the preferred form of the work for making " -"modifications to it. For a library, complete source code means all the " -"source code for all modules it contains, plus any associated interface " -"definition files, plus the scripts used to control compilation and " -"installation of the library. Activities other than copying, distribution and " -"modification are not covered by this License; they are outside its scope. " -"The act of running a program using the Library is not restricted, and output " -"from such a program is covered only if its contents constitute a work based " -"on the Library (independent of the use of the Library in a tool for writing " -"it). Whether that is true depends on what the Library does and what the " -"program that uses the Library does. 1. You may copy and distribute verbatim " -"copies of the Library's complete source code as you receive it, in any " -"medium, provided that you conspicuously and appropriately publish on each " -"copy an appropriate copyright notice and disclaimer of warranty; keep intact " -"all the notices that refer to this License and to the absence of any " -"warranty; and distribute a copy of this License along with the Library. You " -"may charge a fee for the physical act of transferring a copy, and you may at " -"your option offer warranty protection in exchange for a fee. 2. You may " -"modify your copy or copies of the Library or any portion of it, thus forming " -"a work based on the Library, and copy and distribute such modifications or " -"work under the terms of Section 1 above, provided that you also meet all of " -"these conditions: a) The modified work must itself be a software library. b) " -"You must cause the files modified to carry prominent notices stating that " -"you changed the files and the date of any change. c) You must cause the " -"whole of the work to be licensed at no charge to all third parties under the " -"terms of this License. d) If a facility in the modified Library refers to a " -"function or a table of data to be supplied by an application program that " -"uses the facility, other than as an argument passed when the facility is " -"invoked, then you must make a good faith effort to ensure that, in the event " -"an application does not supply such function or table, the facility still " -"operates, and performs whatever part of its purpose remains meaningful. (For " -"example, a function in a library to compute square roots has a purpose that " -"is entirely well-defined independent of the application. Therefore, " -"Subsection 2d requires that any application-supplied function or table used " -"by this function must be optional: if the application does not supply it, " -"the square root function must still compute square roots.) These " -"requirements apply to the modified work as a whole. If identifiable sections " -"of that work are not derived from the Library, and can be reasonably " -"considered independent and separate works in themselves, then this License, " -"and its terms, do not apply to those sections when you distribute them as " -"separate works. But when you distribute the same sections as part of a whole " -"which is a work based on the Library, the distribution of the whole must be " -"on the terms of this License, whose permissions for other licensees extend " -"to the entire whole, and thus to each and every part regardless of who wrote " -"it. Thus, it is not the intent of this section to claim rights or contest " -"your rights to work written entirely by you; rather, the intent is to " -"exercise the right to control the distribution of derivative or collective " -"works based on the Library. In addition, mere aggregation of another work " -"not based on the Library with the Library (or with a work based on the " -"Library) on a volume of a storage or distribution medium does not bring the " -"other work under the scope of this License. 3. You may opt to apply the " -"terms of the ordinary GNU General Public License instead of this License to " -"a given copy of the Library. To do this, you must alter all the notices that " -"refer to this License, so that they refer to the ordinary GNU General Public " -"License, version 2, instead of to this License. (If a newer version than " -"version 2 of the ordinary GNU General Public License has appeared, then you " -"can specify that version instead if you wish.) Do not make any other change " -"in these notices. Once this change is made in a given copy, it is " -"irreversible for that copy, so the ordinary GNU General Public License " -"applies to all subsequent copies and derivative works made from that copy. " -"This option is useful when you wish to copy part of the code of the Library " -"into a program that is not a library. 4. You may copy and distribute the " -"Library (or a portion or derivative of it, under Section 2) in object code " -"or executable form under the terms of Sections 1 and 2 above provided that " -"you accompany it with the complete corresponding machine-readable source " -"code, which must be distributed under the terms of Sections 1 and 2 above on " -"a medium customarily used for software interchange. If distribution of " -"object code is made by offering access to copy from a designated place, then " -"offering equivalent access to copy the source code from the same place " -"satisfies the requirement to distribute the source code, even though third " -"parties are not compelled to copy the source along with the object code. 5. " -"A program that contains no derivative of any portion of the Library, but is " -"designed to work with the Library by being compiled or linked with it, is " -"called a \"work that uses the Library\". Such a work, in isolation, is not a " -"derivative work of the Library, and therefore falls outside the scope of " -"this License. However, linking a \"work that uses the Library\" with the " -"Library creates an executable that is a derivative of the Library (because " -"it contains portions of the Library), rather than a \"work that uses the " -"library\". The executable is therefore covered by this License. Section 6 " -"states terms for distribution of such executables. When a \"work that uses " -"the Library\" uses material from a header file that is part of the Library, " -"the object code for the work may be a derivative work of the Library even " -"though the source code is not. Whether this is true is especially " -"significant if the work can be linked without the Library, or if the work is " -"itself a library. The threshold for this to be true is not precisely defined " -"by law. If such an object file uses only numerical parameters, data " -"structure layouts and accessors, and small macros and small inline functions " -"(ten lines or less in length), then the use of the object file is " -"unrestricted, regardless of whether it is legally a derivative work. " -"(Executables containing this object code plus portions of the Library will " -"still fall under Section 6.) Otherwise, if the work is a derivative of the " -"Library, you may distribute the object code for the work under the terms of " -"Section 6. Any executables containing that work also fall under Section 6, " -"whether or not they are linked directly with the Library itself. 6. As an " -"exception to the Sections above, you may also combine or link a \"work that " -"uses the Library\" with the Library to produce a work containing portions of " -"the Library, and distribute that work under terms of your choice, provided " -"that the terms permit modification of the work for the customer's own use " -"and reverse engineering for debugging such modifications. You must give " -"prominent notice with each copy of the work that the Library is used in it " -"and that the Library and its use are covered by this License. You must " -"supply a copy of this License. If the work during execution displays " -"copyright notices, you must include the copyright notice for the Library " -"among them, as well as a reference directing the user to the copy of this " -"License. Also, you must do one of these things: a) Accompany the work with " -"the complete corresponding machine-readable source code for the Library " -"including whatever changes were used in the work (which must be distributed " -"under Sections 1 and 2 above); and, if the work is an executable linked with " -"the Library, with the complete machine-readable \"work that uses the Library" -"\", as object code and/or source code, so that the user can modify the " -"Library and then relink to produce a modified executable containing the " -"modified Library. (It is understood that the user who changes the contents " -"of definitions files in the Library will not necessarily be able to " -"recompile the application to use the modified definitions.) b) Use a " -"suitable shared library mechanism for linking with the Library. A suitable " -"mechanism is one that (1) uses at run time a copy of the library already " -"present on the user's computer system, rather than copying library functions " -"into the executable, and (2) will operate properly with a modified version " -"of the library, if the user installs one, as long as the modified version is " -"interface-compatible with the version that the work was made with. c) " -"Accompany the work with a written offer, valid for at least three years, to " -"give the same user the materials specified in Subsection 6a, above, for a " -"charge no more than the cost of performing this distribution. d) If " -"distribution of the work is made by offering access to copy from a " -"designated place, offer equivalent access to copy the above specified " -"materials from the same place. e) Verify that the user has already received " -"a copy of these materials or that you have already sent this user a copy. " -"For an executable, the required form of the \"work that uses the Library\" " -"must include any data and utility programs needed for reproducing the " -"executable from it. However, as a special exception, the materials to be " -"distributed need not include anything that is normally distributed (in " -"either source or binary form) with the major components (compiler, kernel, " -"and so on) of the operating system on which the executable runs, unless that " -"component itself accompanies the executable. It may happen that this " -"requirement contradicts the license restrictions of other proprietary " -"libraries that do not normally accompany the operating system. Such a " -"contradiction means you cannot use both them and the Library together in an " -"executable that you distribute. 7. You may place library facilities that are " -"a work based on the Library side-by-side in a single library together with " -"other library facilities not covered by this License, and distribute such a " -"combined library, provided that the separate distribution of the work based " -"on the Library and of the other library facilities is otherwise permitted, " -"and provided that you do these two things: a) Accompany the combined library " -"with a copy of the same work based on the Library, uncombined with any other " -"library facilities. This must be distributed under the terms of the Sections " -"above. b) Give prominent notice with the combined library of the fact that " -"part of it is a work based on the Library, and explaining where to find the " -"accompanying uncombined form of the same work. 8. You may not copy, modify, " -"sublicense, link with, or distribute the Library except as expressly " -"provided under this License. Any attempt otherwise to copy, modify, " -"sublicense, link with, or distribute the Library is void, and will " -"automatically terminate your rights under this License. However, parties who " -"have received copies, or rights, from you under this License will not have " -"their licenses terminated so long as such parties remain in full compliance. " -"9. You are not required to accept this License, since you have not signed " -"it. However, nothing else grants you permission to modify or distribute the " -"Library or its derivative works. These actions are prohibited by law if you " -"do not accept this License. Therefore, by modifying or distributing the " -"Library (or any work based on the Library), you indicate your acceptance of " -"this License to do so, and all its terms and conditions for copying, " -"distributing or modifying the Library or works based on it. 10. Each time " -"you redistribute the Library (or any work based on the Library), the " -"recipient automatically receives a license from the original licensor to " -"copy, distribute, link with or modify the Library subject to these terms and " -"conditions. You may not impose any further restrictions on the recipients' " -"exercise of the rights granted herein. You are not responsible for enforcing " -"compliance by third parties with this License. 11. If, as a consequence of a " -"court judgment or allegation of patent infringement or for any other reason " -"(not limited to patent issues), conditions are imposed on you (whether by " -"court order, agreement or otherwise) that contradict the conditions of this " -"License, they do not excuse you from the conditions of this License. If you " -"cannot distribute so as to satisfy simultaneously your obligations under " -"this License and any other pertinent obligations, then as a consequence you " -"may not distribute the Library at all. For example, if a patent license " -"would not permit royalty-free redistribution of the Library by all those who " -"receive copies directly or indirectly through you, then the only way you " -"could satisfy both it and this License would be to refrain entirely from " -"distribution of the Library. If any portion of this section is held invalid " -"or unenforceable under any particular circumstance, the balance of the " -"section is intended to apply, and the section as a whole is intended to " -"apply in other circumstances. It is not the purpose of this section to " -"induce you to infringe any patents or other property right claims or to " -"contest validity of any such claims; this section has the sole purpose of " -"protecting the integrity of the free software distribution system which is " -"implemented by public license practices. Many people have made generous " -"contributions to the wide range of software distributed through that system " -"in reliance on consistent application of that system; it is up to the author/" -"donor to decide if he or she is willing to distribute software through any " -"other system and a licensee cannot impose that choice. This section is " -"intended to make thoroughly clear what is believed to be a consequence of " -"the rest of this License. 12. If the distribution and/or use of the Library " -"is restricted in certain countries either by patents or by copyrighted " -"interfaces, the original copyright holder who places the Library under this " -"License may add an explicit geographical distribution limitation excluding " -"those countries, so that distribution is permitted only in or among " -"countries not thus excluded. In such case, this License incorporates the " -"limitation as if written in the body of this License. 13. The Free Software " -"Foundation may publish revised and/or new versions of the Lesser General " -"Public License from time to time. Such new versions will be similar in " -"spirit to the present version, but may differ in detail to address new " -"problems or concerns. Each version is given a distinguishing version number. " -"If the Library specifies a version number of this License which applies to " -"it and \"any later version\", you have the option of following the terms and " -"conditions either of that version or of any later version published by the " -"Free Software Foundation. If the Library does not specify a license version " -"number, you may choose any version ever published by the Free Software " -"Foundation. 14. If you wish to incorporate parts of the Library into other " -"free programs whose distribution conditions are incompatible with these, " -"write to the author to ask for permission. For software which is copyrighted " -"by the Free Software Foundation, write to the Free Software Foundation; we " -"sometimes make exceptions for this. Our decision will be guided by the two " -"goals of preserving the free status of all derivatives of our free software " -"and of promoting the sharing and reuse of software generally. NO WARRANTY " -"15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR " -"THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN " -"OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES " -"PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED " -"OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF " -"MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO " -"THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY " -"PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR " -"CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO " -"IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/" -"OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR " -"DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES " -"ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT " -"LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES " -"SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE " -"WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN " -"ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How " -"to Apply These Terms to Your New Libraries If you develop a new library, and " -"you want it to be of the greatest possible use to the public, we recommend " -"making it free software that everyone can redistribute and change. You can " -"do so by permitting redistribution under these terms (or, alternatively, " -"under the terms of the ordinary General Public License). To apply these " -"terms, attach the following notices to the library. It is safest to attach " -"them to the start of each source file to most effectively convey the " -"exclusion of warranty; and each file should have at least the \"copyright\" " -"line and a pointer to where the full notice is found." +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:176(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:335(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:394(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:411(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:471(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:473(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:504(span) +msgid "management_table" msgstr "" -#: doc/reference/en/file.lgpl.html:57(div) -msgid "" -"to give the library's name and a brief idea of what it does." -"> Copyright (C)" +#: doc/reference/en/ActiveGroonga/Schema.html:461(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:123(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:281(strong) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:298(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:111(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:317(strong) +#: doc/reference/en/ActiveGroonga/Migrator.html:334(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:335(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:458(span) +msgid "current_version" msgstr "" -#: doc/reference/en/file.lgpl.html:57(div) -msgid "" -"author> This library is free software; you can " -"redistribute it and/or modify it under the terms of the GNU Lesser General " -"Public License as published by the Free Software Foundation; either version " -"2 of the License, or (at your option) any later version. This library is " -"distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; " -"without even the implied warranty of MERCHANTABILITY or FITNESS FOR A " -"PARTICULAR PURPOSE. See the GNU Lesser General Public License for more " -"details. You should have received a copy of the GNU 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 USA Also " -"add information on how to contact you by electronic and paper mail. You " -"should also get your employer (if you work as a programmer) or your school, " -"if any, to sign a \"copyright disclaimer\" for the library, if necessary. " -"Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all " -"copyright interest in the library `Frob' (a library for tweaking knobs) " -"written by James Random Hacker." +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +#: doc/reference/en/ActiveGroonga/Schema.html:466(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:472(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:449(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:450(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:451(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:452(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:453(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:454(span) +#: doc/reference/en/ActiveGroonga/Vector.html:194(strong) +#: doc/reference/en/ActiveGroonga/Base.html:2376(span) +#: doc/reference/en/ActiveGroonga/Base.html:2378(span) +#: doc/reference/en/ActiveGroonga/Base.html:2381(span) +msgid "<<" msgstr "" -#: doc/reference/en/file.lgpl.html:28(body) +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +msgid "ActiveGroonga::Schema.define(:version =>" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:462(span) +msgid ") do |schema|\\n" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:463(span) +msgid "schema.instance_eval do\\n" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +msgid "each_line" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:211(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:331(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) +#: doc/reference/en/ActiveGroonga/Migration.html:575(span) +#: doc/reference/en/ActiveGroonga/Base.html:1511(span) +#: doc/reference/en/ActiveGroonga/Base.html:1642(span) +#: doc/reference/en/ActiveGroonga/Base.html:1677(span) +#: doc/reference/en/ActiveGroonga/Base.html:1678(span) +#: doc/reference/en/ActiveGroonga/Base.html:1713(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1935(span) +#: doc/reference/en/ActiveGroonga/Base.html:2043(span) +#: doc/reference/en/ActiveGroonga/Base.html:2230(span) +#: doc/reference/en/ActiveGroonga/Base.html:2380(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:459(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +msgid "do" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/TestFixtures.html:218(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:331(span) +#: doc/reference/en/ActiveGroonga/SchemaManagementTable.html:333(span) +#: doc/reference/en/ActiveGroonga/Railties/Configurable.html:173(span) +#: doc/reference/en/ActiveGroonga/Validations/ClassMethods.html:154(span) +#: doc/reference/en/ActiveGroonga/Base.html:1511(span) +#: doc/reference/en/ActiveGroonga/Base.html:1642(span) +#: doc/reference/en/ActiveGroonga/Base.html:1714(span) +#: doc/reference/en/ActiveGroonga/Base.html:1935(span) +#: doc/reference/en/ActiveGroonga/Base.html:2043(span) +#: doc/reference/en/ActiveGroonga/Base.html:2230(span) +#: doc/reference/en/ActiveGroonga/Base.html:2380(span) +#: doc/reference/en/ActiveGroonga/ResultSet.html:546(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:459(span) +#: doc/reference/en/ActiveGroonga/Migrator.html:467(span) +#: doc/reference/en/ActiveGroonga/TestFixtures/ConnectionMock.html:380(span) +msgid "|" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:464(span) +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Schema.html:466(span) +#: doc/reference/en/ActiveGroonga/Schema.html:468(span) +msgid "line" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +#: doc/reference/en/ActiveGroonga/Generators/ModelGenerator.html:410(span) +#: doc/reference/en/ActiveGroonga/Migration.html:490(span) +msgid "/" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +msgid "^\\s*$" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:465(span) +msgid "=~" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:471(span) +#: doc/reference/en/ActiveGroonga/Schema.html:472(span) +msgid "end\\n" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Schema.html:474(span) +msgid "string" +msgstr "" + +#: doc/reference/en/ActiveGroonga/Generators/MigrationGenerator.html:6(title) msgid "" -"\n" -" \n" -"
» \n" -" \n" -" \n" -" \n" -"
\n" -"\n" -"
\n" -" \n" -" \n" -" \n" -"
\n" -"
\n" -" \n" -"