oss_active_record 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f8e8e1561d5a73a94cdddbf76c5c759a7a3fa5f
4
- data.tar.gz: 310cc970b75e8cc6a11b11324e29ca177ac964dc
3
+ metadata.gz: f7a0eaf7be8e2cdaaa3e0b20652d69630863a2d8
4
+ data.tar.gz: ba5d1f0720d7549287ac1e00edfecd1806167964
5
5
  SHA512:
6
- metadata.gz: 52842be27da1d798c3a4da10630de1334a969441b8ca65fd891ace53b0a1d9fc9e22327c2fce62007d36053cd666a418ab97ea754ae3776499fcb5d649a50bac
7
- data.tar.gz: 3a90938372e32b123bd86481d5dcd60402106a4b6159f4aa8ba7eb9ce72b32bc6971c8d6bba9f56f67c188b24a022b5b993cc249785f312f3b87d820d4bbb35f
6
+ metadata.gz: 88cf52b5f1b8a234add4c11dc49fc82ac8b5acbf4b87130a5911eeee5570b8af3150b062c83c539b3d4dac92f0adf93cc7e4107dce395fe301f6e24aac91315a
7
+ data.tar.gz: a403921d33618ce236bf684dd421890c9854da9302d2948c67f18e176c55b6c41343347a9b8f283ad5b56fcca148df58e23da461ad80eab712ec74b33673a681
@@ -1,4 +1,6 @@
1
1
  require "oss_active_record/searchable"
2
2
  require "oss_active_record/search_request"
3
+ require "oss_active_record/index_instance"
4
+
3
5
  module OssActiveRecord
4
6
  end
@@ -0,0 +1,90 @@
1
+ module OssActiveRecord
2
+ class IndexInstance
3
+
4
+ @@_analyzers = {
5
+ :text => 'StandardAnalyzer',
6
+ :integer => 'IntegerAnalyzer',
7
+ :decimal => 'DecimalAnalyzer'}
8
+
9
+ def initialize(index_name)
10
+ @_index_name ||= index_name
11
+ @_fields= []
12
+ @_field_id = nil
13
+ @_text_fields = {}
14
+ @_sortable_fields = {}
15
+ @_all_fields = {}
16
+ @_index = nil
17
+ end
18
+
19
+ def text_fields
20
+ @_text_fields
21
+ end
22
+
23
+ def fields
24
+ @_fields
25
+ end
26
+
27
+ def field_id
28
+ @_field_id
29
+ end
30
+
31
+ def oss_index
32
+ if @_index.nil?
33
+ @_index = Oss::Index.new(@_index_name,
34
+ Rails.configuration.open_search_server_url,
35
+ Rails.configuration.open_search_server_login,
36
+ Rails.configuration.open_search_server_apikey)
37
+ create_schema!
38
+ end
39
+ @_index
40
+ end
41
+
42
+ def find_sortable_name(field_name)
43
+ field_name == :score ? 'score' : @_sortable_fields[field_name] unless field_name.nil?
44
+ end
45
+
46
+ def find_field_name(field_name)
47
+ @_all_fields[field_name] unless field_name.nil?
48
+ end
49
+
50
+ def add_field(name, type, block=nil)
51
+ @_fields<<{:name => name, :type => type,:block => block}
52
+ end
53
+
54
+ def create_schema!
55
+ @_index.create('EMPTY_INDEX') unless @_index.list.include? @_index_name
56
+ @_field_id = @_fields.detect {|f| f[:name] == :id }
57
+ @_field_id = {:name => 'id', :type => 'integer',:block => nil} if @_field_id.nil?
58
+ @_fields << @_field_id
59
+ @_fields.each do |field|
60
+ create_schema_field!(field)
61
+ end
62
+ end
63
+
64
+ def create_schema_field!(field)
65
+ analyzer = @@_analyzers[field[:type]] if field[:name] != :id
66
+ termVectors = { :text => 'POSITIONS_OFFSETS'}
67
+ termVector = termVectors[field[:type]] || 'NO'
68
+ name = "#{field[:name]}|#{field[:type]}"
69
+ params = {
70
+ 'name' => name,
71
+ 'analyzer' => analyzer,
72
+ 'stored' => 'NO',
73
+ 'indexed' => 'YES',
74
+ 'termVector' => termVector
75
+ }
76
+ @_text_fields[field[:name]] = name if field[:type] == :text
77
+ @_sortable_fields[field[:name]] = name unless field[:type] == :text
78
+ @_all_fields[field[:name]] = name
79
+ @_index.set_field(params)
80
+ @_index.set_field_default_unique(name, name) if field[:name] == :id
81
+ end
82
+
83
+ def index(docs)
84
+ @_index.documents << docs
85
+ @_index.index!
86
+ end
87
+
88
+ end
89
+
90
+ end
@@ -1,9 +1,9 @@
1
1
  module OssActiveRecord
2
2
  class SearchRequest
3
- def initialize(searchable)
3
+ def initialize(index_instance)
4
4
  @params = {'start' => 0, 'rows' => 10}
5
5
  @filters = []
6
- @searchable = searchable
6
+ @index_instance = index_instance
7
7
  @order_by = {}
8
8
  end
9
9
 
@@ -16,12 +16,12 @@ module OssActiveRecord
16
16
  end
17
17
 
18
18
  def with(field, value)
19
- index_field = @searchable.find_field_name(field)
19
+ index_field = @index_instance.find_field_name(field)
20
20
  filter index_field, value, false unless index_field.nil?
21
21
  end
22
22
 
23
23
  def without(field, value)
24
- index_field = @searchable.find_field_name(field)
24
+ index_field = @index_instance.find_field_name(field)
25
25
  filter index_field, value, true unless index_field.nil?
26
26
  end
27
27
 
@@ -37,7 +37,7 @@ module OssActiveRecord
37
37
  end
38
38
 
39
39
  def order_by(field = nil, direction = :asc)
40
- index_field = field == :score ? 'score' :@searchable.find_sortable_name(field)
40
+ index_field = field == :score ? 'score' :@index_instance.find_sortable_name(field)
41
41
  @order_by[index_field] = direction.to_s.upcase unless index_field.nil?
42
42
  end
43
43
 
@@ -45,7 +45,7 @@ module OssActiveRecord
45
45
  self.instance_eval(&block) unless block.nil?
46
46
  @params['filters'] = @filters unless @filters.length == 0
47
47
  fields = []
48
- @searchable._text_fields.each do |key, value|
48
+ @index_instance.text_fields.each do |key, value|
49
49
  fields<<{ "field"=> value,"phrase"=> true,"boost"=> 1.0}
50
50
  end
51
51
  @params['searchFields'] = fields unless fields.length == 0
@@ -54,7 +54,7 @@ module OssActiveRecord
54
54
  sorts<<{ "field"=> key,"direction"=> value}
55
55
  end
56
56
  @params['sorts'] = sorts unless sorts.length == 0
57
- return @searchable.oss_index.search_field(@params)
57
+ return @index_instance.oss_index.search_field(@params)
58
58
  end
59
59
 
60
60
  end
@@ -1,40 +1,9 @@
1
1
  module OssActiveRecord
2
2
  module Searchable
3
3
  extend ActiveSupport::Concern
4
- def index
5
- doc = self.to_indexable
6
- oss_doc = Oss::Document.new
7
- doc.each do |name,value|
8
- oss_doc.fields << Oss::Field.new(name, value)
9
- end
10
- self.class.oss_index.documents << oss_doc
11
- self.class.oss_index.index!
12
- end
13
-
14
4
  module ClassMethods
15
5
  @@field_types= [:integer, :text, :string, :time] #supported field types
16
- @@_fields=[]
17
- @@_field_id = nil
18
- @@_text_fields = {}
19
- @@_sortable_fields = {}
20
- @@_all_fields = {}
21
- @@index = nil
22
-
23
- def _text_fields
24
- @@_text_fields
25
- end
26
-
27
- def _fields
28
- @@_fields
29
- end
30
-
31
- def find_sortable_name(field_name)
32
- field == :score ? 'score' : @@_sortable_fields[field_name] unless field_name.nil?
33
- end
34
-
35
- def find_field_name(field_name)
36
- @@_all_fields[field_name] unless field_name.nil?
37
- end
6
+ @@index_instances = {}
38
7
 
39
8
  def searchable(options = {}, &block)
40
9
  yield
@@ -43,76 +12,35 @@ module OssActiveRecord
43
12
  end
44
13
  end
45
14
 
46
- def oss_index
47
- if @@index.nil?
48
- @@index_name ||= self.name.downcase
49
- @@index = Oss::Index.new(@@index_name,
50
- Rails.configuration.open_search_server_url,
51
- Rails.configuration.open_search_server_login,
52
- Rails.configuration.open_search_server_apikey)
53
- create_schema!
54
- end
55
- @@index
56
- end
57
-
58
- def add_field(name, type, block=nil)
59
- @@_fields<<{:name => name, :type => type,:block => block}
60
- end
61
-
62
- def create_schema!
63
- @@index.create('EMPTY_INDEX') unless @@index.list.include? @@index_name
64
- @@_field_id = @@_fields.detect {|f| f[:name] == :id }
65
- @@_field_id = {:name => 'id', :type => 'integer',:block => nil} if @@_field_id.nil?
66
- @@_fields << @@_field_id
67
- @@_fields.each do |field|
68
- create_schema_field!(field)
15
+ def index_instance
16
+ idx_inst = @@index_instances[self.name.downcase]
17
+ if idx_inst.nil?
18
+ idx_inst = IndexInstance.new(self.name.downcase)
19
+ @@index_instances[self.name.downcase] = idx_inst
69
20
  end
