oss_active_record 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7a0eaf7be8e2cdaaa3e0b20652d69630863a2d8
4
- data.tar.gz: ba5d1f0720d7549287ac1e00edfecd1806167964
3
+ metadata.gz: a5dbe9175f3b70fbc88ae6aa3d225ca41802b6bc
4
+ data.tar.gz: 828944ea1be1e1bd68e60ddf1f3b3bf08ba04b44
5
5
  SHA512:
6
- metadata.gz: 88cf52b5f1b8a234add4c11dc49fc82ac8b5acbf4b87130a5911eeee5570b8af3150b062c83c539b3d4dac92f0adf93cc7e4107dce395fe301f6e24aac91315a
7
- data.tar.gz: a403921d33618ce236bf684dd421890c9854da9302d2948c67f18e176c55b6c41343347a9b8f283ad5b56fcca148df58e23da461ad80eab712ec74b33673a681
6
+ metadata.gz: 42b8fc46c1f6b9bf60204cca11719c0e051aad888c8cfb9f8c39516913bd44500b215e07dc741ef6956a8fc109116e32720ae91262015b83010c8d8c59c52dad
7
+ data.tar.gz: 516320529b5e0acf718605f5f2f8ef927a26f7a22b51678dd72951ff16fbd94073a49efb06cb71ec6160a6e8b8f352cce54efacbc5747f6fc99daefbe2275012
@@ -4,7 +4,8 @@ module OssActiveRecord
4
4
  @@_analyzers = {
5
5
  :text => 'StandardAnalyzer',
6
6
  :integer => 'IntegerAnalyzer',
7
- :decimal => 'DecimalAnalyzer'}
7
+ :decimal => 'DecimalAnalyzer',
8
+ :suggestion => 'SuggestionAnalyzer'}
8
9
 
9
10
  def initialize(index_name)
10
11
  @_index_name ||= index_name
@@ -5,10 +5,24 @@ module OssActiveRecord
5
5
  @filters = []
6
6
  @index_instance = index_instance
7
7
  @order_by = {}
8
+ @fields = []
8
9
  end
9
10
 
10
11
  def fulltext(keywords, &block)
11
12
  @params['query'] = keywords
13
+ self.instance_eval(&block) unless block.nil?
14
+ end
15
+
16
+ def field(field, phrase = false, boost = 1.0)
17
+ @fields<<{ "field"=> @index_instance.find_field_name(field), "phrase" => phrase, "boost" => boost} if field.is_a?Symbol
18
+ @fields<<{ "field"=> field, "phrase" => phrase, "boost" => boost} if field.is_a?String
19
+ end
20
+
21
+ def fields(fields)
22
+ fields.each do |key, value|
23
+ field key, false, value
24
+ end if fields.is_a?Hash
25
+ field fields unless fields.is_a?Hash
12
26
  end
13
27
 
14
28
  def filter(field, value, negative)
@@ -44,11 +58,10 @@ module OssActiveRecord
44
58
  def execute(&block)
45
59
  self.instance_eval(&block) unless block.nil?
46
60
  @params['filters'] = @filters unless @filters.length == 0
47
- fields = []
48
61
  @index_instance.text_fields.each do |key, value|
49
- fields<<{ "field"=> value,"phrase"=> true,"boost"=> 1.0}
50
- end
51
- @params['searchFields'] = fields unless fields.length == 0
62
+ field value, true
63
+ end unless @fields.any?
64
+ @params['searchFields'] = @fields unless @fields.length == 0
52
65
  sorts = []
53
66
  @order_by.each do |key, value|
54
67
  sorts<<{ "field"=> key,"direction"=> value}
@@ -2,7 +2,7 @@ module OssActiveRecord
2
2
  module Searchable
3
3
  extend ActiveSupport::Concern
4
4
  module ClassMethods
5
- @@field_types= [:integer, :text, :string, :time] #supported field types
5
+ @@field_types= [:integer, :text, :string, :time, :suggestion] #supported field types
6
6
  @@index_instances = {}
7
7
 
8
8
  def searchable(options = {}, &block)
@@ -30,7 +30,8 @@ module OssActiveRecord
30
30
  end
31
31
 
32
32
  def method_missing(method, *args, &block)
33
- index_instance.add_field(args[0], method, block) if @@field_types.include? method
33
+ return index_instance.add_field(args[0], method, block) if @@field_types.include? method
34
+ super
34
35
  end
35
36
 
36
37
  def search(*args, &block)
@@ -1,3 +1,3 @@
1
1
  module OssActiveRecord
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -44,6 +44,7 @@ class Document < ActiveRecord::Base
44
44
 
45
45
  text :name # fulltext
46
46
  string :name # order_by
47
+ suggestion :name # Suggestion (autocompletion)
47
48
  time :updated_at
48
49
 
49
50
  integer :uuid do current_revision.uuid end
Binary file
@@ -13360,5 +13360,3563 @@ DocumentTest: test_the_truth
13360
13360
   (0.1ms) begin transaction
13361
13361
  -----------------------------------------------------
13362
13362
  OssActiveRecordTest: test_OssActiveRecord_is_a_module