21
+ idx_inst
70
22
  end
71
23
 
72
24
  def reindex!
73
- self.oss_index.delete!
74
- self.create_schema!
75
-
25
+ index_instance.oss_index.delete!
26
+ index_instance.create_schema!
76
27
  self.all.find_in_batches do |group|
77
- group.each { |doc| doc.index }
28
+ group.each { |doc| doc.index(index_instance) }
78
29
  end
79
30
  end
80
31
 
81
- def create_schema_field!(field)
82
- analyzers = {
83
- :text => 'StandardAnalyzer',
84
- :integer => 'IntegerAnalyzer',
85
- :decimal => 'DecimalAnalyzer'}
86
- analyzer = analyzers[field[:type]] if field[:name] != :id
87
- termVectors = { :text => 'POSITIONS_OFFSETS'}
88
- termVector = termVectors[field[:type]] || 'NO'
89
- name = "#{field[:name]}|#{field[:type]}"
90
- params = {
91
- 'name' => name,
92
- 'analyzer' => analyzer,
93
- 'stored' => 'NO',
94
- 'indexed' => 'YES',
95
- 'termVector' => termVector
96
- }
97
- @@_text_fields[field[:name]] = name if field[:type] == :text
98
- @@_sortable_fields[field[:name]] = name unless field[:type] == :text
99
- @@_all_fields[field[:name]] = name
100
- self.oss_index.set_field(params)
101
- self.oss_index.set_field_default_unique(name, name) if field[:name] == :id
102
- end
103
-
104
32
  def method_missing(method, *args, &block)
105
- add_field args[0], method, block if @@field_types.include? method
33
+ index_instance.add_field(args[0], method, block) if @@field_types.include? method
106
34
  end
107
35
 
108
36
  def search(*args, &block)
109
- searchRequest = SearchRequest.new(self)
110
- searchRequest.returns @@_fields.map {|f|"#{f[:name]}|#{f[:type]}"}
111
- find_results searchRequest.execute(&block)
37
+ searchRequest = SearchRequest.new(index_instance)
38
+ searchRequest.returns index_instance.fields.map {|f|"#{f[:name]}|#{f[:type]}"}
39
+ find_results(searchRequest.execute(&block), index_instance.field_id)
112
40
  end
113
41
 
114
- def find_results(search_result)
115
- id_field_name = "#{@@_field_id[:name]}|#{@@_field_id[:type]}"
42
+ def find_results(search_result, field_id)
43
+ id_field_name = "#{field_id[:name]}|#{field_id[:type]}"
116
44
  results = []
117
45
  search_result['documents'].each do |document|
118
46
  document['fields'].each do |field|
@@ -122,12 +50,20 @@ module OssActiveRecord
122
50
  end
123
51
  return results
124
52
  end
53
+ end
125
54
 
55
+ def index(index_instance)
56
+ doc = self.to_indexable(index_instance.fields)
57
+ oss_doc = Oss::Document.new
58
+ doc.each do |name,value|
59
+ oss_doc.fields << Oss::Field.new(name, value)
60
+ end
61
+ index_instance.index(oss_doc)
126
62
  end
127
63
 
128
- def to_indexable
64
+ def to_indexable(fields)
129
65
  doc={}
130
- self.class._fields.each do |field|
66
+ fields.each do |field|
131
67
  if field[:block].nil?
132
68
  val = self.send(field[:name].to_sym)
133
69
  else
@@ -1,3 +1,3 @@
1
1
  module OssActiveRecord
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
Binary file
@@ -11400,3 +11400,1965 @@ DocumentTest: test_the_truth
11400
11400
  ----------------------------
11401
11401
  Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11402
11402
   (0.2ms) rollback transaction