13363
+ -----------------------------------------------------
13364
+  (0.1ms) rollback transaction
13365
+  (4.5ms) begin transaction
13366
+ Fixture Delete (0.5ms) DELETE FROM "articles"
13367
+ 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-10-07 07:28:38')
13368
+ 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-10-07 07:28:38')
13369
+ 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-10-07 07:28:38')
13370
+  (0.8ms) commit transaction
13371
+  (0.1ms) begin transaction
13372
+ ---------------------------------
13373
+ ArticleTest: test_Ascending_order
13374
+ ---------------------------------
13375
+  (0.3ms) rollback transaction
13376
+  (0.1ms) begin transaction
13377
+ ----------------------------------
13378
+ ArticleTest: test_Descending_order
13379
+ ----------------------------------
13380
+  (0.1ms) rollback transaction
13381
+  (0.1ms) begin transaction
13382
+ ----------------------------------
13383
+ ArticleTest: test_Full_text_search
13384
+ ----------------------------------
13385
+  (0.1ms) rollback transaction
13386
+  (0.1ms) begin transaction
13387
+ Fixture Delete (0.2ms) DELETE FROM "documents"
13388
+ 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-10-07 07:28:38')
13389
+ 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-10-07 07:28:38')
13390
+  (0.9ms) commit transaction
13391
+  (0.1ms) begin transaction
13392
+ ----------------------------------
13393
+ DocumentTest: test_Search_document
13394
+ ----------------------------------
13395
+  (0.1ms) rollback transaction
13396
+  (0.1ms) begin transaction
13397
+ ----------------------------
13398
+ DocumentTest: test_the_truth
13399
+ ----------------------------
13400
+  (0.2ms) rollback transaction
13401
+  (0.1ms) begin transaction
13402
+ -----------------------------------------------------
13403
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13404
+ -----------------------------------------------------
13405
+  (0.1ms) rollback transaction
13406
+  (0.7ms) begin transaction
13407
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13408
+ 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-10-07 07:31:53')
13409
+ 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-10-07 07:31:53')
13410
+ 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-10-07 07:31:53')
13411
+  (1.0ms) commit transaction
13412
+  (0.1ms) begin transaction
13413
+ ---------------------------------
13414
+ ArticleTest: test_Ascending_order
13415
+ ---------------------------------
13416
+  (0.1ms) rollback transaction
13417
+  (0.1ms) begin transaction
13418
+ ----------------------------------
13419
+ ArticleTest: test_Descending_order
13420
+ ----------------------------------
13421
+  (0.1ms) rollback transaction
13422
+  (0.1ms) begin transaction
13423
+ ----------------------------------
13424
+ ArticleTest: test_Full_text_search
13425
+ ----------------------------------
13426
+  (0.2ms) rollback transaction
13427
+  (0.1ms) begin transaction
13428
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13429
+ 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-10-07 07:31:54')
13430
+ 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-10-07 07:31:54')
13431
+  (0.7ms) commit transaction
13432
+  (0.1ms) begin transaction
13433
+ ----------------------------------
13434
+ DocumentTest: test_Search_document
13435
+ ----------------------------------
13436
+  (0.2ms) rollback transaction
13437
+  (0.1ms) begin transaction
13438
+ ----------------------------
13439
+ DocumentTest: test_the_truth
13440
+ ----------------------------
13441
+  (0.3ms) rollback transaction
13442
+  (0.1ms) begin transaction
13443
+ -----------------------------------------------------
13444
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13445
+ -----------------------------------------------------
13446
+  (0.1ms) rollback transaction
13447
+  (0.6ms) begin transaction
13448
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13449
+ 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-10-07 07:32:25')
13450
+ 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-10-07 07:32:25')
13451
+ 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-10-07 07:32:25')
13452
+  (1.0ms) commit transaction
13453
+  (0.1ms) begin transaction
13454
+ ---------------------------------
13455
+ ArticleTest: test_Ascending_order
13456
+ ---------------------------------
13457
+  (0.3ms) rollback transaction
13458
+  (0.1ms) begin transaction
13459
+ ----------------------------------
13460
+ ArticleTest: test_Descending_order
13461
+ ----------------------------------
13462
+  (0.1ms) rollback transaction
13463
+  (0.1ms) begin transaction
13464
+ ----------------------------------
13465
+ ArticleTest: test_Full_text_search
13466
+ ----------------------------------
13467
+  (0.1ms) rollback transaction
13468
+  (0.2ms) begin transaction
13469
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13470
+ 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-10-07 07:32:25')
13471
+ 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-10-07 07:32:25')
13472
+  (0.6ms) commit transaction
13473
+  (0.1ms) begin transaction
13474
+ ----------------------------------
13475
+ DocumentTest: test_Search_document
13476
+ ----------------------------------
13477
+  (0.2ms) rollback transaction
13478
+  (0.1ms) begin transaction
13479
+ ----------------------------
13480
+ DocumentTest: test_the_truth
13481
+ ----------------------------
13482
+  (0.1ms) rollback transaction
13483
+  (0.1ms) begin transaction
13484
+ -----------------------------------------------------
13485
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13486
+ -----------------------------------------------------
13487
+  (0.1ms) rollback transaction
13488
+  (0.6ms) begin transaction
13489
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13490
+ 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-10-07 07:35:25')
13491
+ 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-10-07 07:35:25')
13492
+ 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-10-07 07:35:25')
13493
+  (0.7ms) commit transaction
13494
+  (0.1ms) begin transaction
13495
+ ---------------------------------
13496
+ ArticleTest: test_Ascending_order
13497
+ ---------------------------------
13498
+  (0.1ms) rollback transaction
13499
+  (0.1ms) begin transaction
13500
+ ----------------------------------
13501
+ ArticleTest: test_Descending_order
13502
+ ----------------------------------
13503
+  (0.2ms) rollback transaction
13504
+  (0.1ms) begin transaction
13505
+ ----------------------------------
13506
+ ArticleTest: test_Full_text_search
13507
+ ----------------------------------
13508
+  (0.1ms) rollback transaction
13509
+  (0.1ms) begin transaction
13510
+ Fixture Delete (0.2ms) DELETE FROM "documents"
13511
+ 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-10-07 07:35:25')
13512
+ 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-10-07 07:35:25')
13513
+  (0.8ms) commit transaction
13514
+  (0.1ms) begin transaction
13515
+ ----------------------------------
13516
+ DocumentTest: test_Search_document
13517
+ ----------------------------------
13518
+  (0.1ms) rollback transaction
13519
+  (0.2ms) begin transaction
13520
+ ----------------------------
13521
+ DocumentTest: test_the_truth
13522
+ ----------------------------
13523
+  (0.1ms) rollback transaction
13524
+  (0.1ms) begin transaction
13525
+ -----------------------------------------------------
13526
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13527
+ -----------------------------------------------------
13528
+  (0.1ms) rollback transaction
13529
+  (4.4ms) begin transaction
13530
+ Fixture Delete (0.6ms) DELETE FROM "articles"
13531
+ 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-10-07 07:53:54')
13532
+ 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-10-07 07:53:54')
13533
+ 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-10-07 07:53:54')
13534
+  (1.2ms) commit transaction
13535
+  (0.1ms) begin transaction
13536
+ ---------------------------------
13537
+ ArticleTest: test_Ascending_order
13538
+ ---------------------------------
13539
+  (0.2ms) rollback transaction
13540
+  (0.1ms) begin transaction
13541
+ ----------------------------------
13542
+ ArticleTest: test_Descending_order
13543
+ ----------------------------------
13544
+  (0.2ms) rollback transaction
13545
+  (0.1ms) begin transaction
13546
+ ----------------------------------
13547
+ ArticleTest: test_Full_text_search
13548
+ ----------------------------------
13549
+  (0.2ms) rollback transaction
13550
+  (0.1ms) begin transaction
13551
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13552
+ 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-10-07 07:53:54')
13553
+ 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-10-07 07:53:54')
13554
+  (1.1ms) commit transaction
13555
+  (0.1ms) begin transaction
13556
+ ----------------------------------
13557
+ DocumentTest: test_Search_document
13558
+ ----------------------------------
13559
+  (0.1ms) rollback transaction
13560
+  (0.1ms) begin transaction
13561
+ ----------------------------
13562
+ DocumentTest: test_the_truth
13563
+ ----------------------------
13564
+  (0.2ms) rollback transaction
13565
+  (0.1ms) begin transaction
13566
+ -----------------------------------------------------
13567
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13568
+ -----------------------------------------------------
13569
+  (0.1ms) rollback transaction
13570
+  (0.7ms) begin transaction
13571
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13572
+ 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-10-07 08:03:18')
13573
+ 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-10-07 08:03:18')
13574
+ 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-10-07 08:03:18')
13575
+  (0.7ms) commit transaction
13576
+  (0.1ms) begin transaction
13577
+ ---------------------------------
13578
+ ArticleTest: test_Ascending_order
13579
+ ---------------------------------
13580
+  (0.2ms) rollback transaction
13581
+  (0.1ms) begin transaction
13582
+ ----------------------------------
13583
+ ArticleTest: test_Descending_order
13584
+ ----------------------------------
13585
+  (0.1ms) rollback transaction
13586
+  (0.1ms) begin transaction
13587
+ ----------------------------------
13588
+ ArticleTest: test_Full_text_search
13589
+ ----------------------------------
13590
+  (0.1ms) rollback transaction
13591
+  (0.1ms) begin transaction
13592
+ Fixture Delete (0.2ms) DELETE FROM "documents"
13593
+ 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-10-07 08:03:18')
13594
+ 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-10-07 08:03:18')
13595
+  (0.6ms) commit transaction
13596
+  (0.1ms) begin transaction
13597
+ ----------------------------------
13598
+ DocumentTest: test_Search_document
13599
+ ----------------------------------
13600
+  (0.2ms) rollback transaction
13601
+  (0.1ms) begin transaction
13602
+ ----------------------------
13603
+ DocumentTest: test_the_truth
13604
+ ----------------------------
13605
+  (0.2ms) rollback transaction
13606
+  (0.1ms) begin transaction
13607
+ -----------------------------------------------------
13608
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13609
+ -----------------------------------------------------
13610
+  (0.1ms) rollback transaction
13611
+  (0.6ms) begin transaction
13612
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13613
+ 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-10-07 08:18:06')
13614
+ 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-10-07 08:18:06')
13615
+ 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-10-07 08:18:06')
13616
+  (1.2ms) commit transaction
13617
+  (0.1ms) begin transaction
13618
+ ---------------------------------
13619
+ ArticleTest: test_Ascending_order
13620
+ ---------------------------------
13621
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13622
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13623
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13624
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13625
+  (0.1ms) rollback transaction
13626
+  (0.1ms) begin transaction
13627
+ ----------------------------------
13628
+ ArticleTest: test_Descending_order
13629
+ ----------------------------------
13630
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13631
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13632
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13633
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13634
+  (0.1ms) rollback transaction
13635
+  (0.1ms) begin transaction
13636
+ ----------------------------------
13637
+ ArticleTest: test_Full_text_search
13638
+ ----------------------------------
13639
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13640
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13641
+  (0.1ms) rollback transaction
13642
+  (0.2ms) begin transaction
13643
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13644
+ 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-10-07 08:18:07')
13645
+ 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-10-07 08:18:07')
13646
+  (0.7ms) commit transaction
13647
+  (0.1ms) begin transaction
13648
+ ----------------------------------
13649
+ DocumentTest: test_Search_document
13650
+ ----------------------------------
13651
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13652
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13653
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13654
+  (0.1ms) rollback transaction
13655
+  (0.1ms) begin transaction
13656
+ ----------------------------
13657
+ DocumentTest: test_the_truth
13658
+ ----------------------------
13659
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13660
+  (0.2ms) rollback transaction
13661
+  (0.1ms) begin transaction
13662
+ -----------------------------------------------------
13663
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13664
+ -----------------------------------------------------
13665
+  (0.1ms) rollback transaction
13666
+  (0.9ms) begin transaction
13667
+ Fixture Delete (0.5ms) DELETE FROM "articles"
13668
+ 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-10-07 08:32:49')
13669
+ 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-10-07 08:32:49')
13670
+ 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-10-07 08:32:49')
13671
+  (1.0ms) commit transaction
13672
+  (0.1ms) begin transaction
13673
+ ---------------------------------
13674
+ ArticleTest: test_Ascending_order
13675
+ ---------------------------------
13676
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13677
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13678
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13679
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13680
+  (0.1ms) rollback transaction
13681
+  (0.1ms) begin transaction
13682
+ ----------------------------------
13683
+ ArticleTest: test_Descending_order
13684
+ ----------------------------------
13685
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13686
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13687
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13688
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13689
+  (0.1ms) rollback transaction
13690
+  (0.1ms) begin transaction
13691
+ ----------------------------------
13692
+ ArticleTest: test_Full_text_search
13693
+ ----------------------------------
13694
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13695
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13696
+  (0.1ms) rollback transaction
13697
+  (0.2ms) begin transaction
13698
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13699
+ 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-10-07 08:32:52')
13700
+ 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-10-07 08:32:52')
13701
+  (1.0ms) commit transaction
13702
+  (0.1ms) begin transaction
13703
+ ----------------------------------
13704
+ DocumentTest: test_Search_document
13705
+ ----------------------------------
13706
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13707
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13708
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13709
+  (0.1ms) rollback transaction
13710
+  (0.1ms) begin transaction
13711
+ ----------------------------
13712
+ DocumentTest: test_the_truth
13713
+ ----------------------------
13714
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13715
+  (0.2ms) rollback transaction
13716
+  (0.1ms) begin transaction
13717
+ -----------------------------------------------------
13718
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13719
+ -----------------------------------------------------
13720
+  (0.1ms) rollback transaction
13721
+  (0.6ms) begin transaction
13722
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13723
+ 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-10-07 08:35:44')
13724
+ 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-10-07 08:35:44')
13725
+ 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-10-07 08:35:44')
13726
+  (0.7ms) commit transaction
13727
+  (0.1ms) begin transaction
13728
+ ---------------------------------
13729
+ ArticleTest: test_Ascending_order
13730
+ ---------------------------------
13731
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13732
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13733
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13734
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13735
+  (0.1ms) rollback transaction
13736
+  (0.1ms) begin transaction
13737
+ ----------------------------------
13738
+ ArticleTest: test_Descending_order
13739
+ ----------------------------------
13740
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13741
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13742
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13743
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13744
+  (0.1ms) rollback transaction
13745
+  (0.1ms) begin transaction
13746
+ ----------------------------------
13747
+ ArticleTest: test_Full_text_search
13748
+ ----------------------------------
13749
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13750
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13751
+  (0.1ms) rollback transaction
13752
+  (0.1ms) begin transaction
13753
+ Fixture Delete (0.6ms) DELETE FROM "documents"
13754
+ 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-10-07 08:35:45')
13755
+ 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-10-07 08:35:45')
13756
+  (1.2ms) commit transaction
13757
+  (0.1ms) begin transaction
13758
+ ----------------------------------
13759
+ DocumentTest: test_Search_document
13760
+ ----------------------------------
13761
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13762
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13763
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13764
+  (0.1ms) rollback transaction
13765
+  (0.1ms) begin transaction
13766
+ ----------------------------
13767
+ DocumentTest: test_the_truth
13768
+ ----------------------------
13769
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13770
+  (0.2ms) rollback transaction
13771
+  (0.1ms) begin transaction
13772
+ -----------------------------------------------------
13773
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13774
+ -----------------------------------------------------
13775
+  (0.1ms) rollback transaction
13776
+  (0.6ms) begin transaction
13777
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13778
+ 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-10-07 08:38:05')
13779
+ 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-10-07 08:38:05')
13780
+ 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-10-07 08:38:05')
13781
+  (0.8ms) commit transaction
13782
+  (0.1ms) begin transaction
13783
+ ---------------------------------
13784
+ ArticleTest: test_Ascending_order
13785
+ ---------------------------------
13786
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13787
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13788
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13789
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13790
+  (0.1ms) rollback transaction
13791
+  (0.1ms) begin transaction
13792
+ ----------------------------------
13793
+ ArticleTest: test_Descending_order
13794
+ ----------------------------------
13795
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13796
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13797
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13798
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13799
+  (0.1ms) rollback transaction
13800
+  (0.1ms) begin transaction
13801
+ ----------------------------------
13802
+ ArticleTest: test_Full_text_search
13803
+ ----------------------------------
13804
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13805
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13806
+  (0.2ms) rollback transaction
13807
+  (0.1ms) begin transaction
13808
+ Fixture Delete (0.2ms) DELETE FROM "documents"
13809
+ 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-10-07 08:38:06')
13810
+ 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-10-07 08:38:06')
13811
+  (0.7ms) commit transaction
13812
+  (0.1ms) begin transaction
13813
+ ----------------------------------
13814
+ DocumentTest: test_Search_document
13815
+ ----------------------------------
13816
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13817
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13818
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13819
+  (0.1ms) rollback transaction
13820
+  (0.1ms) begin transaction
13821
+ ----------------------------
13822
+ DocumentTest: test_the_truth
13823
+ ----------------------------
13824
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13825
+  (0.2ms) rollback transaction
13826
+  (0.1ms) begin transaction
13827
+ -----------------------------------------------------
13828
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13829
+ -----------------------------------------------------
13830
+  (0.1ms) rollback transaction
13831
+  (0.6ms) begin transaction
13832
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13833
+ 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-10-07 08:39:02')
13834
+ 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-10-07 08:39:02')
13835
+ 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-10-07 08:39:02')
13836
+  (0.9ms) commit transaction
13837
+  (0.1ms) begin transaction
13838
+ ---------------------------------
13839
+ ArticleTest: test_Ascending_order
13840
+ ---------------------------------
13841
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13842
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13843
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13844
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13845
+  (0.1ms) rollback transaction
13846
+  (0.1ms) begin transaction
13847
+ ----------------------------------
13848
+ ArticleTest: test_Descending_order
13849
+ ----------------------------------
13850
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13851
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13852
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13853
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13854
+  (0.1ms) rollback transaction
13855
+  (0.1ms) begin transaction
13856
+ ----------------------------------
13857
+ ArticleTest: test_Full_text_search
13858
+ ----------------------------------
13859
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13860
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13861
+  (0.1ms) rollback transaction
13862
+  (0.1ms) begin transaction
13863
+ Fixture Delete (0.2ms) DELETE FROM "documents"
13864
+ 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-10-07 08:39:03')
13865
+ 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-10-07 08:39:03')
13866
+  (0.8ms) commit transaction
13867
+  (0.1ms) begin transaction
13868
+ ----------------------------------
13869
+ DocumentTest: test_Search_document
13870
+ ----------------------------------
13871
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13872
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13873
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13874
+  (0.1ms) rollback transaction
13875
+  (0.1ms) begin transaction
13876
+ ----------------------------
13877
+ DocumentTest: test_the_truth
13878
+ ----------------------------
13879
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13880
+  (0.2ms) rollback transaction
13881
+  (0.1ms) begin transaction
13882
+ -----------------------------------------------------
13883
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13884
+ -----------------------------------------------------
13885
+  (0.1ms) rollback transaction
13886
+  (0.7ms) begin transaction
13887
+ Fixture Delete (0.4ms) DELETE FROM "articles"
13888
+ 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-10-07 08:40:46')
13889
+ 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-10-07 08:40:46')
13890
+ 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-10-07 08:40:46')
13891
+  (0.7ms) commit transaction
13892
+  (0.1ms) begin transaction
13893
+ ---------------------------------
13894
+ ArticleTest: test_Ascending_order
13895
+ ---------------------------------
13896
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13897
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13898
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13899
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13900
+  (0.1ms) rollback transaction
13901
+  (0.1ms) begin transaction
13902
+ ----------------------------------
13903
+ ArticleTest: test_Descending_order
13904
+ ----------------------------------
13905
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13906
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13907
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13908
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13909
+  (0.1ms) rollback transaction
13910
+  (0.1ms) begin transaction
13911
+ ----------------------------------
13912
+ ArticleTest: test_Full_text_search
13913
+ ----------------------------------
13914
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13915
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13916
+  (0.1ms) rollback transaction
13917
+  (0.1ms) begin transaction
13918
+ Fixture Delete (0.5ms) DELETE FROM "documents"
13919
+ 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-10-07 08:40:47')
13920
+ 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-10-07 08:40:47')
13921
+  (0.8ms) commit transaction
13922
+  (0.1ms) begin transaction
13923
+ ----------------------------------
13924
+ DocumentTest: test_Search_document
13925
+ ----------------------------------
13926
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13927
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13928
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13929
+  (0.1ms) rollback transaction
13930
+  (0.1ms) begin transaction
13931
+ ----------------------------
13932
+ DocumentTest: test_the_truth
13933
+ ----------------------------
13934
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13935
+  (0.2ms) rollback transaction
13936
+  (0.1ms) begin transaction
13937
+ -----------------------------------------------------
13938
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13939
+ -----------------------------------------------------
13940
+  (0.1ms) rollback transaction
13941
+  (0.5ms) begin transaction
13942
+ Fixture Delete (0.3ms) DELETE FROM "articles"
13943
+ 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-10-07 08:49:08')
13944
+ 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-10-07 08:49:08')
13945
+ 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-10-07 08:49:08')
13946
+  (0.7ms) commit transaction
13947
+  (0.1ms) begin transaction
13948
+ ---------------------------------
13949
+ ArticleTest: test_Ascending_order
13950
+ ---------------------------------
13951
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13952
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13953
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13954
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13955
+  (0.2ms) rollback transaction
13956
+  (0.2ms) begin transaction
13957
+ ----------------------------------
13958
+ ArticleTest: test_Descending_order
13959
+ ----------------------------------
13960
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13961
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
13962
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
13963
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13964
+  (0.1ms) rollback transaction
13965
+  (0.1ms) begin transaction
13966
+ ----------------------------------
13967
+ ArticleTest: test_Full_text_search
13968
+ ----------------------------------
13969
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
13970
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
13971
+  (0.2ms) rollback transaction
13972
+  (0.1ms) begin transaction
13973
+ Fixture Delete (0.3ms) DELETE FROM "documents"
13974
+ 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-10-07 08:49:09')
13975
+ 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-10-07 08:49:09')
13976
+  (0.7ms) commit transaction
13977
+  (0.1ms) begin transaction
13978
+ ----------------------------------
13979
+ DocumentTest: test_Search_document
13980
+ ----------------------------------
13981
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13982
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
13983
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
13984
+  (0.1ms) rollback transaction
13985
+  (0.1ms) begin transaction
13986
+ -----------------------------
13987
+ DocumentTest: test_Suggestion
13988
+ -----------------------------
13989
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13990
+  (0.2ms) rollback transaction
13991
+  (0.1ms) begin transaction
13992
+ ----------------------------
13993
+ DocumentTest: test_the_truth
13994
+ ----------------------------
13995
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
13996
+  (0.2ms) rollback transaction
13997
+  (0.1ms) begin transaction
13998
+ -----------------------------------------------------
13999
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14000
+ -----------------------------------------------------
14001
+  (0.1ms) rollback transaction
14002
+  (0.5ms) begin transaction
14003
+ Fixture Delete (0.3ms) DELETE FROM "articles"
14004
+ 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-10-07 08:50:26')
14005
+ 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-10-07 08:50:26')
14006
+ 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-10-07 08:50:26')
14007
+  (1.0ms) commit transaction
14008
+  (0.1ms) begin transaction
14009
+ ---------------------------------
14010
+ ArticleTest: test_Ascending_order
14011
+ ---------------------------------
14012
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14013
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14014
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14015
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14016
+  (0.1ms) rollback transaction
14017
+  (0.1ms) begin transaction
14018
+ ----------------------------------
14019
+ ArticleTest: test_Descending_order
14020
+ ----------------------------------
14021
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14022
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14023
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14024
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14025
+  (0.1ms) rollback transaction
14026
+  (0.1ms) begin transaction
14027
+ ----------------------------------
14028
+ ArticleTest: test_Full_text_search
14029
+ ----------------------------------
14030
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14031
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14032
+  (0.1ms) rollback transaction
14033
+  (0.1ms) begin transaction
14034
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14035
+ 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-10-07 08:50:27')
14036
+ 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-10-07 08:50:27')
14037
+  (0.6ms) commit transaction
14038
+  (0.1ms) begin transaction
14039
+ ----------------------------------
14040
+ DocumentTest: test_Search_document
14041
+ ----------------------------------
14042
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14043
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14044
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14045
+  (0.2ms) rollback transaction
14046
+  (0.1ms) begin transaction
14047
+ -----------------------------
14048
+ DocumentTest: test_Suggestion
14049
+ -----------------------------
14050
+ Document Load (2.5ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14051
+  (0.2ms) rollback transaction
14052
+  (0.1ms) begin transaction
14053
+ ----------------------------
14054
+ DocumentTest: test_the_truth
14055
+ ----------------------------
14056
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14057
+  (0.2ms) rollback transaction
14058
+  (0.1ms) begin transaction
14059
+ -----------------------------------------------------
14060
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14061
+ -----------------------------------------------------
14062
+  (0.1ms) rollback transaction
14063
+  (0.6ms) begin transaction
14064
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14065
+ 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-10-07 08:53:21')
14066
+ 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-10-07 08:53:21')
14067
+ 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-10-07 08:53:21')
14068
+  (0.7ms) commit transaction
14069
+  (0.1ms) begin transaction
14070
+ ---------------------------------
14071
+ ArticleTest: test_Ascending_order
14072
+ ---------------------------------
14073
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14074
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14075
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14076
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14077
+  (0.1ms) rollback transaction
14078
+  (0.1ms) begin transaction
14079
+ ----------------------------------
14080
+ ArticleTest: test_Descending_order
14081
+ ----------------------------------
14082
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14083
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14084
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14085
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14086
+  (0.1ms) rollback transaction
14087
+  (0.1ms) begin transaction
14088
+ ----------------------------------
14089
+ ArticleTest: test_Full_text_search
14090
+ ----------------------------------
14091
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14092
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14093
+  (0.1ms) rollback transaction
14094
+  (0.1ms) begin transaction
14095
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14096
+ 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-10-07 08:53:22')
14097
+ 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-10-07 08:53:22')
14098
+  (0.9ms) commit transaction
14099
+  (0.1ms) begin transaction
14100
+ ----------------------------------
14101
+ DocumentTest: test_Search_document
14102
+ ----------------------------------
14103
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14104
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14105
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14106
+  (0.1ms) rollback transaction
14107
+  (0.1ms) begin transaction
14108
+ -----------------------------
14109
+ DocumentTest: test_Suggestion
14110
+ -----------------------------
14111
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14112
+  (0.2ms) rollback transaction
14113
+  (0.1ms) begin transaction
14114
+ ----------------------------
14115
+ DocumentTest: test_the_truth
14116
+ ----------------------------
14117
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14118
+  (0.2ms) rollback transaction
14119
+  (0.1ms) begin transaction
14120
+ -----------------------------------------------------
14121
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14122
+ -----------------------------------------------------
14123
+  (0.1ms) rollback transaction
14124
+  (0.6ms) begin transaction
14125
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14126
+ 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-10-07 08:54:43')
14127
+ 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-10-07 08:54:43')
14128
+ 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-10-07 08:54:43')
14129
+  (0.9ms) commit transaction
14130
+  (0.1ms) begin transaction
14131
+ ---------------------------------
14132
+ ArticleTest: test_Ascending_order
14133
+ ---------------------------------
14134
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14135
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14136
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14137
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14138
+  (0.2ms) rollback transaction
14139
+  (0.2ms) begin transaction
14140
+ ----------------------------------
14141
+ ArticleTest: test_Descending_order
14142
+ ----------------------------------
14143
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14144
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14145
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14146
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14147
+  (0.1ms) rollback transaction
14148
+  (0.1ms) begin transaction
14149
+ ----------------------------------
14150
+ ArticleTest: test_Full_text_search
14151
+ ----------------------------------
14152
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14153
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14154
+  (0.1ms) rollback transaction
14155
+  (0.1ms) begin transaction
14156
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14157
+ 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-10-07 08:54:44')
14158
+ 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-10-07 08:54:44')
14159
+  (1.1ms) commit transaction
14160
+  (0.1ms) begin transaction
14161
+ ----------------------------------
14162
+ DocumentTest: test_Search_document
14163
+ ----------------------------------
14164
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14165
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14166
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14167
+  (0.1ms) rollback transaction
14168
+  (0.1ms) begin transaction
14169
+ -----------------------------
14170
+ DocumentTest: test_Suggestion
14171
+ -----------------------------
14172
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14173
+  (0.2ms) rollback transaction
14174
+  (0.1ms) begin transaction
14175
+ ----------------------------
14176
+ DocumentTest: test_the_truth
14177
+ ----------------------------
14178
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14179
+  (0.2ms) rollback transaction
14180
+  (0.1ms) begin transaction
14181
+ -----------------------------------------------------
14182
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14183
+ -----------------------------------------------------
14184
+  (0.1ms) rollback transaction
14185
+  (0.5ms) begin transaction
14186
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14187
+ 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-10-07 08:56:20')
14188
+ 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-10-07 08:56:20')
14189
+ 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-10-07 08:56:20')
14190
+  (1.0ms) commit transaction
14191
+  (0.1ms) begin transaction
14192
+ ---------------------------------
14193
+ ArticleTest: test_Ascending_order
14194
+ ---------------------------------
14195
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14196
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14197
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14198
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14199
+  (0.2ms) rollback transaction
14200
+  (0.2ms) begin transaction
14201
+ ----------------------------------
14202
+ ArticleTest: test_Descending_order
14203
+ ----------------------------------
14204
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14205
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14206
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14207
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14208
+  (0.1ms) rollback transaction
14209
+  (0.1ms) begin transaction
14210
+ ----------------------------------
14211
+ ArticleTest: test_Full_text_search
14212
+ ----------------------------------
14213
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14214
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14215
+  (0.1ms) rollback transaction
14216
+  (0.1ms) begin transaction
14217
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14218
+ 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-10-07 08:56:21')
14219
+ 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-10-07 08:56:21')
14220
+  (0.6ms) commit transaction
14221
+  (0.1ms) begin transaction
14222
+ ----------------------------------
14223
+ DocumentTest: test_Search_document
14224
+ ----------------------------------
14225
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14226
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14227
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14228
+  (0.1ms) rollback transaction
14229
+  (0.1ms) begin transaction
14230
+ -----------------------------
14231
+ DocumentTest: test_Suggestion
14232
+ -----------------------------
14233
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14234
+  (0.2ms) rollback transaction
14235
+  (0.1ms) begin transaction
14236
+ ----------------------------
14237
+ DocumentTest: test_the_truth
14238
+ ----------------------------
14239
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14240
+  (0.2ms) rollback transaction
14241
+  (0.1ms) begin transaction
14242
+ -----------------------------------------------------
14243
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14244
+ -----------------------------------------------------
14245
+  (0.1ms) rollback transaction
14246
+  (0.6ms) begin transaction
14247
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14248
+ 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-10-07 08:57:31')
14249
+ 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-10-07 08:57:31')
14250
+ 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-10-07 08:57:31')
14251
+  (0.8ms) commit transaction
14252
+  (0.1ms) begin transaction
14253
+ ---------------------------------
14254
+ ArticleTest: test_Ascending_order
14255
+ ---------------------------------
14256
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14257
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14258
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14259
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14260
+  (0.1ms) rollback transaction
14261
+  (0.1ms) begin transaction
14262
+ ----------------------------------
14263
+ ArticleTest: test_Descending_order
14264
+ ----------------------------------
14265
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14266
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14267
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14268
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14269
+  (0.1ms) rollback transaction
14270
+  (0.1ms) begin transaction
14271
+ ----------------------------------
14272
+ ArticleTest: test_Full_text_search
14273
+ ----------------------------------
14274
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14275
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14276
+  (0.1ms) rollback transaction
14277
+  (0.1ms) begin transaction
14278
+ Fixture Delete (0.2ms) DELETE FROM "documents"
14279
+ 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-10-07 08:57:32')
14280
+ 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-10-07 08:57:32')
14281
+  (1.0ms) commit transaction
14282
+  (0.1ms) begin transaction
14283
+ ----------------------------------
14284
+ DocumentTest: test_Search_document
14285
+ ----------------------------------
14286
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14287
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14288
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14289
+  (0.1ms) rollback transaction
14290
+  (0.1ms) begin transaction
14291
+ -----------------------------
14292
+ DocumentTest: test_Suggestion
14293
+ -----------------------------
14294
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14295
+  (0.2ms) rollback transaction
14296
+  (0.1ms) begin transaction
14297
+ ----------------------------
14298
+ DocumentTest: test_the_truth
14299
+ ----------------------------
14300
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14301
+  (0.2ms) rollback transaction
14302
+  (0.1ms) begin transaction
14303
+ -----------------------------------------------------
14304
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14305
+ -----------------------------------------------------
14306
+  (0.1ms) rollback transaction
14307
+  (0.5ms) begin transaction
14308
+ Fixture Delete (0.6ms) DELETE FROM "articles"
14309
+ 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-10-07 08:57:51')
14310
+ 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-10-07 08:57:51')
14311
+ 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-10-07 08:57:51')
14312
+  (1.2ms) commit transaction
14313
+  (0.1ms) begin transaction
14314
+ ---------------------------------
14315
+ ArticleTest: test_Ascending_order
14316
+ ---------------------------------
14317
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14318
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14319
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14320
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14321
+  (0.1ms) rollback transaction
14322
+  (0.1ms) begin transaction
14323
+ ----------------------------------
14324
+ ArticleTest: test_Descending_order
14325
+ ----------------------------------
14326
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14327
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14328
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14329
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14330
+  (0.1ms) rollback transaction
14331
+  (0.1ms) begin transaction
14332
+ ----------------------------------
14333
+ ArticleTest: test_Full_text_search
14334
+ ----------------------------------
14335
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14336
+  (0.2ms) rollback transaction
14337
+  (0.1ms) begin transaction
14338
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14339
+ 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-10-07 08:57:52')
14340
+ 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-10-07 08:57:52')
14341
+  (0.7ms) commit transaction
14342
+  (0.1ms) begin transaction
14343
+ ----------------------------------
14344
+ DocumentTest: test_Search_document
14345
+ ----------------------------------
14346
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14347
+  (0.2ms) rollback transaction
14348
+  (0.1ms) begin transaction
14349
+ -----------------------------
14350
+ DocumentTest: test_Suggestion
14351
+ -----------------------------
14352
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14353
+  (0.2ms) rollback transaction
14354
+  (0.1ms) begin transaction
14355
+ ----------------------------
14356
+ DocumentTest: test_the_truth
14357
+ ----------------------------
14358
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14359
+  (0.2ms) rollback transaction
14360
+  (0.1ms) begin transaction
14361
+ -----------------------------------------------------
14362
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14363
+ -----------------------------------------------------
14364
+  (0.1ms) rollback transaction
14365
+  (0.6ms) begin transaction
14366
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14367
+ 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-10-07 08:58:02')
14368
+ 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-10-07 08:58:02')
14369
+ 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-10-07 08:58:02')
14370
+  (0.7ms) commit transaction
14371
+  (0.1ms) begin transaction
14372
+ ---------------------------------
14373
+ ArticleTest: test_Ascending_order
14374
+ ---------------------------------
14375
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14376
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14377
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14378
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14379
+  (0.3ms) rollback transaction
14380
+  (0.2ms) begin transaction
14381
+ ----------------------------------
14382
+ ArticleTest: test_Descending_order
14383
+ ----------------------------------
14384
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14385
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14386
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14387
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14388
+  (0.2ms) rollback transaction
14389
+  (0.1ms) begin transaction
14390
+ ----------------------------------
14391
+ ArticleTest: test_Full_text_search
14392
+ ----------------------------------
14393
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14394
+  (0.2ms) rollback transaction
14395
+  (0.2ms) begin transaction
14396
+ Fixture Delete (0.4ms) DELETE FROM "documents"
14397
+ Fixture Insert (0.4ms) 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-10-07 08:58:03')
14398
+ 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 (2, 2, 2, 'another amazing document', '2013-07-11 17:06:19.000000', 1, 2, 2, 'application/xml', 'MyString', '2013-10-07 08:58:03')
14399
+  (0.7ms) commit transaction
14400
+  (0.1ms) begin transaction
14401
+ ----------------------------------
14402
+ DocumentTest: test_Search_document
14403
+ ----------------------------------
14404
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14405
+  (0.2ms) rollback transaction
14406
+  (0.1ms) begin transaction
14407
+ -----------------------------
14408
+ DocumentTest: test_Suggestion
14409
+ -----------------------------
14410
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14411
+  (0.2ms) rollback transaction
14412
+  (0.2ms) begin transaction
14413
+ ----------------------------
14414
+ DocumentTest: test_the_truth
14415
+ ----------------------------
14416
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14417
+  (0.2ms) rollback transaction
14418
+  (0.1ms) begin transaction
14419
+ -----------------------------------------------------
14420
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14421
+ -----------------------------------------------------
14422
+  (0.2ms) rollback transaction
14423
+  (0.8ms) begin transaction
14424
+ Fixture Delete (0.5ms) DELETE FROM "articles"
14425
+ 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-10-07 08:59:06')
14426
+ 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-10-07 08:59:06')
14427
+ 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-10-07 08:59:06')
14428
+  (0.7ms) commit transaction
14429
+  (0.1ms) begin transaction
14430
+ ---------------------------------
14431
+ ArticleTest: test_Ascending_order
14432
+ ---------------------------------
14433
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14434
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14435
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14436
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14437
+  (0.2ms) rollback transaction
14438
+  (0.2ms) begin transaction
14439
+ ----------------------------------
14440
+ ArticleTest: test_Descending_order
14441
+ ----------------------------------
14442
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14443
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14444
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14445
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14446
+  (0.1ms) rollback transaction
14447
+  (0.1ms) begin transaction
14448
+ ----------------------------------
14449
+ ArticleTest: test_Full_text_search
14450
+ ----------------------------------
14451
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14452
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14453
+  (0.2ms) rollback transaction
14454
+  (0.2ms) begin transaction
14455
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14456
+ 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-10-07 08:59:07')
14457
+ 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-10-07 08:59:07')
14458
+  (1.0ms) commit transaction
14459
+  (0.1ms) begin transaction
14460
+ ----------------------------------
14461
+ DocumentTest: test_Search_document
14462
+ ----------------------------------
14463
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14464
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14465
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14466
+  (0.1ms) rollback transaction
14467
+  (0.1ms) begin transaction
14468
+ -----------------------------
14469
+ DocumentTest: test_Suggestion
14470
+ -----------------------------
14471
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14472
+  (0.2ms) rollback transaction
14473
+  (0.1ms) begin transaction
14474
+ ----------------------------
14475
+ DocumentTest: test_the_truth
14476
+ ----------------------------
14477
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14478
+  (0.2ms) rollback transaction
14479
+  (0.1ms) begin transaction
14480
+ -----------------------------------------------------
14481
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14482
+ -----------------------------------------------------
14483
+  (0.1ms) rollback transaction
14484
+  (0.5ms) begin transaction
14485
+ Fixture Delete (0.3ms) DELETE FROM "articles"
14486
+ 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-10-07 09:02:52')
14487
+ 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-10-07 09:02:52')
14488
+ 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-10-07 09:02:52')
14489
+  (1.0ms) commit transaction
14490
+  (0.1ms) begin transaction
14491
+ ---------------------------------
14492
+ ArticleTest: test_Ascending_order
14493
+ ---------------------------------
14494
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14495
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14496
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14497
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14498
+  (0.1ms) rollback transaction
14499
+  (0.1ms) begin transaction
14500
+ ----------------------------------
14501
+ ArticleTest: test_Descending_order
14502
+ ----------------------------------
14503
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14504
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14505
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14506
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14507
+  (0.1ms) rollback transaction
14508
+  (0.1ms) begin transaction
14509
+ ----------------------------------
14510
+ ArticleTest: test_Full_text_search
14511
+ ----------------------------------
14512
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14513
+  (0.2ms) rollback transaction
14514
+  (0.1ms) begin transaction
14515
+ Fixture Delete (0.2ms) DELETE FROM "documents"
14516
+ 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-10-07 09:02:53')
14517
+ 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-10-07 09:02:53')
14518
+  (1.1ms) commit transaction
14519
+  (0.1ms) begin transaction
14520
+ ----------------------------------
14521
+ DocumentTest: test_Search_document
14522
+ ----------------------------------
14523
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14524
+  (0.2ms) rollback transaction
14525
+  (0.1ms) begin transaction
14526
+ -----------------------------
14527
+ DocumentTest: test_Suggestion
14528
+ -----------------------------
14529
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14530
+  (0.2ms) rollback transaction
14531
+  (0.1ms) begin transaction
14532
+ ----------------------------
14533
+ DocumentTest: test_the_truth
14534
+ ----------------------------
14535
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14536
+  (0.2ms) rollback transaction
14537
+  (0.1ms) begin transaction
14538
+ -----------------------------------------------------
14539
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14540
+ -----------------------------------------------------
14541
+  (0.1ms) rollback transaction
14542
+  (0.5ms) begin transaction
14543
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14544
+ 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-10-07 09:03:19')
14545
+ 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-10-07 09:03:19')
14546
+ 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-10-07 09:03:19')
14547
+  (1.2ms) commit transaction
14548
+  (0.1ms) begin transaction
14549
+ ---------------------------------
14550
+ ArticleTest: test_Ascending_order
14551
+ ---------------------------------
14552
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14553
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14554
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14555
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14556
+  (0.1ms) rollback transaction
14557
+  (0.1ms) begin transaction
14558
+ ----------------------------------
14559
+ ArticleTest: test_Descending_order
14560
+ ----------------------------------
14561
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14562
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14563
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14564
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14565
+  (0.1ms) rollback transaction
14566
+  (0.1ms) begin transaction
14567
+ ----------------------------------
14568
+ ArticleTest: test_Full_text_search
14569
+ ----------------------------------
14570
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14571
+  (0.2ms) rollback transaction
14572
+  (0.1ms) begin transaction
14573
+ Fixture Delete (0.2ms) DELETE FROM "documents"
14574
+ 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-10-07 09:03:19')
14575
+ 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-10-07 09:03:19')
14576
+  (0.9ms) commit transaction
14577
+  (0.1ms) begin transaction
14578
+ ----------------------------------
14579
+ DocumentTest: test_Search_document
14580
+ ----------------------------------
14581
+ Document Load (0.6ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14582
+  (0.2ms) rollback transaction
14583
+  (0.1ms) begin transaction
14584
+ -----------------------------
14585
+ DocumentTest: test_Suggestion
14586
+ -----------------------------
14587
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14588
+  (0.2ms) rollback transaction
14589
+  (0.1ms) begin transaction
14590
+ ----------------------------
14591
+ DocumentTest: test_the_truth
14592
+ ----------------------------
14593
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14594
+  (0.2ms) rollback transaction
14595
+  (0.1ms) begin transaction
14596
+ -----------------------------------------------------
14597
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14598
+ -----------------------------------------------------
14599
+  (0.1ms) rollback transaction
14600
+  (0.5ms) begin transaction
14601
+ Fixture Delete (0.3ms) DELETE FROM "articles"
14602
+ 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-10-07 09:03:38')
14603
+ 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-10-07 09:03:38')
14604
+ 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-10-07 09:03:38')
14605
+  (1.2ms) commit transaction
14606
+  (0.1ms) begin transaction
14607
+ ---------------------------------
14608
+ ArticleTest: test_Ascending_order
14609
+ ---------------------------------
14610
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14611
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14612
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14613
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14614
+  (0.2ms) rollback transaction
14615
+  (0.2ms) begin transaction
14616
+ ----------------------------------
14617
+ ArticleTest: test_Descending_order
14618
+ ----------------------------------
14619
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14620
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14621
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14622
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14623
+  (0.1ms) rollback transaction
14624
+  (0.1ms) begin transaction
14625
+ ----------------------------------
14626
+ ArticleTest: test_Full_text_search
14627
+ ----------------------------------
14628
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14629
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14630
+  (0.1ms) rollback transaction
14631
+  (0.1ms) begin transaction
14632
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14633
+ 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-10-07 09:03:39')
14634
+ 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-10-07 09:03:39')
14635
+  (0.7ms) commit transaction
14636
+  (0.1ms) begin transaction
14637
+ ----------------------------------
14638
+ DocumentTest: test_Search_document
14639
+ ----------------------------------
14640
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14641
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14642
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14643
+  (0.2ms) rollback transaction
14644
+  (0.1ms) begin transaction
14645
+ -----------------------------
14646
+ DocumentTest: test_Suggestion
14647
+ -----------------------------
14648
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14649
+  (0.2ms) rollback transaction
14650
+  (0.1ms) begin transaction
14651
+ ----------------------------
14652
+ DocumentTest: test_the_truth
14653
+ ----------------------------
14654
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14655
+  (0.2ms) rollback transaction
14656
+  (0.1ms) begin transaction
14657
+ -----------------------------------------------------
14658
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14659
+ -----------------------------------------------------
14660
+  (0.1ms) rollback transaction
14661
+  (0.5ms) begin transaction
14662
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14663
+ 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-10-07 09:05:27')
14664
+ 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-10-07 09:05:27')
14665
+ 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-10-07 09:05:27')
14666
+  (0.8ms) commit transaction
14667
+  (0.1ms) begin transaction
14668
+ ---------------------------------
14669
+ ArticleTest: test_Ascending_order
14670
+ ---------------------------------
14671
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14672
+  (0.3ms) rollback transaction
14673
+  (0.2ms) begin transaction
14674
+ ----------------------------------
14675
+ ArticleTest: test_Descending_order
14676
+ ----------------------------------
14677
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14678
+  (0.2ms) rollback transaction
14679
+  (0.1ms) begin transaction
14680
+ ----------------------------------
14681
+ ArticleTest: test_Full_text_search
14682
+ ----------------------------------
14683
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14684
+  (0.1ms) rollback transaction
14685
+  (0.1ms) begin transaction
14686
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14687
+ 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-10-07 09:05:28')
14688
+ 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-10-07 09:05:28')
14689
+  (1.2ms) commit transaction
14690
+  (0.1ms) begin transaction
14691
+ ----------------------------------
14692
+ DocumentTest: test_Search_document
14693
+ ----------------------------------
14694
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14695
+  (0.2ms) rollback transaction
14696
+  (0.1ms) begin transaction
14697
+ -----------------------------
14698
+ DocumentTest: test_Suggestion
14699
+ -----------------------------
14700
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14701
+  (0.2ms) rollback transaction
14702
+  (0.1ms) begin transaction
14703
+ ----------------------------
14704
+ DocumentTest: test_the_truth
14705
+ ----------------------------
14706
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14707
+  (0.2ms) rollback transaction
14708
+  (0.1ms) begin transaction
14709
+ -----------------------------------------------------
14710
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14711
+ -----------------------------------------------------
14712
+  (0.1ms) rollback transaction
14713
+  (0.5ms) begin transaction
14714
+ Fixture Delete (0.3ms) DELETE FROM "articles"
14715
+ 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-10-07 09:05:54')
14716
+ 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-10-07 09:05:54')
14717
+ 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-10-07 09:05:54')
14718
+  (0.7ms) commit transaction
14719
+  (0.1ms) begin transaction
14720
+ ---------------------------------
14721
+ ArticleTest: test_Ascending_order
14722
+ ---------------------------------
14723
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14724
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14725
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14726
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14727
+  (0.2ms) rollback transaction
14728
+  (0.2ms) begin transaction
14729
+ ----------------------------------
14730
+ ArticleTest: test_Descending_order
14731
+ ----------------------------------
14732
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14733
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14734
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14735
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14736
+  (0.1ms) rollback transaction
14737
+  (0.1ms) begin transaction
14738
+ ----------------------------------
14739
+ ArticleTest: test_Full_text_search
14740
+ ----------------------------------
14741
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14742
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14743
+  (0.3ms) rollback transaction
14744
+  (0.2ms) begin transaction
14745
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14746
+ 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-10-07 09:05:55')
14747
+ 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-10-07 09:05:55')
14748
+  (1.2ms) commit transaction
14749
+  (0.1ms) begin transaction
14750
+ ----------------------------------
14751
+ DocumentTest: test_Search_document
14752
+ ----------------------------------
14753
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14754
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14755
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14756
+  (0.1ms) rollback transaction
14757
+  (0.1ms) begin transaction
14758
+ -----------------------------
14759
+ DocumentTest: test_Suggestion
14760
+ -----------------------------
14761
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14762
+  (0.2ms) rollback transaction
14763
+  (0.1ms) begin transaction
14764
+ ----------------------------
14765
+ DocumentTest: test_the_truth
14766
+ ----------------------------
14767
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14768
+  (0.3ms) rollback transaction
14769
+  (0.1ms) begin transaction
14770
+ -----------------------------------------------------
14771
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14772
+ -----------------------------------------------------
14773
+  (0.1ms) rollback transaction
14774
+  (0.7ms) begin transaction
14775
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14776
+ 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-10-07 09:07:12')
14777
+ 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-10-07 09:07:12')
14778
+ 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-10-07 09:07:12')
14779
+  (1.0ms) commit transaction
14780
+  (0.1ms) begin transaction
14781
+ ---------------------------------
14782
+ ArticleTest: test_Ascending_order
14783
+ ---------------------------------
14784
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14785
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14786
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14787
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14788
+  (0.2ms) rollback transaction
14789
+  (0.2ms) begin transaction
14790
+ ----------------------------------
14791
+ ArticleTest: test_Descending_order
14792
+ ----------------------------------
14793
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14794
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14795
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14796
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14797
+  (0.1ms) rollback transaction
14798
+  (0.1ms) begin transaction
14799
+ ----------------------------------
14800
+ ArticleTest: test_Full_text_search
14801
+ ----------------------------------
14802
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14803
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14804
+  (0.1ms) rollback transaction
14805
+  (0.1ms) begin transaction
14806
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14807
+ 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-10-07 09:07:12')
14808
+ 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-10-07 09:07:12')
14809
+  (0.7ms) commit transaction
14810
+  (0.1ms) begin transaction
14811
+ ----------------------------------
14812
+ DocumentTest: test_Search_document
14813
+ ----------------------------------
14814
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14815
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14816
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14817
+  (0.2ms) rollback transaction
14818
+  (0.1ms) begin transaction
14819
+ -----------------------------
14820
+ DocumentTest: test_Suggestion
14821
+ -----------------------------
14822
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14823
+  (0.2ms) rollback transaction
14824
+  (0.1ms) begin transaction
14825
+ ----------------------------
14826
+ DocumentTest: test_the_truth
14827
+ ----------------------------
14828
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14829
+  (0.2ms) rollback transaction
14830
+  (0.1ms) begin transaction
14831
+ -----------------------------------------------------
14832
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14833
+ -----------------------------------------------------
14834
+  (0.1ms) rollback transaction
14835
+  (1.1ms) begin transaction
14836
+ Fixture Delete (0.4ms) DELETE FROM "articles"
14837
+ 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-10-07 09:11:05')
14838
+ 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-10-07 09:11:05')
14839
+ 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-10-07 09:11:05')
14840
+  (1.2ms) commit transaction
14841
+  (0.1ms) begin transaction
14842
+ ---------------------------------
14843
+ ArticleTest: test_Ascending_order
14844
+ ---------------------------------
14845
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14846
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14847
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14848
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14849
+  (0.2ms) rollback transaction
14850
+  (0.2ms) begin transaction
14851
+ ----------------------------------
14852
+ ArticleTest: test_Descending_order
14853
+ ----------------------------------
14854
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14855
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14856
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14857
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14858
+  (0.1ms) rollback transaction
14859
+  (0.1ms) begin transaction
14860
+ ----------------------------------
14861
+ ArticleTest: test_Full_text_search
14862
+ ----------------------------------
14863
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14864
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14865
+  (0.1ms) rollback transaction
14866
+  (0.2ms) begin transaction
14867
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14868
+ 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-10-07 09:11:06')
14869
+ 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-10-07 09:11:06')
14870
+  (0.7ms) commit transaction
14871
+  (0.1ms) begin transaction
14872
+ ----------------------------------
14873
+ DocumentTest: test_Search_document
14874
+ ----------------------------------
14875
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14876
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14877
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14878
+  (0.1ms) rollback transaction
14879
+  (0.2ms) begin transaction
14880
+ -----------------------------
14881
+ DocumentTest: test_Suggestion
14882
+ -----------------------------
14883
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14884
+  (0.2ms) rollback transaction
14885
+  (0.1ms) begin transaction
14886
+ ----------------------------
14887
+ DocumentTest: test_the_truth
14888
+ ----------------------------
14889
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14890
+  (0.2ms) rollback transaction
14891
+  (0.1ms) begin transaction
14892
+ -----------------------------------------------------
14893
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14894
+ -----------------------------------------------------
14895
+  (0.1ms) rollback transaction
14896
+  (0.8ms) begin transaction
14897
+ Fixture Delete (0.5ms) DELETE FROM "articles"
14898
+ 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-10-07 09:12:19')
14899
+ 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-10-07 09:12:19')
14900
+ 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-10-07 09:12:19')
14901
+  (0.7ms) commit transaction
14902
+  (0.1ms) begin transaction
14903
+ ---------------------------------
14904
+ ArticleTest: test_Ascending_order
14905
+ ---------------------------------
14906
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14907
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14908
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14909
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14910
+  (0.2ms) rollback transaction
14911
+  (0.2ms) begin transaction
14912
+ ----------------------------------
14913
+ ArticleTest: test_Descending_order
14914
+ ----------------------------------
14915
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14916
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14917
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14918
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14919
+  (0.1ms) rollback transaction
14920
+  (0.1ms) begin transaction
14921
+ ----------------------------------
14922
+ ArticleTest: test_Full_text_search
14923
+ ----------------------------------
14924
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14925
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14926
+  (0.1ms) rollback transaction
14927
+  (0.2ms) begin transaction
14928
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14929
+ 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-10-07 09:12:20')
14930
+ 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-10-07 09:12:20')
14931
+  (1.1ms) commit transaction
14932
+  (0.1ms) begin transaction
14933
+ ----------------------------------
14934
+ DocumentTest: test_Search_document
14935
+ ----------------------------------
14936
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14937
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14938
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
14939
+  (0.1ms) rollback transaction
14940
+  (0.1ms) begin transaction
14941
+ -----------------------------
14942
+ DocumentTest: test_Suggestion
14943
+ -----------------------------
14944
+ Document Load (0.5ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14945
+  (0.2ms) rollback transaction
14946
+  (0.1ms) begin transaction
14947
+ ----------------------------
14948
+ DocumentTest: test_the_truth
14949
+ ----------------------------
14950
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14951
+  (0.2ms) rollback transaction
14952
+  (0.1ms) begin transaction
14953
+ -----------------------------------------------------
14954
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
14955
+ -----------------------------------------------------
14956
+  (0.1ms) rollback transaction
14957
+  (0.7ms) begin transaction
14958
+ Fixture Delete (0.5ms) DELETE FROM "articles"
14959
+ Fixture Insert (0.4ms) 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-10-07 09:13:05')
14960
+ 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-10-07 09:13:05')
14961
+ 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-10-07 09:13:05')
14962
+  (0.6ms) commit transaction
14963
+  (0.1ms) begin transaction
14964
+ ---------------------------------
14965
+ ArticleTest: test_Ascending_order
14966
+ ---------------------------------
14967
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14968
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14969
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14970
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14971
+  (0.1ms) rollback transaction
14972
+  (0.1ms) begin transaction
14973
+ ----------------------------------
14974
+ ArticleTest: test_Descending_order
14975
+ ----------------------------------
14976
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14977
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
14978
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
14979
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14980
+  (0.1ms) rollback transaction
14981
+  (0.1ms) begin transaction
14982
+ ----------------------------------
14983
+ ArticleTest: test_Full_text_search
14984
+ ----------------------------------
14985
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
14986
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
14987
+  (0.1ms) rollback transaction
14988
+  (0.1ms) begin transaction
14989
+ Fixture Delete (0.3ms) DELETE FROM "documents"
14990
+ 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-10-07 09:13:06')
14991
+ 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-10-07 09:13:06')
14992
+  (1.1ms) commit transaction
14993
+  (0.1ms) begin transaction
14994
+ ----------------------------------
14995
+ DocumentTest: test_Search_document
14996
+ ----------------------------------
14997
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
14998
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
14999
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15000
+  (0.1ms) rollback transaction
15001
+  (0.1ms) begin transaction
15002
+ -----------------------------
15003
+ DocumentTest: test_Suggestion
15004
+ -----------------------------
15005
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15006
+  (0.2ms) rollback transaction
15007
+  (0.1ms) begin transaction
15008
+ ----------------------------
15009
+ DocumentTest: test_the_truth
15010
+ ----------------------------
15011
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15012
+  (0.2ms) rollback transaction
15013
+  (0.1ms) begin transaction
15014
+ -----------------------------------------------------
15015
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15016
+ -----------------------------------------------------
15017
+  (0.1ms) rollback transaction
15018
+  (0.8ms) begin transaction
15019
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15020
+ 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-10-07 09:13:38')
15021
+ 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-10-07 09:13:38')
15022
+ 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-10-07 09:13:38')
15023
+  (0.8ms) commit transaction
15024
+  (0.1ms) begin transaction
15025
+ ---------------------------------
15026
+ ArticleTest: test_Ascending_order
15027
+ ---------------------------------
15028
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15029
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15030
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15031
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15032
+  (0.3ms) rollback transaction
15033
+  (0.2ms) begin transaction
15034
+ ----------------------------------
15035
+ ArticleTest: test_Descending_order
15036
+ ----------------------------------
15037
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15038
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15039
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15040
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15041
+  (0.1ms) rollback transaction
15042
+  (0.1ms) begin transaction
15043
+ ----------------------------------
15044
+ ArticleTest: test_Full_text_search
15045
+ ----------------------------------
15046
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15047
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15048
+  (0.2ms) rollback transaction
15049
+  (0.2ms) begin transaction
15050
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15051
+ 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-10-07 09:13:39')
15052
+ 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-10-07 09:13:39')
15053
+  (0.8ms) commit transaction
15054
+  (0.1ms) begin transaction
15055
+ ----------------------------------
15056
+ DocumentTest: test_Search_document
15057
+ ----------------------------------
15058
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15059
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15060
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15061
+  (0.1ms) rollback transaction
15062
+  (0.1ms) begin transaction
15063
+ -----------------------------
15064
+ DocumentTest: test_Suggestion
15065
+ -----------------------------
15066
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15067
+  (0.2ms) rollback transaction
15068
+  (0.1ms) begin transaction
15069
+ ----------------------------
15070
+ DocumentTest: test_the_truth
15071
+ ----------------------------
15072
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15073
+  (0.2ms) rollback transaction
15074
+  (0.1ms) begin transaction
15075
+ -----------------------------------------------------
15076
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15077
+ -----------------------------------------------------
15078
+  (0.1ms) rollback transaction
15079
+  (0.6ms) begin transaction
15080
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15081
+ 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-10-07 09:14:59')
15082
+ 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-10-07 09:14:59')
15083
+ 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-10-07 09:14:59')
15084
+  (0.9ms) commit transaction
15085
+  (0.1ms) begin transaction
15086
+ ---------------------------------
15087
+ ArticleTest: test_Ascending_order
15088
+ ---------------------------------
15089
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15090
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15091
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15092
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15093
+  (0.2ms) rollback transaction
15094
+  (0.2ms) begin transaction
15095
+ ----------------------------------
15096
+ ArticleTest: test_Descending_order
15097
+ ----------------------------------
15098
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15099
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15100
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15101
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15102
+  (0.1ms) rollback transaction
15103
+  (0.1ms) begin transaction
15104
+ ----------------------------------
15105
+ ArticleTest: test_Full_text_search
15106
+ ----------------------------------
15107
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15108
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15109
+  (0.1ms) rollback transaction
15110
+  (0.1ms) begin transaction
15111
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15112
+ 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-10-07 09:15:00')
15113
+ 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-10-07 09:15:00')
15114
+  (0.9ms) commit transaction
15115
+  (0.1ms) begin transaction
15116
+ ----------------------------------
15117
+ DocumentTest: test_Search_document
15118
+ ----------------------------------
15119
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15120
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15121
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15122
+  (0.1ms) rollback transaction
15123
+  (0.1ms) begin transaction
15124
+ -----------------------------
15125
+ DocumentTest: test_Suggestion
15126
+ -----------------------------
15127
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15128
+  (0.2ms) rollback transaction
15129
+  (0.1ms) begin transaction
15130
+ ----------------------------
15131
+ DocumentTest: test_the_truth
15132
+ ----------------------------
15133
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15134
+  (0.2ms) rollback transaction
15135
+  (0.1ms) begin transaction
15136
+ -----------------------------------------------------
15137
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15138
+ -----------------------------------------------------
15139
+  (0.1ms) rollback transaction
15140
+  (0.5ms) begin transaction
15141
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15142
+ 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-10-07 09:15:58')
15143
+ 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-10-07 09:15:58')
15144
+ 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-10-07 09:15:58')
15145
+  (1.1ms) commit transaction
15146
+  (0.1ms) begin transaction
15147
+ ---------------------------------
15148
+ ArticleTest: test_Ascending_order
15149
+ ---------------------------------
15150
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15151
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15152
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15153
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15154
+  (0.2ms) rollback transaction
15155
+  (0.2ms) begin transaction
15156
+ ----------------------------------
15157
+ ArticleTest: test_Descending_order
15158
+ ----------------------------------
15159
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15160
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15161
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15162
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15163
+  (0.1ms) rollback transaction
15164
+  (0.1ms) begin transaction
15165
+ ----------------------------------
15166
+ ArticleTest: test_Full_text_search
15167
+ ----------------------------------
15168
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15169
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15170
+  (0.1ms) rollback transaction
15171
+  (0.1ms) begin transaction
15172
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15173
+ 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-10-07 09:15:59')
15174
+ 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-10-07 09:15:59')
15175
+  (1.2ms) commit transaction
15176
+  (0.1ms) begin transaction
15177
+ ----------------------------------
15178
+ DocumentTest: test_Search_document
15179
+ ----------------------------------
15180
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15181
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15182
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15183
+  (0.1ms) rollback transaction
15184
+  (0.1ms) begin transaction
15185
+ -----------------------------
15186
+ DocumentTest: test_Suggestion
15187
+ -----------------------------
15188
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15189
+  (0.2ms) rollback transaction
15190
+  (0.1ms) begin transaction
15191
+ ----------------------------
15192
+ DocumentTest: test_the_truth
15193
+ ----------------------------
15194
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15195
+  (0.2ms) rollback transaction
15196
+  (0.1ms) begin transaction
15197
+ -----------------------------------------------------
15198
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15199
+ -----------------------------------------------------
15200
+  (0.1ms) rollback transaction
15201
+  (0.5ms) begin transaction
15202
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15203
+ 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-10-07 09:18:01')
15204
+ 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-10-07 09:18:01')
15205
+ 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-10-07 09:18:01')
15206
+  (0.9ms) commit transaction
15207
+  (0.1ms) begin transaction
15208
+ ---------------------------------
15209
+ ArticleTest: test_Ascending_order
15210
+ ---------------------------------
15211
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15212
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15213
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15214
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15215
+  (0.2ms) rollback transaction
15216
+  (0.2ms) begin transaction
15217
+ ----------------------------------
15218
+ ArticleTest: test_Descending_order
15219
+ ----------------------------------
15220
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15221
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15222
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15223
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15224
+  (0.1ms) rollback transaction
15225
+  (0.1ms) begin transaction
15226
+ ----------------------------------
15227
+ ArticleTest: test_Full_text_search
15228
+ ----------------------------------
15229
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15230
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15231
+  (0.1ms) rollback transaction
15232
+  (0.1ms) begin transaction
15233
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15234
+ 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-10-07 09:18:02')
15235
+ 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-10-07 09:18:02')
15236
+  (1.2ms) commit transaction
15237
+  (0.1ms) begin transaction
15238
+ ----------------------------------
15239
+ DocumentTest: test_Search_document
15240
+ ----------------------------------
15241
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15242
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15243
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15244
+  (0.1ms) rollback transaction
15245
+  (0.1ms) begin transaction
15246
+ -----------------------------
15247
+ DocumentTest: test_Suggestion
15248
+ -----------------------------
15249
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15250
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15251
+  (0.1ms) rollback transaction
15252
+  (0.1ms) begin transaction
15253
+ ----------------------------
15254
+ DocumentTest: test_the_truth
15255
+ ----------------------------
15256
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15257
+  (0.2ms) rollback transaction
15258
+  (0.1ms) begin transaction
15259
+ -----------------------------------------------------
15260
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15261
+ -----------------------------------------------------
15262
+  (0.1ms) rollback transaction
15263
+  (0.5ms) begin transaction
15264
+ Fixture Delete (0.9ms) DELETE FROM "articles"
15265
+ 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-10-07 09:18:23')
15266
+ 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-10-07 09:18:23')
15267
+ 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-10-07 09:18:23')
15268
+  (1.2ms) commit transaction
15269
+  (0.1ms) begin transaction
15270
+ ---------------------------------
15271
+ ArticleTest: test_Ascending_order
15272
+ ---------------------------------
15273
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15274
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15275
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15276
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15277
+  (0.2ms) rollback transaction
15278
+  (0.2ms) begin transaction
15279
+ ----------------------------------
15280
+ ArticleTest: test_Descending_order
15281
+ ----------------------------------
15282
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15283
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15284
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15285
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15286
+  (0.1ms) rollback transaction
15287
+  (0.1ms) begin transaction
15288
+ ----------------------------------
15289
+ ArticleTest: test_Full_text_search
15290
+ ----------------------------------
15291
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15292
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15293
+  (0.1ms) rollback transaction
15294
+  (0.1ms) begin transaction
15295
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15296
+ 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-10-07 09:18:24')
15297
+ 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-10-07 09:18:24')
15298
+  (1.0ms) commit transaction
15299
+  (0.1ms) begin transaction
15300
+ ----------------------------------
15301
+ DocumentTest: test_Search_document
15302
+ ----------------------------------
15303
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15304
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15305
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15306
+  (0.2ms) rollback transaction
15307
+  (0.2ms) begin transaction
15308
+ -----------------------------
15309
+ DocumentTest: test_Suggestion
15310
+ -----------------------------
15311
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15312
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15313
+  (0.1ms) rollback transaction
15314
+  (0.1ms) begin transaction
15315
+ ----------------------------
15316
+ DocumentTest: test_the_truth
15317
+ ----------------------------
15318
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15319
+  (0.2ms) rollback transaction
15320
+  (0.1ms) begin transaction
15321
+ -----------------------------------------------------
15322
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15323
+ -----------------------------------------------------
15324
+  (0.1ms) rollback transaction
15325
+  (0.7ms) begin transaction
15326
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15327
+ 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-10-07 09:18:41')
15328
+ 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-10-07 09:18:41')
15329
+ 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-10-07 09:18:41')
15330
+  (0.7ms) commit transaction
15331
+  (0.1ms) begin transaction
15332
+ ---------------------------------
15333
+ ArticleTest: test_Ascending_order
15334
+ ---------------------------------
15335
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15336
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15337
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15338
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15339
+  (0.2ms) rollback transaction
15340
+  (0.2ms) begin transaction
15341
+ ----------------------------------
15342
+ ArticleTest: test_Descending_order
15343
+ ----------------------------------
15344
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15345
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15346
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15347
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15348
+  (0.1ms) rollback transaction
15349
+  (0.1ms) begin transaction
15350
+ ----------------------------------
15351
+ ArticleTest: test_Full_text_search
15352
+ ----------------------------------
15353
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15354
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15355
+  (0.1ms) rollback transaction
15356
+  (0.1ms) begin transaction
15357
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15358
+ 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-10-07 09:18:42')
15359
+ 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-10-07 09:18:42')
15360
+  (0.7ms) commit transaction
15361
+  (0.1ms) begin transaction
15362
+ ----------------------------------
15363
+ DocumentTest: test_Search_document
15364
+ ----------------------------------
15365
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15366
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15367
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15368
+  (0.1ms) rollback transaction
15369
+  (0.1ms) begin transaction
15370
+ -----------------------------
15371
+ DocumentTest: test_Suggestion
15372
+ -----------------------------
15373
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15374
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15375
+  (0.1ms) rollback transaction
15376
+  (0.1ms) begin transaction
15377
+ ----------------------------
15378
+ DocumentTest: test_the_truth
15379
+ ----------------------------
15380
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15381
+  (0.2ms) rollback transaction
15382
+  (0.1ms) begin transaction
15383
+ -----------------------------------------------------
15384
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15385
+ -----------------------------------------------------
15386
+  (0.1ms) rollback transaction
15387
+  (0.5ms) begin transaction
15388
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15389
+ 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-10-07 09:18:55')
15390
+ 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-10-07 09:18:55')
15391
+ 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-10-07 09:18:55')
15392
+  (1.1ms) commit transaction
15393
+  (0.1ms) begin transaction
15394
+ ---------------------------------
15395
+ ArticleTest: test_Ascending_order
15396
+ ---------------------------------
15397
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15398
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15399
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15400
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15401
+  (0.1ms) rollback transaction
15402
+  (0.1ms) begin transaction
15403
+ ----------------------------------
15404
+ ArticleTest: test_Descending_order
15405
+ ----------------------------------
15406
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15407
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15408
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15409
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15410
+  (0.2ms) rollback transaction
15411
+  (0.1ms) begin transaction
15412
+ ----------------------------------
15413
+ ArticleTest: test_Full_text_search
15414
+ ----------------------------------
15415
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15416
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15417
+  (0.2ms) rollback transaction
15418
+  (0.2ms) begin transaction
15419
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15420
+ 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-10-07 09:18:56')
15421
+ 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-10-07 09:18:56')
15422
+  (1.1ms) commit transaction
15423
+  (0.1ms) begin transaction
15424
+ ----------------------------------
15425
+ DocumentTest: test_Search_document
15426
+ ----------------------------------
15427
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15428
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15429
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15430
+  (0.1ms) rollback transaction
15431
+  (0.1ms) begin transaction
15432
+ -----------------------------
15433
+ DocumentTest: test_Suggestion
15434
+ -----------------------------
15435
+ Document Load (0.5ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15436
+  (0.2ms) rollback transaction
15437
+  (0.2ms) begin transaction
15438
+ ----------------------------
15439
+ DocumentTest: test_the_truth
15440
+ ----------------------------
15441
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15442
+  (0.2ms) rollback transaction
15443
+  (0.1ms) begin transaction
15444
+ -----------------------------------------------------
15445
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15446
+ -----------------------------------------------------
15447
+  (0.2ms) rollback transaction
15448
+  (0.6ms) begin transaction
15449
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15450
+ 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-10-07 09:19:48')
15451
+ 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-10-07 09:19:48')
15452
+ 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-10-07 09:19:48')
15453
+  (1.2ms) commit transaction
15454
+  (0.1ms) begin transaction
15455
+ ---------------------------------
15456
+ ArticleTest: test_Ascending_order
15457
+ ---------------------------------
15458
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15459
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15460
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15461
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15462
+  (0.2ms) rollback transaction
15463
+  (0.1ms) begin transaction
15464
+ ----------------------------------
15465
+ ArticleTest: test_Descending_order
15466
+ ----------------------------------
15467
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15468
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15469
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15470
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15471
+  (0.1ms) rollback transaction
15472
+  (0.1ms) begin transaction
15473
+ ----------------------------------
15474
+ ArticleTest: test_Full_text_search
15475
+ ----------------------------------
15476
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15477
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15478
+  (0.1ms) rollback transaction
15479
+  (0.1ms) begin transaction
15480
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15481
+ 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-10-07 09:19:49')
15482
+ 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-10-07 09:19:49')
15483
+  (0.7ms) commit transaction
15484
+  (0.1ms) begin transaction
15485
+ ----------------------------------
15486
+ DocumentTest: test_Search_document
15487
+ ----------------------------------
15488
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15489
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15490
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15491
+  (0.1ms) rollback transaction
15492
+  (0.1ms) begin transaction
15493
+ -----------------------------
15494
+ DocumentTest: test_Suggestion
15495
+ -----------------------------
15496
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15497
+  (0.2ms) rollback transaction
15498
+  (0.1ms) begin transaction
15499
+ ----------------------------
15500
+ DocumentTest: test_the_truth
15501
+ ----------------------------
15502
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15503
+  (0.2ms) rollback transaction
15504
+  (0.1ms) begin transaction
15505
+ -----------------------------------------------------
15506
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15507
+ -----------------------------------------------------
15508
+  (0.1ms) rollback transaction
15509
+  (0.6ms) begin transaction
15510
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15511
+ Fixture Insert (0.4ms) 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-10-07 09:20:32')
15512
+ Fixture Insert (0.2ms) 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-10-07 09:20:32')
15513
+ 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-10-07 09:20:32')
15514
+  (1.3ms) commit transaction
15515
+  (0.1ms) begin transaction
15516
+ ---------------------------------
15517
+ ArticleTest: test_Ascending_order
15518
+ ---------------------------------
15519
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15520
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15521
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15522
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15523
+  (0.2ms) rollback transaction
15524
+  (0.1ms) begin transaction
15525
+ ----------------------------------
15526
+ ArticleTest: test_Descending_order
15527
+ ----------------------------------
15528
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15529
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15530
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15531
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15532
+  (0.1ms) rollback transaction
15533
+  (0.1ms) begin transaction
15534
+ ----------------------------------
15535
+ ArticleTest: test_Full_text_search
15536
+ ----------------------------------
15537
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15538
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15539
+  (0.1ms) rollback transaction
15540
+  (0.1ms) begin transaction
15541
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15542
+ 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-10-07 09:20:33')
15543
+ 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-10-07 09:20:33')
15544
+  (0.7ms) commit transaction
15545
+  (0.1ms) begin transaction
15546
+ ----------------------------------
15547
+ DocumentTest: test_Search_document
15548
+ ----------------------------------
15549
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15550
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15551
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15552
+  (0.2ms) rollback transaction
15553
+  (0.1ms) begin transaction
15554
+ -----------------------------
15555
+ DocumentTest: test_Suggestion
15556
+ -----------------------------
15557
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15558
+  (0.2ms) rollback transaction
15559
+  (0.1ms) begin transaction
15560
+ ----------------------------
15561
+ DocumentTest: test_the_truth
15562
+ ----------------------------
15563
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15564
+  (0.2ms) rollback transaction
15565
+  (0.1ms) begin transaction
15566
+ -----------------------------------------------------
15567
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15568
+ -----------------------------------------------------
15569
+  (0.1ms) rollback transaction
15570
+  (0.5ms) begin transaction
15571
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15572
+ 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-10-07 09:20:40')
15573
+ 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-10-07 09:20:40')
15574
+ 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-10-07 09:20:40')
15575
+  (0.8ms) commit transaction
15576
+  (0.2ms) begin transaction
15577
+ ---------------------------------
15578
+ ArticleTest: test_Ascending_order
15579
+ ---------------------------------
15580
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15581
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15582
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15583
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15584
+  (0.1ms) rollback transaction
15585
+  (0.1ms) begin transaction
15586
+ ----------------------------------
15587
+ ArticleTest: test_Descending_order
15588
+ ----------------------------------
15589
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15590
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15591
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15592
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15593
+  (0.1ms) rollback transaction
15594
+  (0.1ms) begin transaction
15595
+ ----------------------------------
15596
+ ArticleTest: test_Full_text_search
15597
+ ----------------------------------
15598
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15599
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15600
+  (0.2ms) rollback transaction
15601
+  (0.2ms) begin transaction
15602
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15603
+ 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-10-07 09:20:41')
15604
+ 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-10-07 09:20:41')
15605
+  (0.8ms) commit transaction
15606
+  (0.1ms) begin transaction
15607
+ ----------------------------------
15608
+ DocumentTest: test_Search_document
15609
+ ----------------------------------
15610
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15611
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15612
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15613
+  (0.1ms) rollback transaction
15614
+  (0.1ms) begin transaction
15615
+ -----------------------------
15616
+ DocumentTest: test_Suggestion
15617
+ -----------------------------
15618
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15619
+  (0.2ms) rollback transaction
15620
+  (0.1ms) begin transaction
15621
+ ----------------------------
15622
+ DocumentTest: test_the_truth
15623
+ ----------------------------
15624
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15625
+  (0.2ms) rollback transaction
15626
+  (0.1ms) begin transaction
15627
+ -----------------------------------------------------
15628
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15629
+ -----------------------------------------------------
15630
+  (0.2ms) rollback transaction
15631
+  (0.5ms) begin transaction
15632
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15633
+ 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-10-07 09:21:32')
15634
+ 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-10-07 09:21:32')
15635
+ 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-10-07 09:21:32')
15636
+  (1.1ms) commit transaction
15637
+  (0.1ms) begin transaction
15638
+ ---------------------------------
15639
+ ArticleTest: test_Ascending_order
15640
+ ---------------------------------
15641
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15642
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15643
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15644
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15645
+  (0.2ms) rollback transaction
15646
+  (0.2ms) begin transaction
15647
+ ----------------------------------
15648
+ ArticleTest: test_Descending_order
15649
+ ----------------------------------
15650
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15651
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15652
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15653
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15654
+  (0.1ms) rollback transaction
15655
+  (0.2ms) begin transaction
15656
+ ----------------------------------
15657
+ ArticleTest: test_Full_text_search
15658
+ ----------------------------------
15659
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15660
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15661
+  (0.1ms) rollback transaction
15662
+  (0.1ms) begin transaction
15663
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15664
+ 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-10-07 09:21:33')
15665
+ 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-10-07 09:21:33')
15666
+  (1.0ms) commit transaction
15667
+  (0.1ms) begin transaction
15668
+ ----------------------------------
15669
+ DocumentTest: test_Search_document
15670
+ ----------------------------------
15671
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15672
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15673
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15674
+  (0.1ms) rollback transaction
15675
+  (0.1ms) begin transaction
15676
+ -----------------------------
15677
+ DocumentTest: test_Suggestion
15678
+ -----------------------------
15679
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15680
+  (0.2ms) rollback transaction
15681
+  (0.1ms) begin transaction
15682
+ ----------------------------
15683
+ DocumentTest: test_the_truth
15684
+ ----------------------------
15685
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15686
+  (0.2ms) rollback transaction
15687
+  (0.1ms) begin transaction
15688
+ -----------------------------------------------------
15689
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15690
+ -----------------------------------------------------
15691
+  (0.1ms) rollback transaction
15692
+  (0.6ms) begin transaction
15693
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15694
+ 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-10-07 09:23:10')
15695
+ 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-10-07 09:23:10')
15696
+ 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-10-07 09:23:10')
15697
+  (0.7ms) commit transaction
15698
+  (0.1ms) begin transaction
15699
+ ---------------------------------
15700
+ ArticleTest: test_Ascending_order
15701
+ ---------------------------------
15702
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15703
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15704
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15705
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15706
+  (0.2ms) rollback transaction
15707
+  (0.2ms) begin transaction
15708
+ ----------------------------------
15709
+ ArticleTest: test_Descending_order
15710
+ ----------------------------------
15711
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15712
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15713
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15714
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15715
+  (0.1ms) rollback transaction
15716
+  (0.1ms) begin transaction
15717
+ ----------------------------------
15718
+ ArticleTest: test_Full_text_search
15719
+ ----------------------------------
15720
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15721
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15722
+  (0.1ms) rollback transaction
15723
+  (0.1ms) begin transaction
15724
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15725
+ 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-10-07 09:23:11')
15726
+ 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-10-07 09:23:11')
15727
+  (1.2ms) commit transaction
15728
+  (0.1ms) begin transaction
15729
+ ----------------------------------
15730
+ DocumentTest: test_Search_document
15731
+ ----------------------------------
15732
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15733
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15734
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15735
+  (0.1ms) rollback transaction
15736
+  (0.1ms) begin transaction
15737
+ -----------------------------
15738
+ DocumentTest: test_Suggestion
15739
+ -----------------------------
15740
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15741
+  (0.2ms) rollback transaction
15742
+  (0.1ms) begin transaction
15743
+ ----------------------------
15744
+ DocumentTest: test_the_truth
15745
+ ----------------------------
15746
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15747
+  (0.2ms) rollback transaction
15748
+  (0.1ms) begin transaction
15749
+ -----------------------------------------------------
15750
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15751
+ -----------------------------------------------------
15752
+  (0.1ms) rollback transaction
15753
+  (0.6ms) begin transaction
15754
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15755
+ 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-10-07 09:24:22')
15756
+ 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-10-07 09:24:22')
15757
+ 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-10-07 09:24:22')
15758
+  (0.9ms) commit transaction
15759
+  (0.1ms) begin transaction
15760
+ ---------------------------------
15761
+ ArticleTest: test_Ascending_order
15762
+ ---------------------------------
15763
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15764
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15765
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15766
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15767
+  (0.2ms) rollback transaction
15768
+  (0.2ms) begin transaction
15769
+ ----------------------------------
15770
+ ArticleTest: test_Descending_order
15771
+ ----------------------------------
15772
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15773
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15774
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15775
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15776
+  (0.1ms) rollback transaction
15777
+  (0.1ms) begin transaction
15778
+ ----------------------------------
15779
+ ArticleTest: test_Full_text_search
15780
+ ----------------------------------
15781
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15782
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15783
+  (0.1ms) rollback transaction
15784
+  (0.1ms) begin transaction
15785
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15786
+ 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-10-07 09:24:23')
15787
+ 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-10-07 09:24:23')
15788
+  (1.2ms) commit transaction
15789
+  (0.1ms) begin transaction
15790
+ ----------------------------------
15791
+ DocumentTest: test_Search_document
15792
+ ----------------------------------
15793
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15794
+ Document Load (0.5ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15795
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15796
+  (0.2ms) rollback transaction
15797
+  (0.1ms) begin transaction
15798
+ -----------------------------
15799
+ DocumentTest: test_Suggestion
15800
+ -----------------------------
15801
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15802
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15803
+  (0.1ms) rollback transaction
15804
+  (0.1ms) begin transaction
15805
+ ----------------------------
15806
+ DocumentTest: test_the_truth
15807
+ ----------------------------
15808
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15809
+  (0.2ms) rollback transaction
15810
+  (0.1ms) begin transaction
15811
+ -----------------------------------------------------
15812
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15813
+ -----------------------------------------------------
15814
+  (0.1ms) rollback transaction
15815
+  (0.6ms) begin transaction
15816
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15817
+ 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-10-07 09:24:29')
15818
+ 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-10-07 09:24:29')
15819
+ 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-10-07 09:24:29')
15820
+  (0.8ms) commit transaction
15821
+  (0.1ms) begin transaction
15822
+ ---------------------------------
15823
+ ArticleTest: test_Ascending_order
15824
+ ---------------------------------
15825
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15826
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15827
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15828
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15829
+  (0.1ms) rollback transaction
15830
+  (0.1ms) begin transaction
15831
+ ----------------------------------
15832
+ ArticleTest: test_Descending_order
15833
+ ----------------------------------
15834
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15835
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15836
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15837
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15838
+  (0.1ms) rollback transaction
15839
+  (0.1ms) begin transaction
15840
+ ----------------------------------
15841
+ ArticleTest: test_Full_text_search
15842
+ ----------------------------------
15843
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15844
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15845
+  (0.1ms) rollback transaction
15846
+  (0.1ms) begin transaction
15847
+ Fixture Delete (0.2ms) DELETE FROM "documents"
15848
+ 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-10-07 09:24:30')
15849
+ 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-10-07 09:24:30')
15850
+  (0.9ms) commit transaction
15851
+  (0.1ms) begin transaction
15852
+ ----------------------------------
15853
+ DocumentTest: test_Search_document
15854
+ ----------------------------------
15855
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15856
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15857
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15858
+  (0.1ms) rollback transaction
15859
+  (0.1ms) begin transaction
15860
+ -----------------------------
15861
+ DocumentTest: test_Suggestion
15862
+ -----------------------------
15863
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15864
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15865
+  (0.1ms) rollback transaction
15866
+  (0.1ms) begin transaction
15867
+ ----------------------------
15868
+ DocumentTest: test_the_truth
15869
+ ----------------------------
15870
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15871
+  (0.2ms) rollback transaction
15872
+  (0.1ms) begin transaction
15873
+ -----------------------------------------------------
15874
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15875
+ -----------------------------------------------------
15876
+  (0.1ms) rollback transaction
15877
+  (1.1ms) begin transaction
15878
+ Fixture Delete (0.4ms) DELETE FROM "articles"
15879
+ 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-10-07 09:25:31')
15880
+ 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-10-07 09:25:31')
15881
+ 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-10-07 09:25:31')
15882
+  (1.1ms) commit transaction
15883
+  (0.1ms) begin transaction
15884
+ ---------------------------------
15885
+ ArticleTest: test_Ascending_order
15886
+ ---------------------------------
15887
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15888
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15889
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15890
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15891
+  (0.2ms) rollback transaction
15892
+  (0.2ms) begin transaction
15893
+ ----------------------------------
15894
+ ArticleTest: test_Descending_order
15895
+ ----------------------------------
15896
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15897
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15898
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15899
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15900
+  (0.1ms) rollback transaction
15901
+  (0.1ms) begin transaction
15902
+ ----------------------------------
15903
+ ArticleTest: test_Full_text_search
15904
+ ----------------------------------
15905
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15906
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15907
+  (0.1ms) rollback transaction
15908
+  (0.1ms) begin transaction
15909
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15910
+ 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-10-07 09:25:32')
15911
+ 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-10-07 09:25:32')
15912
+  (0.6ms) commit transaction
15913
+  (0.1ms) begin transaction
15914
+ ----------------------------------
15915
+ DocumentTest: test_Search_document
15916
+ ----------------------------------
15917
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15918
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15919
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15920
+  (0.1ms) rollback transaction
15921
+  (0.1ms) begin transaction
15922
+ -----------------------------
15923
+ DocumentTest: test_Suggestion
15924
+ -----------------------------
15925
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15926
+  (0.2ms) rollback transaction
15927
+  (0.1ms) begin transaction
15928
+ ----------------------------
15929
+ DocumentTest: test_the_truth
15930
+ ----------------------------
15931
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15932
+  (0.2ms) rollback transaction
15933
+  (0.1ms) begin transaction
15934
+ -----------------------------------------------------
15935
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15936
+ -----------------------------------------------------
15937
+  (0.1ms) rollback transaction
15938
+  (0.6ms) begin transaction
15939
+ Fixture Delete (0.3ms) DELETE FROM "articles"
15940
+ 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-10-07 09:27:02')
15941
+ 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-10-07 09:27:02')
15942
+ 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-10-07 09:27:02')
15943
+  (0.9ms) commit transaction
15944
+  (0.1ms) begin transaction
15945
+ ---------------------------------
15946
+ ArticleTest: test_Ascending_order
15947
+ ---------------------------------
15948
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15949
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15950
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15951
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15952
+  (0.2ms) rollback transaction
15953
+  (0.2ms) begin transaction
15954
+ ----------------------------------
15955
+ ArticleTest: test_Descending_order
15956
+ ----------------------------------
15957
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15958
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
15959
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
15960
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15961
+  (0.1ms) rollback transaction
15962
+  (0.1ms) begin transaction
15963
+ ----------------------------------
15964
+ ArticleTest: test_Full_text_search
15965
+ ----------------------------------
15966
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
15967
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
15968
+  (0.1ms) rollback transaction
15969
+  (0.1ms) begin transaction
15970
+ Fixture Delete (0.3ms) DELETE FROM "documents"
15971
+ 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-10-07 09:27:03')
15972
+ 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-10-07 09:27:03')
15973
+  (0.6ms) commit transaction
15974
+  (0.1ms) begin transaction
15975
+ ----------------------------------
15976
+ DocumentTest: test_Search_document
15977
+ ----------------------------------
15978
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15979
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
15980
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
15981
+  (0.1ms) rollback transaction
15982
+  (0.1ms) begin transaction
15983
+ -----------------------------
15984
+ DocumentTest: test_Suggestion
15985
+ -----------------------------
15986
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15987
+  (0.2ms) rollback transaction
15988
+  (0.1ms) begin transaction
15989
+ ----------------------------
15990
+ DocumentTest: test_the_truth
15991
+ ----------------------------
15992
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
15993
+  (0.2ms) rollback transaction
15994
+  (0.1ms) begin transaction
15995
+ -----------------------------------------------------
15996
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
15997
+ -----------------------------------------------------
15998
+  (0.1ms) rollback transaction
15999
+  (0.5ms) begin transaction
16000
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16001
+ 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-10-07 09:27:17')
16002
+ 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-10-07 09:27:17')
16003
+ 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-10-07 09:27:17')
16004
+  (1.0ms) commit transaction
16005
+  (0.1ms) begin transaction
16006
+ ---------------------------------
16007
+ ArticleTest: test_Ascending_order
16008
+ ---------------------------------
16009
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16010
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16011
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16012
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16013
+  (0.1ms) rollback transaction
16014
+  (0.2ms) begin transaction
16015
+ ----------------------------------
16016
+ ArticleTest: test_Descending_order
16017
+ ----------------------------------
16018
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16019
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16020
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16021
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16022
+  (0.2ms) rollback transaction
16023
+  (0.1ms) begin transaction
16024
+ ----------------------------------
16025
+ ArticleTest: test_Full_text_search
16026
+ ----------------------------------
16027
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16028
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16029
+  (0.2ms) rollback transaction
16030
+  (0.2ms) begin transaction
16031
+ Fixture Delete (0.4ms) DELETE FROM "documents"
16032
+ 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-10-07 09:27:18')
16033
+ 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-10-07 09:27:18')
16034
+  (0.7ms) commit transaction
16035
+  (0.1ms) begin transaction
16036
+ ----------------------------------
16037
+ DocumentTest: test_Search_document
16038
+ ----------------------------------
16039
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16040
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16041
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16042
+  (0.2ms) rollback transaction
16043
+  (0.1ms) begin transaction
16044
+ -----------------------------
16045
+ DocumentTest: test_Suggestion
16046
+ -----------------------------
16047
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16048
+  (0.2ms) rollback transaction
16049
+  (0.1ms) begin transaction
16050
+ ----------------------------
16051
+ DocumentTest: test_the_truth
16052
+ ----------------------------
16053
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16054
+  (0.2ms) rollback transaction
16055
+  (0.1ms) begin transaction
16056
+ -----------------------------------------------------
16057
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16058
+ -----------------------------------------------------
16059
+  (0.1ms) rollback transaction
16060
+  (0.5ms) begin transaction
16061
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16062
+ 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-10-07 09:27:37')
16063
+ 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-10-07 09:27:37')
16064
+ 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-10-07 09:27:37')
16065
+  (0.8ms) commit transaction
16066
+  (0.1ms) begin transaction
16067
+ ---------------------------------
16068
+ ArticleTest: test_Ascending_order
16069
+ ---------------------------------
16070
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16071
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16072
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16073
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16074
+  (0.2ms) rollback transaction
16075
+  (0.2ms) begin transaction
16076
+ ----------------------------------
16077
+ ArticleTest: test_Descending_order
16078
+ ----------------------------------
16079
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16080
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16081
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16082
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16083
+  (0.1ms) rollback transaction
16084
+  (0.1ms) begin transaction
16085
+ ----------------------------------
16086
+ ArticleTest: test_Full_text_search
16087
+ ----------------------------------
16088
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16089
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16090
+  (0.1ms) rollback transaction
16091
+  (0.1ms) begin transaction
16092
+ Fixture Delete (0.2ms) DELETE FROM "documents"
16093
+ 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-10-07 09:27:38')
16094
+ 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-10-07 09:27:38')
16095
+  (1.0ms) commit transaction
16096
+  (0.1ms) begin transaction
16097
+ ----------------------------------
16098
+ DocumentTest: test_Search_document
16099
+ ----------------------------------
16100
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16101
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16102
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16103
+  (0.1ms) rollback transaction
16104
+  (0.1ms) begin transaction
16105
+ -----------------------------
16106
+ DocumentTest: test_Suggestion
16107
+ -----------------------------
16108
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16109
+  (0.2ms) rollback transaction
16110
+  (0.1ms) begin transaction
16111
+ ----------------------------
16112
+ DocumentTest: test_the_truth
16113
+ ----------------------------
16114
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16115
+  (0.2ms) rollback transaction
16116
+  (0.1ms) begin transaction
16117
+ -----------------------------------------------------
16118
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16119
+ -----------------------------------------------------
16120
+  (0.1ms) rollback transaction
16121
+  (0.6ms) begin transaction
16122
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16123
+ 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-10-07 09:28:07')
16124
+ 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-10-07 09:28:07')
16125
+ 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-10-07 09:28:07')
16126
+  (0.7ms) commit transaction
16127
+  (0.1ms) begin transaction
16128
+ ---------------------------------
16129
+ ArticleTest: test_Ascending_order
16130
+ ---------------------------------
16131
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16132
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16133
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16134
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16135
+  (0.2ms) rollback transaction
16136
+  (0.2ms) begin transaction
16137
+ ----------------------------------
16138
+ ArticleTest: test_Descending_order
16139
+ ----------------------------------
16140
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16141
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16142
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16143
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16144
+  (0.1ms) rollback transaction
16145
+  (0.1ms) begin transaction
16146
+ ----------------------------------
16147
+ ArticleTest: test_Full_text_search
16148
+ ----------------------------------
16149
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16150
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16151
+  (0.1ms) rollback transaction
16152
+  (0.1ms) begin transaction
16153
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16154
+ 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-10-07 09:28:08')
16155
+ 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-10-07 09:28:08')
16156
+  (1.1ms) commit transaction
16157
+  (0.1ms) begin transaction
16158
+ ----------------------------------
16159
+ DocumentTest: test_Search_document
16160
+ ----------------------------------
16161
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16162
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16163
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16164
+  (0.1ms) rollback transaction
16165
+  (0.1ms) begin transaction
16166
+ -----------------------------
16167
+ DocumentTest: test_Suggestion
16168
+ -----------------------------
16169
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16170
+  (0.2ms) rollback transaction
16171
+  (0.1ms) begin transaction
16172
+ ----------------------------
16173
+ DocumentTest: test_the_truth
16174
+ ----------------------------
16175
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16176
+  (0.2ms) rollback transaction
16177
+  (0.1ms) begin transaction
16178
+ -----------------------------------------------------
16179
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16180
+ -----------------------------------------------------
16181
+  (0.1ms) rollback transaction
16182
+  (0.6ms) begin transaction
16183
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16184
+ 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-10-07 09:28:54')
16185
+ 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-10-07 09:28:54')
16186
+ 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-10-07 09:28:54')
16187
+  (0.9ms) commit transaction
16188
+  (0.1ms) begin transaction
16189
+ ---------------------------------
16190
+ ArticleTest: test_Ascending_order
16191
+ ---------------------------------
16192
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16193
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16194
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16195
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16196
+  (0.2ms) rollback transaction
16197
+  (0.2ms) begin transaction
16198
+ ----------------------------------
16199
+ ArticleTest: test_Descending_order
16200
+ ----------------------------------
16201
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16202
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16203
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16204
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16205
+  (0.2ms) rollback transaction
16206
+  (0.1ms) begin transaction
16207
+ ----------------------------------
16208
+ ArticleTest: test_Full_text_search
16209
+ ----------------------------------
16210
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16211
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16212
+  (0.1ms) rollback transaction
16213
+  (0.1ms) begin transaction
16214
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16215
+ 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-10-07 09:28:54')
16216
+ 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-10-07 09:28:54')
16217
+  (0.9ms) commit transaction
16218
+  (0.1ms) begin transaction
16219
+ ----------------------------------
16220
+ DocumentTest: test_Search_document
16221
+ ----------------------------------
16222
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16223
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16224
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16225
+  (0.1ms) rollback transaction
16226
+  (0.1ms) begin transaction
16227
+ -----------------------------
16228
+ DocumentTest: test_Suggestion
16229
+ -----------------------------
16230
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16231
+  (0.2ms) rollback transaction
16232
+  (0.1ms) begin transaction
16233
+ ----------------------------
16234
+ DocumentTest: test_the_truth
16235
+ ----------------------------
16236
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16237
+  (0.2ms) rollback transaction
16238
+  (0.1ms) begin transaction
16239
+ -----------------------------------------------------
16240
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16241
+ -----------------------------------------------------
16242
+  (0.1ms) rollback transaction
16243
+  (0.6ms) begin transaction
16244
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16245
+ 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-10-07 09:34:11')
16246
+ 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-10-07 09:34:11')
16247
+ 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-10-07 09:34:11')
16248
+  (1.1ms) commit transaction
16249
+  (0.1ms) begin transaction
16250
+ ---------------------------------
16251
+ ArticleTest: test_Ascending_order
16252
+ ---------------------------------
16253
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16254
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16255
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16256
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16257
+  (0.2ms) rollback transaction
16258
+  (0.2ms) begin transaction
16259
+ ----------------------------------
16260
+ ArticleTest: test_Descending_order
16261
+ ----------------------------------
16262
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16263
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16264
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16265
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16266
+  (0.2ms) rollback transaction
16267
+  (0.1ms) begin transaction
16268
+ ----------------------------------
16269
+ ArticleTest: test_Full_text_search
16270
+ ----------------------------------
16271
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16272
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16273
+  (0.2ms) rollback transaction
16274
+  (0.2ms) begin transaction
16275
+ Fixture Delete (0.4ms) DELETE FROM "documents"
16276
+ 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-10-07 09:34:12')
16277
+ 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-10-07 09:34:12')
16278
+  (0.7ms) commit transaction
16279
+  (0.1ms) begin transaction
16280
+ ----------------------------------
16281
+ DocumentTest: test_Search_document
16282
+ ----------------------------------
16283
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16284
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16285
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16286
+  (0.1ms) rollback transaction
16287
+  (0.1ms) begin transaction
16288
+ -----------------------------
16289
+ DocumentTest: test_Suggestion
16290
+ -----------------------------
16291
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16292
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16293
+  (0.1ms) rollback transaction
16294
+  (0.1ms) begin transaction
16295
+ ----------------------------
16296
+ DocumentTest: test_the_truth
16297
+ ----------------------------
16298
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16299
+  (0.2ms) rollback transaction
16300
+  (0.1ms) begin transaction
16301
+ -----------------------------------------------------
16302
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16303
+ -----------------------------------------------------
16304
+  (0.1ms) rollback transaction
16305
+  (0.6ms) begin transaction
16306
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16307
+ 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-10-07 09:34:32')
16308
+ 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-10-07 09:34:32')
16309
+ 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-10-07 09:34:32')
16310
+  (0.9ms) commit transaction
16311
+  (0.1ms) begin transaction
16312
+ ---------------------------------
16313
+ ArticleTest: test_Ascending_order
16314
+ ---------------------------------
16315
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16316
+ Article Load (0.5ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16317
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16318
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16319
+  (0.2ms) rollback transaction
16320
+  (0.2ms) begin transaction
16321
+ ----------------------------------
16322
+ ArticleTest: test_Descending_order
16323
+ ----------------------------------
16324
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16325
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16326
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16327
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16328
+  (0.1ms) rollback transaction
16329
+  (0.1ms) begin transaction
16330
+ ----------------------------------
16331
+ ArticleTest: test_Full_text_search
16332
+ ----------------------------------
16333
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16334
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16335
+  (0.1ms) rollback transaction
16336
+  (0.1ms) begin transaction
16337
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16338
+ 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-10-07 09:34:33')
16339
+ 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-10-07 09:34:33')
16340
+  (1.1ms) commit transaction
16341
+  (0.1ms) begin transaction
16342
+ ----------------------------------
16343
+ DocumentTest: test_Search_document
16344
+ ----------------------------------
16345
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16346
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16347
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16348
+  (0.2ms) rollback transaction
16349
+  (0.1ms) begin transaction
16350
+ -----------------------------
16351
+ DocumentTest: test_Suggestion
16352
+ -----------------------------
16353
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16354
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16355
+  (0.1ms) rollback transaction
16356
+  (0.1ms) begin transaction
16357
+ ----------------------------
16358
+ DocumentTest: test_the_truth
16359
+ ----------------------------
16360
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16361
+  (0.2ms) rollback transaction
16362
+  (0.1ms) begin transaction
16363
+ -----------------------------------------------------
16364
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16365
+ -----------------------------------------------------
16366
+  (0.1ms) rollback transaction
16367
+  (0.8ms) begin transaction
16368
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16369
+ 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-10-07 09:38:08')
16370
+ 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-10-07 09:38:08')
16371
+ 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-10-07 09:38:08')
16372
+  (0.9ms) commit transaction
16373
+  (0.1ms) begin transaction
16374
+ ---------------------------------
16375
+ ArticleTest: test_Ascending_order
16376
+ ---------------------------------
16377
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16378
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16379
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16380
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16381
+  (0.2ms) rollback transaction
16382
+  (0.2ms) begin transaction
16383
+ ----------------------------------
16384
+ ArticleTest: test_Descending_order
16385
+ ----------------------------------
16386
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16387
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16388
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16389
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16390
+  (0.1ms) rollback transaction
16391
+  (0.1ms) begin transaction
16392
+ ----------------------------------
16393
+ ArticleTest: test_Full_text_search
16394
+ ----------------------------------
16395
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16396
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16397
+  (0.1ms) rollback transaction
16398
+  (0.1ms) begin transaction
16399
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16400
+ 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-10-07 09:38:09')
16401
+ 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-10-07 09:38:09')
16402
+  (0.7ms) commit transaction
16403
+  (0.1ms) begin transaction
16404
+ ----------------------------------
16405
+ DocumentTest: test_Search_document
16406
+ ----------------------------------
16407
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16408
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16409
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16410
+  (0.1ms) rollback transaction
16411
+  (0.1ms) begin transaction
16412
+ -----------------------------
16413
+ DocumentTest: test_Suggestion
16414
+ -----------------------------
16415
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16416
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16417
+  (0.1ms) rollback transaction
16418
+  (0.1ms) begin transaction
16419
+ ----------------------------
16420
+ DocumentTest: test_the_truth
16421
+ ----------------------------
16422
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16423
+  (0.2ms) rollback transaction
16424
+  (0.1ms) begin transaction
16425
+ -----------------------------------------------------
16426
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16427
+ -----------------------------------------------------
16428
+  (0.1ms) rollback transaction
16429
+  (0.6ms) begin transaction
16430
+ Fixture Delete (0.3ms) DELETE FROM "articles"
16431
+ 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-10-07 09:41:59')
16432
+ 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-10-07 09:41:59')
16433
+ 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-10-07 09:41:59')
16434
+  (0.8ms) commit transaction
16435
+  (0.1ms) begin transaction
16436
+ ---------------------------------
16437
+ ArticleTest: test_Ascending_order
16438
+ ---------------------------------
16439
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16440
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16441
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16442
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16443
+  (0.2ms) rollback transaction
16444
+  (0.2ms) begin transaction
16445
+ ----------------------------------
16446
+ ArticleTest: test_Descending_order
16447
+ ----------------------------------
16448
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16449
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16450
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16451
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16452
+  (0.1ms) rollback transaction
16453
+  (0.1ms) begin transaction
16454
+ ----------------------------------
16455
+ ArticleTest: test_Full_text_search
16456
+ ----------------------------------
16457
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16458
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16459
+  (0.1ms) rollback transaction
16460
+  (0.1ms) begin transaction
16461
+ Fixture Delete (0.2ms) DELETE FROM "documents"
16462
+ 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-10-07 09:42:00')
16463
+ 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-10-07 09:42:00')
16464
+  (1.3ms) commit transaction
16465
+  (0.1ms) begin transaction
16466
+ ----------------------------------
16467
+ DocumentTest: test_Search_document
16468
+ ----------------------------------
16469
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16470
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16471
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16472
+  (0.1ms) rollback transaction
16473
+  (0.1ms) begin transaction
16474
+ -----------------------------
16475
+ DocumentTest: test_Suggestion
16476
+ -----------------------------
16477
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16478
+  (0.2ms) rollback transaction
16479
+  (0.1ms) begin transaction
16480
+ ----------------------------
16481
+ DocumentTest: test_the_truth
16482
+ ----------------------------
16483
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16484
+  (0.2ms) rollback transaction
16485
+  (0.1ms) begin transaction
16486
+ -----------------------------------------------------
16487
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16488
+ -----------------------------------------------------
16489
+  (0.1ms) rollback transaction
16490
+  (0.6ms) begin transaction
16491
+ Fixture Delete (0.3ms) DELETE FROM "articles"
16492
+ 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-10-07 09:42:57')
16493
+ 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-10-07 09:42:57')
16494
+ 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-10-07 09:42:57')
16495
+  (1.1ms) commit transaction
16496
+  (0.1ms) begin transaction
16497
+ ---------------------------------
16498
+ ArticleTest: test_Ascending_order
16499
+ ---------------------------------
16500
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16501
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16502
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16503
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16504
+  (0.2ms) rollback transaction
16505
+  (0.2ms) begin transaction
16506
+ ----------------------------------
16507
+ ArticleTest: test_Descending_order
16508
+ ----------------------------------
16509
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16510
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16511
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16512
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16513
+  (0.1ms) rollback transaction
16514
+  (0.1ms) begin transaction
16515
+ ----------------------------------
16516
+ ArticleTest: test_Full_text_search
16517
+ ----------------------------------
16518
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16519
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16520
+  (0.1ms) rollback transaction
16521
+  (0.1ms) begin transaction
16522
+ Fixture Delete (0.2ms) DELETE FROM "documents"
16523
+ 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-10-07 09:42:58')
16524
+ 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-10-07 09:42:58')
16525
+  (1.2ms) commit transaction
16526
+  (0.1ms) begin transaction
16527
+ ----------------------------------
16528
+ DocumentTest: test_Search_document
16529
+ ----------------------------------
16530
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16531
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16532
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16533
+  (0.1ms) rollback transaction
16534
+  (0.1ms) begin transaction
16535
+ -----------------------------
16536
+ DocumentTest: test_Suggestion
16537
+ -----------------------------
16538
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16539
+  (0.2ms) rollback transaction
16540
+  (0.1ms) begin transaction
16541
+ ----------------------------
16542
+ DocumentTest: test_the_truth
16543
+ ----------------------------
16544
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16545
+  (0.2ms) rollback transaction
16546
+  (0.1ms) begin transaction
16547
+ -----------------------------------------------------
16548
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16549
+ -----------------------------------------------------
16550
+  (0.1ms) rollback transaction
16551
+  (0.6ms) begin transaction
16552
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16553
+ 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-10-07 09:43:16')
16554
+ 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-10-07 09:43:16')
16555
+ 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-10-07 09:43:16')
16556
+  (1.0ms) commit transaction
16557
+  (0.1ms) begin transaction
16558
+ ---------------------------------
16559
+ ArticleTest: test_Ascending_order
16560
+ ---------------------------------
16561
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16562
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16563
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16564
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16565
+  (0.2ms) rollback transaction
16566
+  (0.2ms) begin transaction
16567
+ ----------------------------------
16568
+ ArticleTest: test_Descending_order
16569
+ ----------------------------------
16570
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16571
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16572
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16573
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16574
+  (0.1ms) rollback transaction
16575
+  (0.1ms) begin transaction
16576
+ ----------------------------------
16577
+ ArticleTest: test_Full_text_search
16578
+ ----------------------------------
16579
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16580
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16581
+  (0.1ms) rollback transaction
16582
+  (0.2ms) begin transaction
16583
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16584
+ 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-10-07 09:43:17')
16585
+ 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-10-07 09:43:17')
16586
+  (0.6ms) commit transaction
16587
+  (0.1ms) begin transaction
16588
+ ----------------------------------
16589
+ DocumentTest: test_Search_document
16590
+ ----------------------------------
16591
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16592
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16593
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16594
+  (0.2ms) rollback transaction
16595
+  (0.1ms) begin transaction
16596
+ -----------------------------
16597
+ DocumentTest: test_Suggestion
16598
+ -----------------------------
16599
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16600
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16601
+  (0.1ms) rollback transaction
16602
+  (0.1ms) begin transaction
16603
+ ----------------------------
16604
+ DocumentTest: test_the_truth
16605
+ ----------------------------
16606
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16607
+  (0.2ms) rollback transaction
16608
+  (0.1ms) begin transaction
16609
+ -----------------------------------------------------
16610
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16611
+ -----------------------------------------------------
16612
+  (0.1ms) rollback transaction
16613
+  (0.7ms) begin transaction
16614
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16615
+ 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-10-07 09:43:48')
16616
+ 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-10-07 09:43:48')
16617
+ 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-10-07 09:43:48')
16618
+  (0.9ms) commit transaction
16619
+  (0.1ms) begin transaction
16620
+ ---------------------------------
16621
+ ArticleTest: test_Ascending_order
16622
+ ---------------------------------
16623
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16624
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16625
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16626
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16627
+  (0.2ms) rollback transaction
16628
+  (0.2ms) begin transaction
16629
+ ----------------------------------
16630
+ ArticleTest: test_Descending_order
16631
+ ----------------------------------
16632
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16633
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16634
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16635
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16636
+  (0.1ms) rollback transaction
16637
+  (0.1ms) begin transaction
16638
+ ----------------------------------
16639
+ ArticleTest: test_Full_text_search
16640
+ ----------------------------------
16641
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16642
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16643
+  (0.1ms) rollback transaction
16644
+  (0.1ms) begin transaction
16645
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16646
+ 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-10-07 09:43:48')
16647
+ 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-10-07 09:43:48')
16648
+  (0.8ms) commit transaction
16649
+  (0.1ms) begin transaction
16650
+ ----------------------------------
16651
+ DocumentTest: test_Search_document
16652
+ ----------------------------------
16653
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16654
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16655
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16656
+  (0.1ms) rollback transaction
16657
+  (0.1ms) begin transaction
16658
+ -----------------------------
16659
+ DocumentTest: test_Suggestion
16660
+ -----------------------------
16661
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16662
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16663
+  (0.1ms) rollback transaction
16664
+  (0.1ms) begin transaction
16665
+ ----------------------------
16666
+ DocumentTest: test_the_truth
16667
+ ----------------------------
16668
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16669
+  (0.2ms) rollback transaction
16670
+  (0.1ms) begin transaction
16671
+ -----------------------------------------------------
16672
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16673
+ -----------------------------------------------------
16674
+  (0.1ms) rollback transaction
16675
+  (0.6ms) begin transaction
16676
+ Fixture Delete (1.0ms) DELETE FROM "articles"
16677
+ 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-10-07 09:44:28')
16678
+ 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-10-07 09:44:28')
16679
+ 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-10-07 09:44:28')
16680
+  (1.0ms) commit transaction
16681
+  (0.1ms) begin transaction
16682
+ ---------------------------------
16683
+ ArticleTest: test_Ascending_order
16684
+ ---------------------------------
16685
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16686
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16687
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16688
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16689
+  (0.2ms) rollback transaction
16690
+  (0.2ms) begin transaction
16691
+ ----------------------------------
16692
+ ArticleTest: test_Descending_order
16693
+ ----------------------------------
16694
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16695
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16696
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16697
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16698
+  (0.1ms) rollback transaction
16699
+  (0.1ms) begin transaction
16700
+ ----------------------------------
16701
+ ArticleTest: test_Full_text_search
16702
+ ----------------------------------
16703
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16704
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16705
+  (0.1ms) rollback transaction
16706
+  (0.1ms) begin transaction
16707
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16708
+ 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-10-07 09:44:28')
16709
+ 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-10-07 09:44:28')
16710
+  (1.2ms) commit transaction
16711
+  (0.1ms) begin transaction
16712
+ ----------------------------------
16713
+ DocumentTest: test_Search_document
16714
+ ----------------------------------
16715
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16716
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16717
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16718
+  (0.1ms) rollback transaction
16719
+  (0.1ms) begin transaction
16720
+ -----------------------------
16721
+ DocumentTest: test_Suggestion
16722
+ -----------------------------
16723
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16724
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16725
+  (0.1ms) rollback transaction
16726
+  (0.1ms) begin transaction
16727
+ ----------------------------
16728
+ DocumentTest: test_the_truth
16729
+ ----------------------------
16730
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16731
+  (0.2ms) rollback transaction
16732
+  (0.1ms) begin transaction
16733
+ -----------------------------------------------------
16734
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16735
+ -----------------------------------------------------
16736
+  (0.1ms) rollback transaction
16737
+  (0.5ms) begin transaction
16738
+ Fixture Delete (0.6ms) DELETE FROM "articles"
16739
+ 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-10-07 09:45:35')
16740
+ 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-10-07 09:45:35')
16741
+ 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-10-07 09:45:35')
16742
+  (0.8ms) commit transaction
16743
+  (0.1ms) begin transaction
16744
+ ---------------------------------
16745
+ ArticleTest: test_Ascending_order
16746
+ ---------------------------------
16747
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16748
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16749
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16750
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16751
+  (0.2ms) rollback transaction
16752
+  (0.2ms) begin transaction
16753
+ ----------------------------------
16754
+ ArticleTest: test_Descending_order
16755
+ ----------------------------------
16756
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16757
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16758
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16759
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16760
+  (0.2ms) rollback transaction
16761
+  (0.2ms) begin transaction
16762
+ ----------------------------------
16763
+ ArticleTest: test_Full_text_search
16764
+ ----------------------------------
16765
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16766
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16767
+  (0.1ms) rollback transaction
16768
+  (0.1ms) begin transaction
16769
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16770
+ 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-10-07 09:45:36')
16771
+ 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-10-07 09:45:36')
16772
+  (1.0ms) commit transaction
16773
+  (0.1ms) begin transaction
16774
+ ----------------------------------
16775
+ DocumentTest: test_Search_document
16776
+ ----------------------------------
16777
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16778
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16779
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16780
+  (0.1ms) rollback transaction
16781
+  (0.1ms) begin transaction
16782
+ -----------------------------
16783
+ DocumentTest: test_Suggestion
16784
+ -----------------------------
16785
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16786
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16787
+  (0.1ms) rollback transaction
16788
+  (0.1ms) begin transaction
16789
+ ----------------------------
16790
+ DocumentTest: test_the_truth
16791
+ ----------------------------
16792
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16793
+  (0.2ms) rollback transaction
16794
+  (0.1ms) begin transaction
16795
+ -----------------------------------------------------
16796
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16797
+ -----------------------------------------------------
16798
+  (0.1ms) rollback transaction
16799
+  (0.6ms) begin transaction
16800
+ Fixture Delete (0.3ms) DELETE FROM "articles"
16801
+ 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-10-07 09:46:01')
16802
+ 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-10-07 09:46:01')
16803
+ 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-10-07 09:46:01')
16804
+  (0.8ms) commit transaction
16805
+  (0.1ms) begin transaction
16806
+ ---------------------------------
16807
+ ArticleTest: test_Ascending_order
16808
+ ---------------------------------
16809
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16810
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16811
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16812
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16813
+  (0.2ms) rollback transaction
16814
+  (0.2ms) begin transaction
16815
+ ----------------------------------
16816
+ ArticleTest: test_Descending_order
16817
+ ----------------------------------
16818
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16819
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16820
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16821
+ Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16822
+  (0.1ms) rollback transaction
16823
+  (0.1ms) begin transaction
16824
+ ----------------------------------
16825
+ ArticleTest: test_Full_text_search
16826
+ ----------------------------------
16827
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16828
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16829
+  (0.1ms) rollback transaction
16830
+  (0.1ms) begin transaction
16831
+ Fixture Delete (0.3ms) DELETE FROM "documents"
16832
+ 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-10-07 09:46:02')
16833
+ 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-10-07 09:46:02')
16834
+  (1.1ms) commit transaction
16835
+  (0.1ms) begin transaction
16836
+ ----------------------------------
16837
+ DocumentTest: test_Search_document
16838
+ ----------------------------------
16839
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16840
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16841
+ Document Load (0.1ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16842
+  (0.1ms) rollback transaction
16843
+  (0.1ms) begin transaction
16844
+ -----------------------------
16845
+ DocumentTest: test_Suggestion
16846
+ -----------------------------
16847
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16848
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16849
+  (0.1ms) rollback transaction
16850
+  (0.1ms) begin transaction
16851
+ ----------------------------
16852
+ DocumentTest: test_the_truth
16853
+ ----------------------------
16854
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16855
+  (0.2ms) rollback transaction
16856
+  (0.1ms) begin transaction
16857
+ -----------------------------------------------------
16858
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
16859
+ -----------------------------------------------------
16860
+  (0.1ms) rollback transaction
16861
+  (0.8ms) begin transaction
16862
+ Fixture Delete (0.4ms) DELETE FROM "articles"
16863
+ 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-10-07 09:51:07')
16864
+ 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-10-07 09:51:07')
16865
+ 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-10-07 09:51:07')
16866
+  (0.7ms) commit transaction
16867
+  (0.1ms) begin transaction
16868
+ ---------------------------------
16869
+ ArticleTest: test_Ascending_order
16870
+ ---------------------------------
16871
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16872
+ Article Load (0.4ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16873
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16874
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16875
+  (0.2ms) rollback transaction
16876
+  (0.2ms) begin transaction
16877
+ ----------------------------------
16878
+ ArticleTest: test_Descending_order
16879
+ ----------------------------------
16880
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16881
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 3]]
16882
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 2]]
16883
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16884
+  (0.1ms) rollback transaction
16885
+  (0.1ms) begin transaction
16886
+ ----------------------------------
16887
+ ArticleTest: test_Full_text_search
16888
+ ----------------------------------
16889
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" ASC LIMIT 1000
16890
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 1]]
16891
+  (0.1ms) rollback transaction
16892
+  (0.1ms) begin transaction
16893
+ Fixture Delete (0.4ms) DELETE FROM "documents"
16894
+ 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-10-07 09:51:07')
16895
+ 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-10-07 09:51:07')
16896
+  (0.7ms) commit transaction
16897
+  (0.1ms) begin transaction
16898
+ ----------------------------------
16899
+ DocumentTest: test_Search_document
16900
+ ----------------------------------
16901
+ Document Load (0.4ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16902
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 1]]
16903
+ Document Load (0.0ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16904
+  (0.1ms) rollback transaction
16905
+  (0.1ms) begin transaction
16906
+ -----------------------------
16907
+ DocumentTest: test_Suggestion
16908
+ -----------------------------
16909
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16910
+ Document Load (0.2ms) SELECT "documents".* FROM "documents" WHERE "documents"."id" = ? LIMIT 1 [["id", 2]]
16911
+  (0.1ms) rollback transaction
16912
+  (0.1ms) begin transaction
16913
+ ----------------------------
16914
+ DocumentTest: test_the_truth
16915
+ ----------------------------
16916
+ Document Load (0.3ms) SELECT "documents".* FROM "documents" ORDER BY "documents"."id" ASC LIMIT 1000
16917
+  (0.2ms) rollback transaction
16918
+  (0.1ms) begin transaction
16919
+ -----------------------------------------------------
16920
+ OssActiveRecordTest: test_OssActiveRecord_is_a_module
13363
16921
  -----------------------------------------------------
13364
16922
   (0.1ms) rollback transaction