11403
+  (9.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11404
+  (1.6ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11405
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11406
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11407
+  (0.2ms) SELECT version FROM "schema_migrations"
11408
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11409
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11411
+  (0.1ms) begin transaction
11412
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11413
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 12:31:13')
11414
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 12:31:13')
11415
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 12:31:13')
11416
+  (0.5ms) commit transaction
11417
+  (0.1ms) begin transaction
11418
+ ---------------------------------
11419
+ ArticleTest: test_Ascending_order
11420
+ ---------------------------------
11421
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11422
+  (0.1ms) rollback transaction
11423
+  (0.1ms) begin transaction
11424
+ ----------------------------------
11425
+ ArticleTest: test_Descending_order
11426
+ ----------------------------------
11427
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11428
+  (0.1ms) rollback transaction
11429
+  (0.1ms) begin transaction
11430
+ ----------------------------------
11431
+ ArticleTest: test_Full_text_search
11432
+ ----------------------------------
11433
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11434
+  (0.2ms) rollback transaction
11435
+  (0.2ms) begin transaction
11436
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11437
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 12:31:16')
11438
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 12:31:16')
11439
+  (0.8ms) commit transaction
11440
+  (0.1ms) begin transaction
11441
+ ----------------------------------
11442
+ DocumentTest: test_Search_document
11443
+ ----------------------------------
11444
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11445
+  (0.1ms) rollback transaction
11446
+  (0.1ms) begin transaction
11447
+ ----------------------------
11448
+ DocumentTest: test_the_truth
11449
+ ----------------------------
11450
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11451
+  (0.1ms) rollback transaction
11452
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11453
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11454
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11455
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11456
+  (0.1ms) SELECT version FROM "schema_migrations"
11457
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11458
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11459
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11460
+  (0.2ms) begin transaction
11461
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11462
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 12:38:51')
11463
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 12:38:51')
11464
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 12:38:51')
11465
+  (0.8ms) commit transaction
11466
+  (0.1ms) begin transaction
11467
+ ---------------------------------
11468
+ ArticleTest: test_Ascending_order
11469
+ ---------------------------------
11470
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11471
+  (0.1ms) rollback transaction
11472
+  (0.1ms) begin transaction
11473
+ ----------------------------------
11474
+ ArticleTest: test_Descending_order
11475
+ ----------------------------------
11476
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11477
+  (0.2ms) rollback transaction
11478
+  (0.1ms) begin transaction
11479
+ ----------------------------------
11480
+ ArticleTest: test_Full_text_search
11481
+ ----------------------------------
11482
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11483
+  (0.1ms) rollback transaction
11484
+  (0.1ms) begin transaction
11485
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11486
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 12:38:52')
11487
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 12:38:52')
11488
+  (0.7ms) commit transaction
11489
+  (0.1ms) begin transaction
11490
+ ----------------------------------
11491
+ DocumentTest: test_Search_document
11492
+ ----------------------------------
11493
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11494
+  (0.1ms) rollback transaction
11495
+  (0.1ms) begin transaction
11496
+ ----------------------------
11497
+ DocumentTest: test_the_truth
11498
+ ----------------------------
11499
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11500
+  (0.1ms) rollback transaction
11501
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11502
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11503
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11504
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11505
+  (0.2ms) SELECT version FROM "schema_migrations"
11506
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11507
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11509
+  (0.1ms) begin transaction
11510
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11511
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 12:41:19')
11512
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 12:41:19')
11513
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 12:41:19')
11514
+  (1.2ms) commit transaction
11515
+  (0.1ms) begin transaction
11516
+ ---------------------------------
11517
+ ArticleTest: test_Ascending_order
11518
+ ---------------------------------
11519
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11520
+  (0.2ms) rollback transaction
11521
+  (0.1ms) begin transaction
11522
+ ----------------------------------
11523
+ ArticleTest: test_Descending_order
11524
+ ----------------------------------
11525
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11526
+  (0.2ms) rollback transaction
11527
+  (0.1ms) begin transaction
11528
+ ----------------------------------
11529
+ ArticleTest: test_Full_text_search
11530
+ ----------------------------------
11531
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11532
+  (0.1ms) rollback transaction
11533
+  (0.1ms) begin transaction
11534
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11535
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 12:41:20')
11536
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 12:41:20')
11537
+  (1.1ms) commit transaction
11538
+  (0.1ms) begin transaction
11539
+ ----------------------------------
11540
+ DocumentTest: test_Search_document
11541
+ ----------------------------------
11542
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11543
+  (0.1ms) rollback transaction
11544
+  (0.1ms) begin transaction
11545
+ ----------------------------
11546
+ DocumentTest: test_the_truth
11547
+ ----------------------------
11548
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11549
+  (0.1ms) rollback transaction
11550
+  (1.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11551
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11552
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11553
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11554
+  (0.1ms) SELECT version FROM "schema_migrations"
11555
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11556
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11557
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11558
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11559
+  (1.5ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11560
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11561
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11562
+  (0.2ms) SELECT version FROM "schema_migrations"
11563
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11564
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11565
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11566
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11567
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11568
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11569
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11570
+  (0.1ms) SELECT version FROM "schema_migrations"
11571
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11572
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11573
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11574
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11575
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11576
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11577
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11578
+  (0.1ms) SELECT version FROM "schema_migrations"
11579
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11580
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11581
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11582
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11583
+  (0.8ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11584
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11585
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11586
+  (0.1ms) SELECT version FROM "schema_migrations"
11587
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11588
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11589
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11590
+  (0.1ms) begin transaction
11591
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11592
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 12:52:46')
11593
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 12:52:46')
11594
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 12:52:46')
11595
+  (1.0ms) commit transaction
11596
+  (0.1ms) begin transaction
11597
+ ---------------------------------
11598
+ ArticleTest: test_Ascending_order
11599
+ ---------------------------------
11600
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11601
+  (0.1ms) rollback transaction
11602
+  (0.1ms) begin transaction
11603
+ ----------------------------------
11604
+ ArticleTest: test_Descending_order
11605
+ ----------------------------------
11606
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11607
+  (0.1ms) rollback transaction
11608
+  (0.1ms) begin transaction
11609
+ ----------------------------------
11610
+ ArticleTest: test_Full_text_search
11611
+ ----------------------------------
11612
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11613
+  (0.2ms) rollback transaction
11614
+  (0.2ms) begin transaction
11615
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11616
+ Fixture Insert (0.3ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 12:52:48')
11617
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 12:52:48')
11618
+  (0.7ms) commit transaction
11619
+  (0.1ms) begin transaction
11620
+ ----------------------------------
11621
+ DocumentTest: test_Search_document
11622
+ ----------------------------------
11623
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11624
+  (0.1ms) rollback transaction
11625
+  (0.1ms) begin transaction
11626
+ ----------------------------
11627
+ DocumentTest: test_the_truth
11628
+ ----------------------------
11629
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11630
+  (0.1ms) rollback transaction
11631
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11632
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11633
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11634
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11635
+  (0.1ms) SELECT version FROM "schema_migrations"
11636
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11637
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11638
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11639
+  (0.1ms) begin transaction
11640
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11641
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 12:53:35')
11642
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 12:53:35')
11643
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 12:53:35')
11644
+  (0.9ms) commit transaction
11645
+  (0.1ms) begin transaction
11646
+ ---------------------------------
11647
+ ArticleTest: test_Ascending_order
11648
+ ---------------------------------
11649
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11650
+  (0.2ms) rollback transaction
11651
+  (0.1ms) begin transaction
11652
+ ----------------------------------
11653
+ ArticleTest: test_Descending_order
11654
+ ----------------------------------
11655
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11656
+  (0.1ms) rollback transaction
11657
+  (0.1ms) begin transaction
11658
+ ----------------------------------
11659
+ ArticleTest: test_Full_text_search
11660
+ ----------------------------------
11661
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11662
+  (0.1ms) rollback transaction
11663
+  (0.1ms) begin transaction
11664
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11665
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 12:53:36')
11666
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 12:53:36')
11667
+  (0.9ms) commit transaction
11668
+  (0.1ms) begin transaction
11669
+ ----------------------------------
11670
+ DocumentTest: test_Search_document
11671
+ ----------------------------------
11672
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11673
+  (0.1ms) rollback transaction
11674
+  (0.1ms) begin transaction
11675
+ ----------------------------
11676
+ DocumentTest: test_the_truth
11677
+ ----------------------------
11678
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11679
+  (0.1ms) rollback transaction
11680
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11681
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11682
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11683
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11684
+  (0.2ms) SELECT version FROM "schema_migrations"
11685
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11686
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11687
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11688
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11689
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11690
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11691
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11692
+  (0.1ms) SELECT version FROM "schema_migrations"
11693
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11694
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11695
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11696
+  (0.1ms) begin transaction
11697
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11698
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 13:55:33')
11699
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 13:55:33')
11700
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 13:55:33')
11701
+  (0.8ms) commit transaction
11702
+  (0.1ms) begin transaction
11703
+ ---------------------------------
11704
+ ArticleTest: test_Ascending_order
11705
+ ---------------------------------
11706
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11707
+  (0.1ms) rollback transaction
11708
+  (0.1ms) begin transaction
11709
+ ----------------------------------
11710
+ ArticleTest: test_Descending_order
11711
+ ----------------------------------
11712
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11713
+  (0.1ms) rollback transaction
11714
+  (0.1ms) begin transaction
11715
+ ----------------------------------
11716
+ ArticleTest: test_Full_text_search
11717
+ ----------------------------------
11718
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11719
+  (0.2ms) rollback transaction
11720
+  (0.2ms) begin transaction
11721
+ Fixture Delete (0.4ms) DELETE FROM "documents"
11722
+ Fixture Insert (0.3ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 13:55:35')
11723
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 13:55:35')
11724
+  (0.7ms) commit transaction
11725
+  (0.1ms) begin transaction
11726
+ ----------------------------------
11727
+ DocumentTest: test_Search_document
11728
+ ----------------------------------
11729
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11730
+  (0.2ms) rollback transaction
11731
+  (0.1ms) begin transaction
11732
+ ----------------------------
11733
+ DocumentTest: test_the_truth
11734
+ ----------------------------
11735
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11736
+  (0.2ms) rollback transaction
11737
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11738
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11739
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11740
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11741
+  (0.1ms) SELECT version FROM "schema_migrations"
11742
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11743
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11744
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11745
+  (0.1ms) begin transaction
11746
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11747
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:15')
11748
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:15')
11749
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:15')
11750
+  (0.7ms) commit transaction
11751
+  (0.1ms) begin transaction
11752
+ ---------------------------------
11753
+ ArticleTest: test_Ascending_order
11754
+ ---------------------------------
11755
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11756
+  (0.2ms) rollback transaction
11757
+  (0.2ms) begin transaction
11758
+ ----------------------------------
11759
+ ArticleTest: test_Descending_order
11760
+ ----------------------------------
11761
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11762
+  (0.1ms) rollback transaction
11763
+  (0.1ms) begin transaction
11764
+ ----------------------------------
11765
+ ArticleTest: test_Full_text_search
11766
+ ----------------------------------
11767
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11768
+  (0.1ms) rollback transaction
11769
+  (0.1ms) begin transaction
11770
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11771
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 13:56:16')
11772
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 13:56:16')
11773
+  (0.8ms) commit transaction
11774
+  (0.1ms) begin transaction
11775
+ ----------------------------------
11776
+ DocumentTest: test_Search_document
11777
+ ----------------------------------
11778
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11779
+  (0.2ms) rollback transaction
11780
+  (0.1ms) begin transaction
11781
+ ----------------------------
11782
+ DocumentTest: test_the_truth
11783
+ ----------------------------
11784
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11785
+  (0.1ms) rollback transaction
11786
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11787
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11788
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11789
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11790
+  (0.1ms) SELECT version FROM "schema_migrations"
11791
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11792
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11793
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11794
+  (0.1ms) begin transaction
11795
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11796
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:39')
11797
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:39')
11798
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 13:56:39')
11799
+  (1.0ms) commit transaction
11800
+  (0.1ms) begin transaction
11801
+ ---------------------------------
11802
+ ArticleTest: test_Ascending_order
11803
+ ---------------------------------
11804
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11805
+  (0.2ms) rollback transaction
11806
+  (0.1ms) begin transaction
11807
+ ----------------------------------
11808
+ ArticleTest: test_Descending_order
11809
+ ----------------------------------
11810
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11811
+  (0.1ms) rollback transaction
11812
+  (0.1ms) begin transaction
11813
+ ----------------------------------
11814
+ ArticleTest: test_Full_text_search
11815
+ ----------------------------------
11816
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11817
+  (0.1ms) rollback transaction
11818
+  (0.1ms) begin transaction
11819
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11820
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 13:56:40')
11821
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 13:56:40')
11822
+  (0.8ms) commit transaction
11823
+  (0.1ms) begin transaction
11824
+ ----------------------------------
11825
+ DocumentTest: test_Search_document
11826
+ ----------------------------------
11827
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11828
+  (0.1ms) rollback transaction
11829
+  (0.1ms) begin transaction
11830
+ ----------------------------
11831
+ DocumentTest: test_the_truth
11832
+ ----------------------------
11833
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11834
+  (0.2ms) rollback transaction
11835
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11836
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11837
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11838
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11839
+  (0.1ms) SELECT version FROM "schema_migrations"
11840
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11841
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11842
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11843
+  (0.1ms) begin transaction
11844
+ Fixture Delete (0.2ms) DELETE FROM "articles"
11845
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:03')
11846
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:03')
11847
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:03')
11848
+  (1.2ms) commit transaction
11849
+  (0.1ms) begin transaction
11850
+ ---------------------------------
11851
+ ArticleTest: test_Ascending_order
11852
+ ---------------------------------
11853
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11854
+  (0.1ms) rollback transaction
11855
+  (0.1ms) begin transaction
11856
+ ----------------------------------
11857
+ ArticleTest: test_Descending_order
11858
+ ----------------------------------
11859
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11860
+  (0.1ms) rollback transaction
11861
+  (0.1ms) begin transaction
11862
+ ----------------------------------
11863
+ ArticleTest: test_Full_text_search
11864
+ ----------------------------------
11865
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11866
+  (0.1ms) rollback transaction
11867
+  (0.1ms) begin transaction
11868
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11869
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 13:57:04')
11870
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 13:57:04')
11871
+  (0.9ms) commit transaction
11872
+  (0.1ms) begin transaction
11873
+ ----------------------------------
11874
+ DocumentTest: test_Search_document
11875
+ ----------------------------------
11876
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11877
+  (0.2ms) rollback transaction
11878
+  (0.1ms) begin transaction
11879
+ ----------------------------
11880
+ DocumentTest: test_the_truth
11881
+ ----------------------------
11882
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11883
+  (0.1ms) rollback transaction
11884
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11885
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11886
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11887
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11888
+  (0.1ms) SELECT version FROM "schema_migrations"
11889
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11890
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11891
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11892
+  (0.1ms) begin transaction
11893
+ Fixture Delete (0.3ms) DELETE FROM "articles"
11894
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:15')
11895
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:15')
11896
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 13:57:15')
11897
+  (0.9ms) commit transaction
11898
+  (0.1ms) begin transaction
11899
+ ---------------------------------
11900
+ ArticleTest: test_Ascending_order
11901
+ ---------------------------------
11902
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11903
+  (0.1ms) rollback transaction
11904
+  (0.1ms) begin transaction
11905
+ ----------------------------------
11906
+ ArticleTest: test_Descending_order
11907
+ ----------------------------------
11908
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11909
+  (0.1ms) rollback transaction
11910
+  (0.1ms) begin transaction
11911
+ ----------------------------------
11912
+ ArticleTest: test_Full_text_search
11913
+ ----------------------------------
11914
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
11915
+  (0.1ms) rollback transaction
11916
+  (0.1ms) begin transaction
11917
+ Fixture Delete (0.3ms) DELETE FROM "documents"
11918
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 13:57:16')
11919
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 13:57:16')
11920
+  (0.9ms) commit transaction
11921
+  (0.1ms) begin transaction
11922
+ ----------------------------------
11923
+ DocumentTest: test_Search_document
11924
+ ----------------------------------
11925
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11926
+  (0.1ms) rollback transaction
11927
+  (0.1ms) begin transaction
11928
+ ----------------------------
11929
+ DocumentTest: test_the_truth
11930
+ ----------------------------
11931
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
11932
+  (0.1ms) rollback transaction
11933
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11934
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11935
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11936
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11937
+  (0.1ms) SELECT version FROM "schema_migrations"
11938
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11939
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11940
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11941
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11942
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11943
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11944
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11945
+  (0.1ms) SELECT version FROM "schema_migrations"
11946
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11947
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11948
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11949
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11950
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11951
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11952
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11953
+  (0.1ms) SELECT version FROM "schema_migrations"
11954
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11955
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11956
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11957
+  (1.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11958
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11959
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11960
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11961
+  (0.1ms) SELECT version FROM "schema_migrations"
11962
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11963
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11964
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11965
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11966
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11967
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11968
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11969
+  (0.2ms) SELECT version FROM "schema_migrations"
11970
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11971
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11972
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11973
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11974
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11975
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11976
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11977
+  (0.2ms) SELECT version FROM "schema_migrations"
11978
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11979
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11980
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11981
+  (1.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11982
+  (1.4ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11983
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11984
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11985
+  (0.1ms) SELECT version FROM "schema_migrations"
11986
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11987
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11988
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11989
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11990
+  (1.4ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11991
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11992
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11993
+  (0.1ms) SELECT version FROM "schema_migrations"
11994
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
11995
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
11996
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11997
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
11998
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
11999
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12000
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12001
+  (0.2ms) SELECT version FROM "schema_migrations"
12002
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12003
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12004
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12005
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12006
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12007
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12008
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12009
+  (0.2ms) SELECT version FROM "schema_migrations"
12010
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12011
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12012
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12013
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12014
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12015
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12016
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12017
+  (0.1ms) SELECT version FROM "schema_migrations"
12018
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12019
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12020
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12021
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12022
+  (1.6ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12023
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12024
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12025
+  (0.1ms) SELECT version FROM "schema_migrations"
12026
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12027
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12028
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12029
+  (1.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12030
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12031
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12032
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12033
+  (0.1ms) SELECT version FROM "schema_migrations"
12034
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12035
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12036
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12037
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12038
+  (1.5ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12039
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12040
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12041
+  (0.1ms) SELECT version FROM "schema_migrations"
12042
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12043
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12044
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12045
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12046
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12047
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12048
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12049
+  (0.1ms) SELECT version FROM "schema_migrations"
12050
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12051
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12052
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12053
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12054
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12055
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12056
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12057
+  (0.1ms) SELECT version FROM "schema_migrations"
12058
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12059
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12060
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12061
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12062
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12063
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12064
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12065
+  (0.1ms) SELECT version FROM "schema_migrations"
12066
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12067
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12068
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12069
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12070
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12071
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12072
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12073
+  (0.1ms) SELECT version FROM "schema_migrations"
12074
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12075
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12076
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
12077
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12078
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12079
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12080
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12081
+  (0.1ms) SELECT version FROM "schema_migrations"
12082
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12083
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12084
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12085
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12086
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12087
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12088
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12089
+  (0.1ms) SELECT version FROM "schema_migrations"
12090
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12091
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12092
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12093
+  (1.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12094
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12095
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12096
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12097
+  (0.1ms) SELECT version FROM "schema_migrations"
12098
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12099
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12100
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12101
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12102
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12103
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12104
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12105
+  (0.1ms) SELECT version FROM "schema_migrations"
12106
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12107
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12108
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12109
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12110
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12111
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12112
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12113
+  (0.1ms) SELECT version FROM "schema_migrations"
12114
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12115
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12116
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12117
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12118
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12119
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12120
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12121
+  (0.1ms) SELECT version FROM "schema_migrations"
12122
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12123
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12125
+  (0.1ms) begin transaction
12126
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12127
+ Fixture Insert (0.3ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:11:32')
12128
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:11:32')
12129
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:11:32')
12130
+  (0.7ms) commit transaction
12131
+  (0.1ms) begin transaction
12132
+ ---------------------------------
12133
+ ArticleTest: test_Ascending_order
12134
+ ---------------------------------
12135
+  (0.1ms) rollback transaction
12136
+  (0.1ms) begin transaction
12137
+ ----------------------------------
12138
+ ArticleTest: test_Descending_order
12139
+ ----------------------------------
12140
+  (0.1ms) rollback transaction
12141
+  (0.1ms) begin transaction
12142
+ ----------------------------------
12143
+ ArticleTest: test_Full_text_search
12144
+ ----------------------------------
12145
+  (0.1ms) rollback transaction
12146
+  (0.1ms) begin transaction
12147
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12148
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:11:32')
12149
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:11:32')
12150
+  (0.7ms) commit transaction
12151
+  (0.1ms) begin transaction
12152
+ ----------------------------------
12153
+ DocumentTest: test_Search_document
12154
+ ----------------------------------
12155
+  (0.1ms) rollback transaction
12156
+  (0.1ms) begin transaction
12157
+ ----------------------------
12158
+ DocumentTest: test_the_truth
12159
+ ----------------------------
12160
+  (0.1ms) rollback transaction
12161
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12162
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12163
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12164
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12165
+  (0.1ms) SELECT version FROM "schema_migrations"
12166
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12167
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12169
+  (0.1ms) begin transaction
12170
+ Fixture Delete (0.2ms) DELETE FROM "articles"
12171
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:12:02')
12172
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:12:02')
12173
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:12:02')
12174
+  (1.1ms) commit transaction
12175
+  (0.1ms) begin transaction
12176
+ ---------------------------------
12177
+ ArticleTest: test_Ascending_order
12178
+ ---------------------------------
12179
+  (0.1ms) rollback transaction
12180
+  (0.0ms) begin transaction
12181
+ ----------------------------------
12182
+ ArticleTest: test_Descending_order
12183
+ ----------------------------------
12184
+  (0.1ms) rollback transaction
12185
+  (0.0ms) begin transaction
12186
+ ----------------------------------
12187
+ ArticleTest: test_Full_text_search
12188
+ ----------------------------------
12189
+  (0.0ms) rollback transaction
12190
+  (0.1ms) begin transaction
12191
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12192
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:12:02')
12193
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:12:02')
12194
+  (0.9ms) commit transaction
12195
+  (0.1ms) begin transaction
12196
+ ----------------------------------
12197
+ DocumentTest: test_Search_document
12198
+ ----------------------------------
12199
+  (0.1ms) rollback transaction
12200
+  (0.1ms) begin transaction
12201
+ ----------------------------
12202
+ DocumentTest: test_the_truth
12203
+ ----------------------------
12204
+  (0.1ms) rollback transaction
12205
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12206
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12207
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12208
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12209
+  (0.1ms) SELECT version FROM "schema_migrations"
12210
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12211
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12212
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12213
+  (0.1ms) begin transaction
12214
+ Fixture Delete (0.4ms) DELETE FROM "articles"
12215
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:19:18')
12216
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:19:18')
12217
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:19:18')
12218
+  (0.8ms) commit transaction
12219
+  (0.1ms) begin transaction
12220
+ ---------------------------------
12221
+ ArticleTest: test_Ascending_order
12222
+ ---------------------------------
12223
+  (0.1ms) rollback transaction
12224
+  (0.1ms) begin transaction
12225
+ ----------------------------------
12226
+ ArticleTest: test_Descending_order
12227
+ ----------------------------------
12228
+  (0.1ms) rollback transaction
12229
+  (0.1ms) begin transaction
12230
+ ----------------------------------
12231
+ ArticleTest: test_Full_text_search
12232
+ ----------------------------------
12233
+  (0.1ms) rollback transaction
12234
+  (0.2ms) begin transaction
12235
+ Fixture Delete (0.2ms) DELETE FROM "documents"
12236
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:19:18')
12237
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:19:18')
12238
+  (0.8ms) commit transaction
12239
+  (0.1ms) begin transaction
12240
+ ----------------------------------
12241
+ DocumentTest: test_Search_document
12242
+ ----------------------------------
12243
+  (0.1ms) rollback transaction
12244
+  (0.1ms) begin transaction
12245
+ ----------------------------
12246
+ DocumentTest: test_the_truth
12247
+ ----------------------------
12248
+  (0.1ms) rollback transaction
12249
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12250
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12251
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12252
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12253
+  (0.1ms) SELECT version FROM "schema_migrations"
12254
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12255
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12256
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12257
+  (0.2ms) begin transaction
12258
+ Fixture Delete (1.4ms) DELETE FROM "articles"
12259
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:09')
12260
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:09')
12261
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:09')
12262
+  (1.0ms) commit transaction
12263
+  (0.1ms) begin transaction
12264
+ ---------------------------------
12265
+ ArticleTest: test_Ascending_order
12266
+ ---------------------------------
12267
+  (0.1ms) rollback transaction
12268
+  (0.1ms) begin transaction
12269
+ ----------------------------------
12270
+ ArticleTest: test_Descending_order
12271
+ ----------------------------------
12272
+  (0.1ms) rollback transaction
12273
+  (0.1ms) begin transaction
12274
+ ----------------------------------
12275
+ ArticleTest: test_Full_text_search
12276
+ ----------------------------------
12277
+  (0.1ms) rollback transaction
12278
+  (0.1ms) begin transaction
12279
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12280
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:20:09')
12281
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:20:09')
12282
+  (0.9ms) commit transaction
12283
+  (0.1ms) begin transaction
12284
+ ----------------------------------
12285
+ DocumentTest: test_Search_document
12286
+ ----------------------------------
12287
+  (0.1ms) rollback transaction
12288
+  (0.1ms) begin transaction
12289
+ ----------------------------
12290
+ DocumentTest: test_the_truth
12291
+ ----------------------------
12292
+  (0.1ms) rollback transaction
12293
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12294
+  (0.8ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12295
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12296
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12297
+  (0.1ms) SELECT version FROM "schema_migrations"
12298
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12299
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12300
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12301
+  (0.1ms) begin transaction
12302
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12303
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:24')
12304
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:24')
12305
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:20:24')
12306
+  (0.9ms) commit transaction
12307
+  (0.1ms) begin transaction
12308
+ ---------------------------------
12309
+ ArticleTest: test_Ascending_order
12310
+ ---------------------------------
12311
+  (0.1ms) rollback transaction
12312
+  (0.0ms) begin transaction
12313
+ ----------------------------------
12314
+ ArticleTest: test_Descending_order
12315
+ ----------------------------------
12316
+  (0.0ms) rollback transaction
12317
+  (0.0ms) begin transaction
12318
+ ----------------------------------
12319
+ ArticleTest: test_Full_text_search
12320
+ ----------------------------------
12321
+  (0.0ms) rollback transaction
12322
+  (0.1ms) begin transaction
12323
+ Fixture Delete (0.2ms) DELETE FROM "documents"
12324
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:20:24')
12325
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:20:24')
12326
+  (0.9ms) commit transaction
12327
+  (0.1ms) begin transaction
12328
+ ----------------------------------
12329
+ DocumentTest: test_Search_document
12330
+ ----------------------------------
12331
+  (0.1ms) rollback transaction
12332
+  (0.1ms) begin transaction
12333
+ ----------------------------
12334
+ DocumentTest: test_the_truth
12335
+ ----------------------------
12336
+  (0.0ms) rollback transaction
12337
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12338
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12339
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12340
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12341
+  (0.1ms) SELECT version FROM "schema_migrations"
12342
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12343
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12344
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12345
+  (0.1ms) begin transaction
12346
+ Fixture Delete (0.2ms) DELETE FROM "articles"
12347
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:21:39')
12348
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:21:39')
12349
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:21:39')
12350
+  (0.8ms) commit transaction
12351
+  (0.1ms) begin transaction
12352
+ ---------------------------------
12353
+ ArticleTest: test_Ascending_order
12354
+ ---------------------------------
12355
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12356
+  (0.1ms) rollback transaction
12357
+  (0.1ms) begin transaction
12358
+ ----------------------------------
12359
+ ArticleTest: test_Descending_order
12360
+ ----------------------------------
12361
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12362
+  (0.1ms) rollback transaction
12363
+  (0.1ms) begin transaction
12364
+ ----------------------------------
12365
+ ArticleTest: test_Full_text_search
12366
+ ----------------------------------
12367
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12368
+  (0.1ms) rollback transaction
12369
+  (0.1ms) begin transaction
12370
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12371
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:21:40')
12372
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:21:40')
12373
+  (1.2ms) commit transaction
12374
+  (0.1ms) begin transaction
12375
+ ----------------------------------
12376
+ DocumentTest: test_Search_document
12377
+ ----------------------------------
12378
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12379
+  (0.1ms) rollback transaction
12380
+  (0.1ms) begin transaction
12381
+ ----------------------------
12382
+ DocumentTest: test_the_truth
12383
+ ----------------------------
12384
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12385
+  (0.1ms) rollback transaction
12386
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12387
+  (1.3ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12388
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12389
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12390
+  (0.1ms) SELECT version FROM "schema_migrations"
12391
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12392
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12394
+  (0.2ms) begin transaction
12395
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12396
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:25:11')
12397
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:25:11')
12398
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:25:11')
12399
+  (0.7ms) commit transaction
12400
+  (0.1ms) begin transaction
12401
+ ---------------------------------
12402
+ ArticleTest: test_Ascending_order
12403
+ ---------------------------------
12404
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12405
+  (0.1ms) rollback transaction
12406
+  (0.1ms) begin transaction
12407
+ ----------------------------------
12408
+ ArticleTest: test_Descending_order
12409
+ ----------------------------------
12410
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12411
+  (0.1ms) rollback transaction
12412
+  (0.1ms) begin transaction
12413
+ ----------------------------------
12414
+ ArticleTest: test_Full_text_search
12415
+ ----------------------------------
12416
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12417
+  (0.1ms) rollback transaction
12418
+  (0.1ms) begin transaction
12419
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12420
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:25:12')
12421
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:25:12')
12422
+  (0.7ms) commit transaction
12423
+  (0.1ms) begin transaction
12424
+ ----------------------------------
12425
+ DocumentTest: test_Search_document
12426
+ ----------------------------------
12427
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12428
+  (0.1ms) rollback transaction
12429
+  (0.1ms) begin transaction
12430
+ ----------------------------
12431
+ DocumentTest: test_the_truth
12432
+ ----------------------------
12433
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12434
+  (0.1ms) rollback transaction
12435
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12436
+  (1.4ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12437
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12438
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12439
+  (0.1ms) SELECT version FROM "schema_migrations"
12440
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12441
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12442
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12443
+  (0.1ms) begin transaction
12444
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12445
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:00')
12446
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:00')
12447
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:00')
12448
+  (1.1ms) commit transaction
12449
+  (0.1ms) begin transaction
12450
+ ---------------------------------
12451
+ ArticleTest: test_Ascending_order
12452
+ ---------------------------------
12453
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12454
+  (0.1ms) rollback transaction
12455
+  (0.1ms) begin transaction
12456
+ ----------------------------------
12457
+ ArticleTest: test_Descending_order
12458
+ ----------------------------------
12459
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12460
+  (0.1ms) rollback transaction
12461
+  (0.1ms) begin transaction
12462
+ ----------------------------------
12463
+ ArticleTest: test_Full_text_search
12464
+ ----------------------------------
12465
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12466
+  (0.1ms) rollback transaction
12467
+  (0.1ms) begin transaction
12468
+ Fixture Delete (0.2ms) DELETE FROM "documents"
12469
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:26:01')
12470
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:26:01')
12471
+  (0.8ms) commit transaction
12472
+  (0.1ms) begin transaction
12473
+ ----------------------------------
12474
+ DocumentTest: test_Search_document
12475
+ ----------------------------------
12476
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12477
+  (0.1ms) rollback transaction
12478
+  (0.1ms) begin transaction
12479
+ ----------------------------
12480
+ DocumentTest: test_the_truth
12481
+ ----------------------------
12482
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12483
+  (0.1ms) rollback transaction
12484
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12485
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12486
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12487
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12488
+  (0.2ms) SELECT version FROM "schema_migrations"
12489
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12490
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12491
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12492
+  (0.1ms) begin transaction
12493
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12494
+ Fixture Insert (0.3ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:58')
12495
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:58')
12496
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:26:58')
12497
+  (0.7ms) commit transaction
12498
+  (0.1ms) begin transaction
12499
+ ---------------------------------
12500
+ ArticleTest: test_Ascending_order
12501
+ ---------------------------------
12502
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12503
+  (0.2ms) rollback transaction
12504
+  (0.1ms) begin transaction
12505
+ ----------------------------------
12506
+ ArticleTest: test_Descending_order
12507
+ ----------------------------------
12508
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12509
+  (0.1ms) rollback transaction
12510
+  (0.1ms) begin transaction
12511
+ ----------------------------------
12512
+ ArticleTest: test_Full_text_search
12513
+ ----------------------------------
12514
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12515
+  (0.1ms) rollback transaction
12516
+  (0.1ms) begin transaction
12517
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12518
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:26:59')
12519
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:26:59')
12520
+  (0.7ms) commit transaction
12521
+  (0.1ms) begin transaction
12522
+ ----------------------------------
12523
+ DocumentTest: test_Search_document
12524
+ ----------------------------------
12525
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12526
+  (0.2ms) rollback transaction
12527
+  (0.1ms) begin transaction
12528
+ ----------------------------
12529
+ DocumentTest: test_the_truth
12530
+ ----------------------------
12531
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12532
+  (0.1ms) rollback transaction
12533
+  (1.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12534
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12535
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12536
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12537
+  (0.1ms) SELECT version FROM "schema_migrations"
12538
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12539
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12540
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12541
+  (0.1ms) begin transaction
12542
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12543
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:28:58')
12544
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:28:58')
12545
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:28:58')
12546
+  (1.2ms) commit transaction
12547
+  (0.1ms) begin transaction
12548
+ ---------------------------------
12549
+ ArticleTest: test_Ascending_order
12550
+ ---------------------------------
12551
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12552
+  (0.2ms) rollback transaction
12553
+  (0.1ms) begin transaction
12554
+ ----------------------------------
12555
+ ArticleTest: test_Descending_order
12556
+ ----------------------------------
12557
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12558
+  (0.2ms) rollback transaction
12559
+  (0.1ms) begin transaction
12560
+ ----------------------------------
12561
+ ArticleTest: test_Full_text_search
12562
+ ----------------------------------
12563
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12564
+  (0.2ms) rollback transaction
12565
+  (0.1ms) begin transaction
12566
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12567
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:28:59')
12568
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:28:59')
12569
+  (1.2ms) commit transaction
12570
+  (0.1ms) begin transaction
12571
+ ----------------------------------
12572
+ DocumentTest: test_Search_document
12573
+ ----------------------------------
12574
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12575
+  (0.1ms) rollback transaction
12576
+  (0.1ms) begin transaction
12577
+ ----------------------------
12578
+ DocumentTest: test_the_truth
12579
+ ----------------------------
12580
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12581
+  (0.2ms) rollback transaction
12582
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12583
+  (1.4ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12584
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12585
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12586
+  (0.1ms) SELECT version FROM "schema_migrations"
12587
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12588
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12589
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12590
+  (0.1ms) begin transaction
12591
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12592
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:30:20')
12593
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:30:20')
12594
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:30:20')
12595
+  (0.6ms) commit transaction
12596
+  (0.1ms) begin transaction
12597
+ ---------------------------------
12598
+ ArticleTest: test_Ascending_order
12599
+ ---------------------------------
12600
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12601
+  (0.2ms) rollback transaction
12602
+  (0.2ms) begin transaction
12603
+ ----------------------------------
12604
+ ArticleTest: test_Descending_order
12605
+ ----------------------------------
12606
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12607
+  (0.2ms) rollback transaction
12608
+  (0.1ms) begin transaction
12609
+ ----------------------------------
12610
+ ArticleTest: test_Full_text_search
12611
+ ----------------------------------
12612
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12613
+  (0.2ms) rollback transaction
12614
+  (0.2ms) begin transaction
12615
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12616
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:30:21')
12617
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:30:21')
12618
+  (1.1ms) commit transaction
12619
+  (0.1ms) begin transaction
12620
+ ----------------------------------
12621
+ DocumentTest: test_Search_document
12622
+ ----------------------------------
12623
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12624
+  (0.2ms) rollback transaction
12625
+  (0.1ms) begin transaction
12626
+ ----------------------------
12627
+ DocumentTest: test_the_truth
12628
+ ----------------------------
12629
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12630
+  (0.2ms) rollback transaction
12631
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12632
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12633
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12634
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12635
+  (0.2ms) SELECT version FROM "schema_migrations"
12636
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12637
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12638
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12639
+  (0.1ms) begin transaction
12640
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12641
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:32:51')
12642
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:32:51')
12643
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:32:51')
12644
+  (0.7ms) commit transaction
12645
+  (0.1ms) begin transaction
12646
+ ---------------------------------
12647
+ ArticleTest: test_Ascending_order
12648
+ ---------------------------------
12649
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12650
+  (0.1ms) rollback transaction
12651
+  (0.1ms) begin transaction
12652
+ ----------------------------------
12653
+ ArticleTest: test_Descending_order
12654
+ ----------------------------------
12655
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12656
+  (0.1ms) rollback transaction
12657
+  (0.1ms) begin transaction
12658
+ ----------------------------------
12659
+ ArticleTest: test_Full_text_search
12660
+ ----------------------------------
12661
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12662
+  (0.3ms) rollback transaction
12663
+  (0.1ms) begin transaction
12664
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12665
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:32:52')
12666
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:32:52')
12667
+  (1.0ms) commit transaction
12668
+  (0.1ms) begin transaction
12669
+ ----------------------------------
12670
+ DocumentTest: test_Search_document
12671
+ ----------------------------------
12672
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12673
+  (0.1ms) rollback transaction
12674
+  (0.1ms) begin transaction
12675
+ ----------------------------
12676
+ DocumentTest: test_the_truth
12677
+ ----------------------------
12678
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12679
+  (0.2ms) rollback transaction
12680
+  (1.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12681
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12682
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12683
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12684
+  (0.1ms) SELECT version FROM "schema_migrations"
12685
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12686
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12687
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
12688
+  (0.2ms) begin transaction
12689
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12690
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:33:23')
12691
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:33:23')
12692
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:33:23')
12693
+  (0.9ms) commit transaction
12694
+  (0.1ms) begin transaction
12695
+ ---------------------------------
12696
+ ArticleTest: test_Ascending_order
12697
+ ---------------------------------
12698
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12699
+  (0.2ms) rollback transaction
12700
+  (0.1ms) begin transaction
12701
+ ----------------------------------
12702
+ ArticleTest: test_Descending_order
12703
+ ----------------------------------
12704
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12705
+  (0.2ms) rollback transaction
12706
+  (0.1ms) begin transaction
12707
+ ----------------------------------
12708
+ ArticleTest: test_Full_text_search
12709
+ ----------------------------------
12710
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12711
+  (0.2ms) rollback transaction
12712
+  (0.1ms) begin transaction
12713
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12714
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:33:24')
12715
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:33:24')
12716
+  (0.8ms) commit transaction
12717
+  (0.1ms) begin transaction
12718
+ ----------------------------------
12719
+ DocumentTest: test_Search_document
12720
+ ----------------------------------
12721
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12722
+  (0.2ms) rollback transaction
12723
+  (0.1ms) begin transaction
12724
+ ----------------------------
12725
+ DocumentTest: test_the_truth
12726
+ ----------------------------
12727
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12728
+  (0.2ms) rollback transaction
12729
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12730
+  (0.9ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12731
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12732
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12733
+  (0.1ms) SELECT version FROM "schema_migrations"
12734
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12735
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12736
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12737
+  (0.1ms) begin transaction
12738
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12739
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:23')
12740
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:23')
12741
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:23')
12742
+  (1.0ms) commit transaction
12743
+  (0.1ms) begin transaction
12744
+ ---------------------------------
12745
+ ArticleTest: test_Ascending_order
12746
+ ---------------------------------
12747
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12748
+  (0.2ms) rollback transaction
12749
+  (0.1ms) begin transaction
12750
+ ----------------------------------
12751
+ ArticleTest: test_Descending_order
12752
+ ----------------------------------
12753
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12754
+  (0.2ms) rollback transaction
12755
+  (0.1ms) begin transaction
12756
+ ----------------------------------
12757
+ ArticleTest: test_Full_text_search
12758
+ ----------------------------------
12759
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12760
+  (0.2ms) rollback transaction
12761
+  (0.1ms) begin transaction
12762
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12763
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:34:24')
12764
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:34:24')
12765
+  (0.7ms) commit transaction
12766
+  (0.1ms) begin transaction
12767
+ ----------------------------------
12768
+ DocumentTest: test_Search_document
12769
+ ----------------------------------
12770
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12771
+  (0.1ms) rollback transaction
12772
+  (0.1ms) begin transaction
12773
+ ----------------------------
12774
+ DocumentTest: test_the_truth
12775
+ ----------------------------
12776
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12777
+  (0.2ms) rollback transaction
12778
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12779
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12780
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12781
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12782
+  (0.1ms) SELECT version FROM "schema_migrations"
12783
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12784
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12785
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12786
+  (0.1ms) begin transaction
12787
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12788
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:47')
12789
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:47')
12790
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:34:47')
12791
+  (0.7ms) commit transaction
12792
+  (0.1ms) begin transaction
12793
+ ---------------------------------
12794
+ ArticleTest: test_Ascending_order
12795
+ ---------------------------------
12796
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12797
+  (0.2ms) rollback transaction
12798
+  (0.1ms) begin transaction
12799
+ ----------------------------------
12800
+ ArticleTest: test_Descending_order
12801
+ ----------------------------------
12802
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12803
+  (0.2ms) rollback transaction
12804
+  (0.1ms) begin transaction
12805
+ ----------------------------------
12806
+ ArticleTest: test_Full_text_search
12807
+ ----------------------------------
12808
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12809
+  (0.2ms) rollback transaction
12810
+  (0.1ms) begin transaction
12811
+ Fixture Delete (0.4ms) DELETE FROM "documents"
12812
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:34:48')
12813
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:34:48')
12814
+  (0.8ms) commit transaction
12815
+  (0.1ms) begin transaction
12816
+ ----------------------------------
12817
+ DocumentTest: test_Search_document
12818
+ ----------------------------------
12819
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12820
+  (0.2ms) rollback transaction
12821
+  (0.1ms) begin transaction
12822
+ ----------------------------
12823
+ DocumentTest: test_the_truth
12824
+ ----------------------------
12825
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12826
+  (0.2ms) rollback transaction
12827
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12828
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12829
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12830
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12831
+  (0.1ms) SELECT version FROM "schema_migrations"
12832
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12833
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12834
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12835
+  (0.1ms) begin transaction
12836
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12837
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:10')
12838
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:10')
12839
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:10')
12840
+  (1.2ms) commit transaction
12841
+  (0.1ms) begin transaction
12842
+ ---------------------------------
12843
+ ArticleTest: test_Ascending_order
12844
+ ---------------------------------
12845
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12846
+  (0.2ms) rollback transaction
12847
+  (0.2ms) begin transaction
12848
+ ----------------------------------
12849
+ ArticleTest: test_Descending_order
12850
+ ----------------------------------
12851
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12852
+  (0.2ms) rollback transaction
12853
+  (0.1ms) begin transaction
12854
+ ----------------------------------
12855
+ ArticleTest: test_Full_text_search
12856
+ ----------------------------------
12857
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12858
+  (0.2ms) rollback transaction
12859
+  (0.1ms) begin transaction
12860
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12861
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:35:11')
12862
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:35:11')
12863
+  (1.0ms) commit transaction
12864
+  (0.1ms) begin transaction
12865
+ ----------------------------------
12866
+ DocumentTest: test_Search_document
12867
+ ----------------------------------
12868
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12869
+  (0.2ms) rollback transaction
12870
+  (0.1ms) begin transaction
12871
+ ----------------------------
12872
+ DocumentTest: test_the_truth
12873
+ ----------------------------
12874
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12875
+  (0.2ms) rollback transaction
12876
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12877
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12878
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12879
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12880
+  (0.1ms) SELECT version FROM "schema_migrations"
12881
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12882
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12883
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12884
+  (0.1ms) begin transaction
12885
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12886
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:34')
12887
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:34')
12888
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:35:34')
12889
+  (0.7ms) commit transaction
12890
+  (0.1ms) begin transaction
12891
+ ---------------------------------
12892
+ ArticleTest: test_Ascending_order
12893
+ ---------------------------------
12894
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12895
+  (0.2ms) rollback transaction
12896
+  (0.2ms) begin transaction
12897
+ ----------------------------------
12898
+ ArticleTest: test_Descending_order
12899
+ ----------------------------------
12900
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12901
+  (0.2ms) rollback transaction
12902
+  (0.1ms) begin transaction
12903
+ ----------------------------------
12904
+ ArticleTest: test_Full_text_search
12905
+ ----------------------------------
12906
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12907
+  (0.2ms) rollback transaction
12908
+  (0.2ms) begin transaction
12909
+ Fixture Delete (0.4ms) DELETE FROM "documents"
12910
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:35:35')
12911
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:35:35')
12912
+  (0.7ms) commit transaction
12913
+  (0.1ms) begin transaction
12914
+ ----------------------------------
12915
+ DocumentTest: test_Search_document
12916
+ ----------------------------------
12917
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12918
+  (0.2ms) rollback transaction
12919
+  (0.1ms) begin transaction
12920
+ ----------------------------
12921
+ DocumentTest: test_the_truth
12922
+ ----------------------------
12923
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12924
+  (0.2ms) rollback transaction
12925
+  (1.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12926
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12927
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12928
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12929
+  (0.1ms) SELECT version FROM "schema_migrations"
12930
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12931
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12932
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12933
+  (0.1ms) begin transaction
12934
+ Fixture Delete (0.4ms) DELETE FROM "articles"
12935
+ Fixture Insert (0.3ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:37:00')
12936
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:37:00')
12937
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:37:00')
12938
+  (0.7ms) commit transaction
12939
+  (0.1ms) begin transaction
12940
+ ---------------------------------
12941
+ ArticleTest: test_Ascending_order
12942
+ ---------------------------------
12943
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12944
+  (0.2ms) rollback transaction
12945
+  (0.1ms) begin transaction
12946
+ ----------------------------------
12947
+ ArticleTest: test_Descending_order
12948
+ ----------------------------------
12949
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12950
+  (0.2ms) rollback transaction
12951
+  (0.1ms) begin transaction
12952
+ ----------------------------------
12953
+ ArticleTest: test_Full_text_search
12954
+ ----------------------------------
12955
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12956
+  (0.2ms) rollback transaction
12957
+  (0.1ms) begin transaction
12958
+ Fixture Delete (0.3ms) DELETE FROM "documents"
12959
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:37:01')
12960
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:37:01')
12961
+  (1.1ms) commit transaction
12962
+  (0.1ms) begin transaction
12963
+ ----------------------------------
12964
+ DocumentTest: test_Search_document
12965
+ ----------------------------------
12966
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12967
+  (0.2ms) rollback transaction
12968
+  (0.1ms) begin transaction
12969
+ ----------------------------
12970
+ DocumentTest: test_the_truth
12971
+ ----------------------------
12972
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
12973
+  (0.2ms) rollback transaction
12974
+  (1.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
12975
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
12976
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12977
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12978
+  (0.2ms) SELECT version FROM "schema_migrations"
12979
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
12980
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
12981
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12982
+  (0.1ms) begin transaction
12983
+ Fixture Delete (0.3ms) DELETE FROM "articles"
12984
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:38:46')
12985
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:38:46')
12986
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:38:46')
12987
+  (0.8ms) commit transaction
12988
+  (0.1ms) begin transaction
12989
+ ---------------------------------
12990
+ ArticleTest: test_Ascending_order
12991
+ ---------------------------------
12992
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12993
+  (0.3ms) rollback transaction
12994
+  (0.1ms) begin transaction
12995
+ ----------------------------------
12996
+ ArticleTest: test_Descending_order
12997
+ ----------------------------------
12998
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
12999
+  (0.2ms) rollback transaction
13000
+  (0.1ms) begin transaction
13001
+ ----------------------------------
13002
+ ArticleTest: test_Full_text_search
13003
+ ----------------------------------
13004
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13005
+  (0.2ms) rollback transaction
13006
+  (0.1ms) begin transaction
13007
+ Fixture Delete (0.4ms) DELETE FROM "documents"
13008
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:38:47')
13009
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:38:47')
13010
+  (0.9ms) commit transaction
13011
+  (0.1ms) begin transaction
13012
+ ----------------------------------
13013
+ DocumentTest: test_Search_document
13014
+ ----------------------------------
13015
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13016
+  (0.2ms) rollback transaction
13017
+  (0.1ms) begin transaction
13018
+ ----------------------------
13019
+ DocumentTest: test_the_truth
13020
+ ----------------------------
13021
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13022
+  (0.2ms) rollback transaction
13023
+  (1.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
13024
+  (1.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
13025
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13026
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13027
+  (0.1ms) SELECT version FROM "schema_migrations"
13028
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
13029
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
13030
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13031
+  (0.1ms) begin transaction
13032
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13033
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:05')
13034
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:05')
13035
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:05')
13036
+  (0.8ms) commit transaction
13037
+  (0.1ms) begin transaction
13038
+ ---------------------------------
13039
+ ArticleTest: test_Ascending_order
13040
+ ---------------------------------
13041
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13042
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13043
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13044
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13045
+  (0.2ms) rollback transaction
13046
+  (0.1ms) begin transaction
13047
+ ----------------------------------
13048
+ ArticleTest: test_Descending_order
13049
+ ----------------------------------
13050
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13051
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13052
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13053
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13054
+  (0.1ms) rollback transaction
13055
+  (0.1ms) begin transaction
13056
+ ----------------------------------
13057
+ ArticleTest: test_Full_text_search
13058
+ ----------------------------------
13059
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13060
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13061
+  (0.2ms) rollback transaction
13062
+  (0.2ms) begin transaction
13063
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13064
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:40:06')
13065
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:40:06')
13066
+  (0.8ms) commit transaction
13067
+  (0.1ms) begin transaction
13068
+ ----------------------------------
13069
+ DocumentTest: test_Search_document
13070
+ ----------------------------------
13071
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13072
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13073
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13074
+  (0.1ms) rollback transaction
13075
+  (0.1ms) begin transaction
13076
+ ----------------------------
13077
+ DocumentTest: test_the_truth
13078
+ ----------------------------
13079
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13080
+  (0.2ms) rollback transaction
13081
+  (1.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
13082
+  (1.0ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
13083
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13084
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13085
+  (0.2ms) SELECT version FROM "schema_migrations"
13086
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
13087
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
13088
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13089
+  (0.1ms) begin transaction
13090
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13091
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:36')
13092
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:36')
13093
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:40:36')
13094
+  (0.8ms) commit transaction
13095
+  (0.1ms) begin transaction
13096
+ ---------------------------------
13097
+ ArticleTest: test_Ascending_order
13098
+ ---------------------------------
13099
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13100
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13101
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13102
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13103
+  (0.2ms) rollback transaction
13104
+  (0.1ms) begin transaction
13105
+ ----------------------------------
13106
+ ArticleTest: test_Descending_order
13107
+ ----------------------------------
13108
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13109
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13110
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13111
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13112
+  (0.1ms) rollback transaction
13113
+  (0.1ms) begin transaction
13114
+ ----------------------------------
13115
+ ArticleTest: test_Full_text_search
13116
+ ----------------------------------
13117
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13118
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13119
+  (0.1ms) rollback transaction
13120
+  (0.1ms) begin transaction
13121
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13122
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:40:37')
13123
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:40:37')
13124
+  (1.0ms) commit transaction
13125
+  (0.1ms) begin transaction
13126
+ ----------------------------------
13127
+ DocumentTest: test_Search_document
13128
+ ----------------------------------
13129
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13130
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13131
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13132
+  (0.1ms) rollback transaction
13133
+  (0.1ms) begin transaction
13134
+ ----------------------------
13135
+ DocumentTest: test_the_truth
13136
+ ----------------------------
13137
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13138
+  (0.2ms) rollback transaction
13139
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
13140
+  (1.4ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
13141
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13142
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13143
+  (0.2ms) SELECT version FROM "schema_migrations"
13144
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
13145
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
13146
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13147
+  (0.1ms) begin transaction
13148
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13149
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 15:42:08')
13150
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 15:42:08')
13151
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 15:42:08')
13152
+  (1.0ms) commit transaction
13153
+  (0.1ms) begin transaction
13154
+ ---------------------------------
13155
+ ArticleTest: test_Ascending_order
13156
+ ---------------------------------
13157
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13158
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13159
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13160
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13161
+  (0.2ms) rollback transaction
13162
+  (0.1ms) begin transaction
13163
+ ----------------------------------
13164
+ ArticleTest: test_Descending_order
13165
+ ----------------------------------
13166
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13167
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13168
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13169
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13170
+  (0.1ms) rollback transaction
13171
+  (0.1ms) begin transaction
13172
+ ----------------------------------
13173
+ ArticleTest: test_Full_text_search
13174
+ ----------------------------------
13175
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13176
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13177
+  (0.1ms) rollback transaction
13178
+  (0.1ms) begin transaction
13179
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13180
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 15:42:09')
13181
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 15:42:09')
13182
+  (1.2ms) commit transaction
13183
+  (0.1ms) begin transaction
13184
+ ----------------------------------
13185
+ DocumentTest: test_Search_document
13186
+ ----------------------------------
13187
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13188
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13189
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13190
+  (0.1ms) rollback transaction
13191
+  (0.1ms) begin transaction
13192
+ ----------------------------
13193
+ DocumentTest: test_the_truth
13194
+ ----------------------------
13195
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13196
+  (0.2ms) rollback transaction
13197
+  (4.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" varchar(255), "category_id" integer, "updated_at" datetime, "created_at" datetime) 
13198
+  (1.1ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "room_id" integer, "name" varchar(255), "updated_at" datetime, "uuid" integer, "user_id" integer, "file_size" integer, "file_content_type" varchar(255), "state" varchar(255), "created_at" datetime)
13199
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13200
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13201
+  (0.1ms) SELECT version FROM "schema_migrations"
13202
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130901161100')
13203
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130711150619')
13204
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13205
+  (0.1ms) begin transaction
13206
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13207
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 16:12:49')
13208
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 16:12:49')
13209
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 16:12:49')
13210
+  (0.9ms) commit transaction
13211
+  (0.1ms) begin transaction
13212
+ ---------------------------------
13213
+ ArticleTest: test_Ascending_order
13214
+ ---------------------------------
13215
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13216
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13217
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13218
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13219
+  (0.2ms) rollback transaction
13220
+  (0.1ms) begin transaction
13221
+ ----------------------------------
13222
+ ArticleTest: test_Descending_order
13223
+ ----------------------------------
13224
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13225
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13226
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13227
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13228
+  (0.1ms) rollback transaction
13229
+  (0.1ms) begin transaction
13230
+ ----------------------------------
13231
+ ArticleTest: test_Full_text_search
13232
+ ----------------------------------
13233
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13234
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13235
+  (0.2ms) rollback transaction
13236
+  (0.2ms) begin transaction
13237
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13238
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 16:12:50')
13239
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 16:12:50')
13240
+  (0.7ms) commit transaction
13241
+  (0.1ms) begin transaction
13242
+ ----------------------------------
13243
+ DocumentTest: test_Search_document
13244
+ ----------------------------------
13245
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13246
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13247
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13248
+  (0.1ms) rollback transaction
13249
+  (0.1ms) begin transaction
13250
+ ----------------------------
13251
+ DocumentTest: test_the_truth
13252
+ ----------------------------
13253
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13254
+  (0.2ms) rollback transaction
13255
+  (0.7ms) begin transaction
13256
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13257
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 16:13:05')
13258
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 16:13:05')
13259
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 16:13:05')
13260
+  (0.7ms) commit transaction
13261
+  (0.1ms) begin transaction
13262
+ ---------------------------------
13263
+ ArticleTest: test_Ascending_order
13264
+ ---------------------------------
13265
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13266
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13267
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13268
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13269
+  (0.2ms) rollback transaction
13270
+  (0.2ms) begin transaction
13271
+ ----------------------------------
13272
+ ArticleTest: test_Descending_order
13273
+ ----------------------------------
13274
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13275
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13276
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13277
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13278
+  (0.3ms) rollback transaction
13279
+  (0.1ms) begin transaction
13280
+ ----------------------------------
13281
+ ArticleTest: test_Full_text_search
13282
+ ----------------------------------
13283
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13284
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13285
+  (0.2ms) rollback transaction
13286
+  (0.2ms) begin transaction
13287
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13288
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 16:13:06')
13289
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 16:13:06')
13290
+  (1.0ms) commit transaction
13291
+  (0.1ms) begin transaction
13292
+ ----------------------------------
13293
+ DocumentTest: test_Search_document
13294
+ ----------------------------------
13295
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13296
+ Document Load (0.5ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13297
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13298
+  (0.1ms) rollback transaction
13299
+  (0.1ms) begin transaction
13300
+ ----------------------------
13301
+ DocumentTest: test_the_truth
13302
+ ----------------------------
13303
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13304
+  (0.2ms) rollback transaction
13305
+  (0.1ms) begin transaction
13306
+ -----------------------------------------------------
13307
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13308
+ -----------------------------------------------------
13309
+  (0.2ms) rollback transaction
13310
+  (3.2ms) begin transaction
13311
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13312
+ Fixture Insert (0.2ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (1, 'Weather report', 'Sunny weather today', 1, '2013-07-11 17:06:19.000000', '2013-09-12 16:15:41')
13313
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (2, 'Active record rocks', 'Using OpenSearchServer with active record is simple', 2, '2013-07-11 17:06:19.000000', '2013-09-12 16:15:41')
13314
+ Fixture Insert (0.1ms) INSERT INTO "articles" ("id", "title", "content", "category_id", "updated_at", "created_at") VALUES (3, 'Breaking news', 'A new version should be available soon', 1000, '2013-07-11 17:06:19.000000', '2013-09-12 16:15:41')
13315
+  (0.7ms) commit transaction
13316
+  (0.1ms) begin transaction
13317
+ ---------------------------------
13318
+ ArticleTest: test_Ascending_order
13319
+ ---------------------------------
13320
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13321
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13322
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13323
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13324
+  (0.2ms) rollback transaction
13325
+  (0.2ms) begin transaction
13326
+ ----------------------------------
13327
+ ArticleTest: test_Descending_order
13328
+ ----------------------------------
13329
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13330
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13331
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13332
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13333
+  (0.1ms) rollback transaction
13334
+  (0.1ms) begin transaction
13335
+ ----------------------------------
13336
+ ArticleTest: test_Full_text_search
13337
+ ----------------------------------
13338
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13339
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13340
+  (0.1ms) rollback transaction
13341
+  (0.2ms) begin transaction
13342
+ Fixture Delete (0.4ms) DELETE FROM "documents"
13343
+ Fixture Insert (0.2ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (1, 1, 1, 'my wonderful document', '2013-07-11 17:06:19.000000', 1, 1, 1, 'application/pdf', 'MyString', '2013-09-12 16:15:42')
13344
+ Fixture Insert (0.1ms) INSERT INTO "documents" ("id", "folder_id", "room_id", "name", "updated_at", "uuid", "user_id", "file_size", "file_content_type", "state", "created_at") VALUES (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-09-12 16:15:42')
13345
+  (0.7ms) commit transaction
13346
+  (0.1ms) begin transaction
13347
+ ----------------------------------
13348
+ DocumentTest: test_Search_document
13349
+ ----------------------------------
13350
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13351
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13352
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13353
+  (0.1ms) rollback transaction
13354
+  (0.1ms) begin transaction
13355
+ ----------------------------
13356
+ DocumentTest: test_the_truth
13357
+ ----------------------------
13358
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13359
+  (0.2ms) rollback transaction
13360
+  (0.1ms) begin transaction
13361
+ -----------------------------------------------------
13362
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13363
+ -----------------------------------------------------
13364
+  (0.1ms) rollback transaction