naive-search 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,16 +37,24 @@ module NaiveSearch
37
37
  end
38
38
 
39
39
  def relevance_for(query)
40
+ query = query.downcase
40
41
  @naive_relevance ||= {}
41
42
  return @naive_relevance[query] if @naive_relevance[query]
42
-
43
43
  words = query.split " "
44
+
44
45
  score = self.naive_search_fields.map do |field|
45
- partial_word_matches = words.map{|w| self.send(field).to_s.downcase.scan(w.downcase).size}.sum
46
- partial_query_matches = words.map{|w| self.send(field).to_s.downcase.scan(query.downcase).size}.sum
47
- exact_word_matches = words.map{|w| self.send(field).to_s.downcase == w.downcase ? 2 : 0 }.sum
48
- exact_query_matches = words.map{|w| self.send(field).to_s.downcase == query.downcase ? 2 : 0 }.sum
49
- partial_word_matches + partial_query_matches + exact_word_matches + exact_query_matches
46
+ content = self.send(field).to_s.downcase
47
+ words.map do |w|
48
+ w = w.downcase
49
+ # one point per partial word matches
50
+ (content.scan(w).size +
51
+ # one point per partial query matches
52
+ content.scan(query).size +
53
+ # two points for exact word match
54
+ (content == w ? 2 : 0) +
55
+ # two points for exact query match
56
+ (content == query ? 2 : 0))
57
+ end.sum
50
58
  end.sum
51
59
 
52
60
  @naive_relevance[query] = score
@@ -1,3 +1,3 @@
1
1
  module NaiveSearch
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -7336,3 +7336,2470 @@ Migrating to AddAgeToPerson (20111108142454)
7336
7336
   (0.0ms) SAVEPOINT active_record_1
7337
7337
  SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 07:36:28 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 07:36:28 UTC +00:00]]
7338
7338
   (0.0ms) RELEASE SAVEPOINT active_record_1
7339
+  (0.1ms) SAVEPOINT active_record_1
7340
+ SQL (85.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7342
+  (0.0ms) SAVEPOINT active_record_1
7343
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7345
+  (0.0ms) SAVEPOINT active_record_1
7346
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7348
+  (0.0ms) SAVEPOINT active_record_1
7349
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7350
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7351
+  (0.0ms) SAVEPOINT active_record_1
7352
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7354
+  (0.0ms) SAVEPOINT active_record_1
7355
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7357
+  (0.2ms) SAVEPOINT active_record_1
7358
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7360
+  (0.0ms) SAVEPOINT active_record_1
7361
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7363
+  (0.1ms) SAVEPOINT active_record_1
7364
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7366
+  (0.0ms) SAVEPOINT active_record_1
7367
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7369
+  (0.0ms) SAVEPOINT active_record_1
7370
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7372
+  (0.0ms) SAVEPOINT active_record_1
7373
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7375
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
7376
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
7377
+  (0.0ms) SAVEPOINT active_record_1
7378
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7380
+  (0.0ms) SAVEPOINT active_record_1
7381
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7383
+  (0.0ms) SAVEPOINT active_record_1
7384
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7386
+  (0.0ms) SAVEPOINT active_record_1
7387
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7389
+  (0.0ms) SAVEPOINT active_record_1
7390
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7391
+  (0.5ms) RELEASE SAVEPOINT active_record_1
7392
+  (0.1ms) SAVEPOINT active_record_1
7393
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7395
+  (0.0ms) SAVEPOINT active_record_1
7396
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7398
+  (0.0ms) SAVEPOINT active_record_1
7399
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7400
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7401
+  (0.0ms) SAVEPOINT active_record_1
7402
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7404
+  (0.0ms) SAVEPOINT active_record_1
7405
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7407
+  (0.0ms) SAVEPOINT active_record_1
7408
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7410
+  (0.0ms) SAVEPOINT active_record_1
7411
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7413
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7414
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7415
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
7416
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
7417
+  (0.0ms) SAVEPOINT active_record_1
7418
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7420
+  (0.0ms) SAVEPOINT active_record_1
7421
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7422
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7423
+  (0.0ms) SAVEPOINT active_record_1
7424
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7426
+  (0.0ms) SAVEPOINT active_record_1
7427
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7429
+  (0.0ms) SAVEPOINT active_record_1
7430
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7432
+  (0.0ms) SAVEPOINT active_record_1
7433
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7435
+  (0.0ms) SAVEPOINT active_record_1
7436
+ SQL (1.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7438
+  (0.0ms) SAVEPOINT active_record_1
7439
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7440
+  (0.6ms) RELEASE SAVEPOINT active_record_1
7441
+  (0.0ms) SAVEPOINT active_record_1
7442
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7443
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7444
+  (0.0ms) SAVEPOINT active_record_1
7445
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7447
+  (0.0ms) SAVEPOINT active_record_1
7448
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7450
+  (0.0ms) SAVEPOINT active_record_1
7451
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7453
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
7454
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
7455
+  (0.0ms) SAVEPOINT active_record_1
7456
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7458
+  (0.0ms) SAVEPOINT active_record_1
7459
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7461
+  (0.0ms) SAVEPOINT active_record_1
7462
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7464
+  (0.0ms) SAVEPOINT active_record_1
7465
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7466
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7467
+  (0.0ms) SAVEPOINT active_record_1
7468
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7469
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7470
+  (0.0ms) SAVEPOINT active_record_1
7471
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7473
+  (0.0ms) SAVEPOINT active_record_1
7474
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7476
+  (0.0ms) SAVEPOINT active_record_1
7477
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7479
+  (0.0ms) SAVEPOINT active_record_1
7480
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7481
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7482
+  (0.0ms) SAVEPOINT active_record_1
7483
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7485
+  (0.0ms) SAVEPOINT active_record_1
7486
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7487
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7488
+  (0.0ms) SAVEPOINT active_record_1
7489
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7491
+  (0.0ms) SAVEPOINT active_record_1
7492
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 12:59:11 UTC +00:00]]
7493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7494
+  (0.1ms) SAVEPOINT active_record_1
7495
+ SQL (47.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7497
+  (0.0ms) SAVEPOINT active_record_1
7498
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7500
+  (0.0ms) SAVEPOINT active_record_1
7501
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7503
+  (0.0ms) SAVEPOINT active_record_1
7504
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7505
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7506
+  (0.0ms) SAVEPOINT active_record_1
7507
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7508
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7509
+  (0.0ms) SAVEPOINT active_record_1
7510
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7512
+  (0.0ms) SAVEPOINT active_record_1
7513
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7514
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7515
+  (0.1ms) SAVEPOINT active_record_1
7516
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7518
+  (0.1ms) SAVEPOINT active_record_1
7519
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7521
+  (0.0ms) SAVEPOINT active_record_1
7522
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7524
+  (0.0ms) SAVEPOINT active_record_1
7525
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7526
+  (1.4ms) RELEASE SAVEPOINT active_record_1
7527
+  (0.0ms) SAVEPOINT active_record_1
7528
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7530
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
7531
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
7532
+  (0.0ms) SAVEPOINT active_record_1
7533
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7535
+  (0.0ms) SAVEPOINT active_record_1
7536
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7538
+  (0.0ms) SAVEPOINT active_record_1
7539
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7541
+  (0.0ms) SAVEPOINT active_record_1
7542
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7544
+  (0.0ms) SAVEPOINT active_record_1
7545
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7547
+  (0.0ms) SAVEPOINT active_record_1
7548
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7550
+  (0.0ms) SAVEPOINT active_record_1
7551
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7553
+  (0.0ms) SAVEPOINT active_record_1
7554
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7556
+  (0.0ms) SAVEPOINT active_record_1
7557
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7559
+  (0.0ms) SAVEPOINT active_record_1
7560
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7562
+  (0.0ms) SAVEPOINT active_record_1
7563
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7565
+  (0.0ms) SAVEPOINT active_record_1
7566
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7568
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7569
+  (0.0ms) SAVEPOINT active_record_1
7570
+ SQL (0.9ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7572
+  (0.0ms) SAVEPOINT active_record_1
7573
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7575
+  (0.0ms) SAVEPOINT active_record_1
7576
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7578
+  (0.0ms) SAVEPOINT active_record_1
7579
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7581
+  (0.0ms) SAVEPOINT active_record_1
7582
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7584
+  (0.0ms) SAVEPOINT active_record_1
7585
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7586
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7587
+  (0.0ms) SAVEPOINT active_record_1
7588
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7590
+  (0.0ms) SAVEPOINT active_record_1
7591
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7593
+  (0.0ms) SAVEPOINT active_record_1
7594
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7595
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7596
+  (0.0ms) SAVEPOINT active_record_1
7597
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7599
+  (0.0ms) SAVEPOINT active_record_1
7600
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7602
+  (0.0ms) SAVEPOINT active_record_1
7603
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7604
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7605
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
7606
+  (0.0ms) SAVEPOINT active_record_1
7607
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7608
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7609
+  (0.0ms) SAVEPOINT active_record_1
7610
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7612
+  (0.0ms) SAVEPOINT active_record_1
7613
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7615
+  (0.0ms) SAVEPOINT active_record_1
7616
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7618
+  (0.0ms) SAVEPOINT active_record_1
7619
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7621
+  (0.0ms) SAVEPOINT active_record_1
7622
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7624
+  (0.0ms) SAVEPOINT active_record_1
7625
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7627
+  (0.0ms) SAVEPOINT active_record_1
7628
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7630
+  (0.0ms) SAVEPOINT active_record_1
7631
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7633
+  (0.0ms) SAVEPOINT active_record_1
7634
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7635
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7636
+  (0.0ms) SAVEPOINT active_record_1
7637
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7639
+  (0.0ms) SAVEPOINT active_record_1
7640
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7642
+  (0.0ms) SAVEPOINT active_record_1
7643
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:40:17 UTC +00:00]]
7644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7645
+  (0.1ms) SAVEPOINT active_record_1
7646
+ SQL (57.0ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7647
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7648
+  (0.1ms) SAVEPOINT active_record_1
7649
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7651
+  (0.0ms) SAVEPOINT active_record_1
7652
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7654
+  (0.0ms) SAVEPOINT active_record_1
7655
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7657
+  (0.0ms) SAVEPOINT active_record_1
7658
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7660
+  (0.0ms) SAVEPOINT active_record_1
7661
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7663
+  (0.0ms) SAVEPOINT active_record_1
7664
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7666
+  (0.0ms) SAVEPOINT active_record_1
7667
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7669
+  (0.1ms) SAVEPOINT active_record_1
7670
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7672
+  (0.0ms) SAVEPOINT active_record_1
7673
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7675
+  (0.0ms) SAVEPOINT active_record_1
7676
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7678
+  (0.0ms) SAVEPOINT active_record_1
7679
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7681
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
7682
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
7683
+  (0.0ms) SAVEPOINT active_record_1
7684
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7686
+  (0.0ms) SAVEPOINT active_record_1
7687
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7689
+  (0.0ms) SAVEPOINT active_record_1
7690
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7692
+  (0.0ms) SAVEPOINT active_record_1
7693
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7695
+  (0.0ms) SAVEPOINT active_record_1
7696
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7698
+  (0.0ms) SAVEPOINT active_record_1
7699
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7701
+  (0.0ms) SAVEPOINT active_record_1
7702
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7704
+  (0.0ms) SAVEPOINT active_record_1
7705
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7707
+  (0.0ms) SAVEPOINT active_record_1
7708
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7710
+  (0.0ms) SAVEPOINT active_record_1
7711
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7713
+  (0.0ms) SAVEPOINT active_record_1
7714
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7716
+  (0.0ms) SAVEPOINT active_record_1
7717
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7719
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7720
+  (0.0ms) SAVEPOINT active_record_1
7721
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7723
+  (0.0ms) SAVEPOINT active_record_1
7724
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7725
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7726
+  (0.0ms) SAVEPOINT active_record_1
7727
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7729
+  (0.0ms) SAVEPOINT active_record_1
7730
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7731
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7732
+  (0.0ms) SAVEPOINT active_record_1
7733
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7735
+  (0.0ms) SAVEPOINT active_record_1
7736
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7738
+  (0.0ms) SAVEPOINT active_record_1
7739
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7741
+  (0.0ms) SAVEPOINT active_record_1
7742
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7744
+  (0.0ms) SAVEPOINT active_record_1
7745
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7747
+  (0.0ms) SAVEPOINT active_record_1
7748
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7750
+  (0.0ms) SAVEPOINT active_record_1
7751
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7753
+  (0.0ms) SAVEPOINT active_record_1
7754
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7756
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
7757
+  (0.1ms) SAVEPOINT active_record_1
7758
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7760
+  (0.0ms) SAVEPOINT active_record_1
7761
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7763
+  (0.0ms) SAVEPOINT active_record_1
7764
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7766
+  (0.0ms) SAVEPOINT active_record_1
7767
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7769
+  (0.0ms) SAVEPOINT active_record_1
7770
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7771
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7772
+  (0.0ms) SAVEPOINT active_record_1
7773
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7774
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7775
+  (0.0ms) SAVEPOINT active_record_1
7776
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7778
+  (0.0ms) SAVEPOINT active_record_1
7779
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7780
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7781
+  (0.0ms) SAVEPOINT active_record_1
7782
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7784
+  (0.0ms) SAVEPOINT active_record_1
7785
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7787
+  (0.0ms) SAVEPOINT active_record_1
7788
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7790
+  (0.0ms) SAVEPOINT active_record_1
7791
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7793
+  (0.0ms) SAVEPOINT active_record_1
7794
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:41:08 UTC +00:00]]
7795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7796
+  (0.1ms) SAVEPOINT active_record_1
7797
+ SQL (39.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7798
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7799
+  (0.0ms) SAVEPOINT active_record_1
7800
+ SQL (1.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7801
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7802
+  (0.0ms) SAVEPOINT active_record_1
7803
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7804
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7805
+  (0.0ms) SAVEPOINT active_record_1
7806
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7808
+  (0.0ms) SAVEPOINT active_record_1
7809
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7810
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7811
+  (0.0ms) SAVEPOINT active_record_1
7812
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7814
+  (0.0ms) SAVEPOINT active_record_1
7815
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7817
+  (0.0ms) SAVEPOINT active_record_1
7818
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7820
+  (0.1ms) SAVEPOINT active_record_1
7821
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7822
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7823
+  (0.0ms) SAVEPOINT active_record_1
7824
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7826
+  (0.0ms) SAVEPOINT active_record_1
7827
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7829
+  (0.0ms) SAVEPOINT active_record_1
7830
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7832
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
7833
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
7834
+  (0.0ms) SAVEPOINT active_record_1
7835
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7836
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7837
+  (0.0ms) SAVEPOINT active_record_1
7838
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7840
+  (0.0ms) SAVEPOINT active_record_1
7841
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7843
+  (0.0ms) SAVEPOINT active_record_1
7844
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7846
+  (0.0ms) SAVEPOINT active_record_1
7847
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7849
+  (0.0ms) SAVEPOINT active_record_1
7850
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7852
+  (0.0ms) SAVEPOINT active_record_1
7853
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7855
+  (0.0ms) SAVEPOINT active_record_1
7856
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7858
+  (0.0ms) SAVEPOINT active_record_1
7859
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7861
+  (0.0ms) SAVEPOINT active_record_1
7862
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7863
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7864
+  (0.0ms) SAVEPOINT active_record_1
7865
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7866
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7867
+  (0.0ms) SAVEPOINT active_record_1
7868
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7869
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7870
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7871
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
7872
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
7873
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
7874
+  (0.0ms) SAVEPOINT active_record_1
7875
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7877
+  (0.0ms) SAVEPOINT active_record_1
7878
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7879
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7880
+  (0.0ms) SAVEPOINT active_record_1
7881
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7882
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7883
+  (0.0ms) SAVEPOINT active_record_1
7884
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7886
+  (0.0ms) SAVEPOINT active_record_1
7887
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7889
+  (0.0ms) SAVEPOINT active_record_1
7890
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7892
+  (0.0ms) SAVEPOINT active_record_1
7893
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7895
+  (0.0ms) SAVEPOINT active_record_1
7896
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7897
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7898
+  (0.0ms) SAVEPOINT active_record_1
7899
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7901
+  (0.0ms) SAVEPOINT active_record_1
7902
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7904
+  (0.0ms) SAVEPOINT active_record_1
7905
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7907
+  (0.0ms) SAVEPOINT active_record_1
7908
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7910
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
7911
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
7912
+  (0.0ms) SAVEPOINT active_record_1
7913
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7914
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7915
+  (0.3ms) SAVEPOINT active_record_1
7916
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7918
+  (0.0ms) SAVEPOINT active_record_1
7919
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7921
+  (0.0ms) SAVEPOINT active_record_1
7922
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7923
+  (0.7ms) RELEASE SAVEPOINT active_record_1
7924
+  (0.0ms) SAVEPOINT active_record_1
7925
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7927
+  (0.0ms) SAVEPOINT active_record_1
7928
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7929
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7930
+  (0.0ms) SAVEPOINT active_record_1
7931
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7932
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7933
+  (0.0ms) SAVEPOINT active_record_1
7934
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7936
+  (0.0ms) SAVEPOINT active_record_1
7937
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7939
+  (0.0ms) SAVEPOINT active_record_1
7940
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7942
+  (0.0ms) SAVEPOINT active_record_1
7943
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7945
+  (0.0ms) SAVEPOINT active_record_1
7946
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7948
+  (0.0ms) SAVEPOINT active_record_1
7949
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:41:27 UTC +00:00]]
7950
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7951
+  (0.1ms) SAVEPOINT active_record_1
7952
+ SQL (55.8ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7953
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7954
+  (0.1ms) SAVEPOINT active_record_1
7955
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7956
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7957
+  (0.0ms) SAVEPOINT active_record_1
7958
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7960
+  (0.0ms) SAVEPOINT active_record_1
7961
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7963
+  (0.0ms) SAVEPOINT active_record_1
7964
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7966
+  (0.0ms) SAVEPOINT active_record_1
7967
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7969
+  (0.0ms) SAVEPOINT active_record_1
7970
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7972
+  (0.0ms) SAVEPOINT active_record_1
7973
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7975
+  (0.1ms) SAVEPOINT active_record_1
7976
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7977
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7978
+  (0.0ms) SAVEPOINT active_record_1
7979
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7981
+  (0.0ms) SAVEPOINT active_record_1
7982
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7984
+  (0.0ms) SAVEPOINT active_record_1
7985
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7987
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
7988
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
7989
+  (0.0ms) SAVEPOINT active_record_1
7990
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7991
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7992
+  (0.0ms) SAVEPOINT active_record_1
7993
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7995
+  (0.0ms) SAVEPOINT active_record_1
7996
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
7997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7998
+  (0.0ms) SAVEPOINT active_record_1
7999
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8001
+  (0.0ms) SAVEPOINT active_record_1
8002
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8004
+  (0.0ms) SAVEPOINT active_record_1
8005
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8007
+  (0.0ms) SAVEPOINT active_record_1
8008
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8010
+  (0.0ms) SAVEPOINT active_record_1
8011
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8013
+  (0.0ms) SAVEPOINT active_record_1
8014
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8016
+  (0.0ms) SAVEPOINT active_record_1
8017
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8019
+  (0.0ms) SAVEPOINT active_record_1
8020
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8022
+  (0.0ms) SAVEPOINT active_record_1
8023
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8025
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8026
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8027
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8028
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8029
+  (0.0ms) SAVEPOINT active_record_1
8030
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8032
+  (0.0ms) SAVEPOINT active_record_1
8033
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8035
+  (0.0ms) SAVEPOINT active_record_1
8036
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8037
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8038
+  (0.0ms) SAVEPOINT active_record_1
8039
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8041
+  (0.0ms) SAVEPOINT active_record_1
8042
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8044
+  (0.0ms) SAVEPOINT active_record_1
8045
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8047
+  (0.0ms) SAVEPOINT active_record_1
8048
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8050
+  (0.0ms) SAVEPOINT active_record_1
8051
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8053
+  (0.0ms) SAVEPOINT active_record_1
8054
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8056
+  (0.0ms) SAVEPOINT active_record_1
8057
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8059
+  (0.0ms) SAVEPOINT active_record_1
8060
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8062
+  (0.0ms) SAVEPOINT active_record_1
8063
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8064
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8065
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8066
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8067
+  (0.0ms) SAVEPOINT active_record_1
8068
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8070
+  (0.0ms) SAVEPOINT active_record_1
8071
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8073
+  (0.1ms) SAVEPOINT active_record_1
8074
+ SQL (1.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8075
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8076
+  (0.0ms) SAVEPOINT active_record_1
8077
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8079
+  (0.0ms) SAVEPOINT active_record_1
8080
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8081
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8082
+  (0.0ms) SAVEPOINT active_record_1
8083
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8085
+  (0.0ms) SAVEPOINT active_record_1
8086
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8088
+  (0.0ms) SAVEPOINT active_record_1
8089
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8091
+  (0.0ms) SAVEPOINT active_record_1
8092
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8093
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8094
+  (0.0ms) SAVEPOINT active_record_1
8095
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8097
+  (0.0ms) SAVEPOINT active_record_1
8098
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8100
+  (0.0ms) SAVEPOINT active_record_1
8101
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8103
+  (0.0ms) SAVEPOINT active_record_1
8104
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:41:40 UTC +00:00]]
8105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8106
+  (0.1ms) SAVEPOINT active_record_1
8107
+ SQL (55.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8109
+  (0.0ms) SAVEPOINT active_record_1
8110
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8111
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8112
+  (0.2ms) SAVEPOINT active_record_1
8113
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8115
+  (0.0ms) SAVEPOINT active_record_1
8116
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8118
+  (0.0ms) SAVEPOINT active_record_1
8119
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8121
+  (0.0ms) SAVEPOINT active_record_1
8122
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8124
+  (0.0ms) SAVEPOINT active_record_1
8125
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8127
+  (0.0ms) SAVEPOINT active_record_1
8128
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8130
+  (0.1ms) SAVEPOINT active_record_1
8131
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8133
+  (0.0ms) SAVEPOINT active_record_1
8134
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8136
+  (0.0ms) SAVEPOINT active_record_1
8137
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8139
+  (0.0ms) SAVEPOINT active_record_1
8140
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8142
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8143
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
8144
+  (0.0ms) SAVEPOINT active_record_1
8145
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8147
+  (0.0ms) SAVEPOINT active_record_1
8148
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8150
+  (0.0ms) SAVEPOINT active_record_1
8151
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8153
+  (0.0ms) SAVEPOINT active_record_1
8154
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8156
+  (0.0ms) SAVEPOINT active_record_1
8157
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8159
+  (0.0ms) SAVEPOINT active_record_1
8160
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8162
+  (0.0ms) SAVEPOINT active_record_1
8163
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8165
+  (0.0ms) SAVEPOINT active_record_1
8166
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8167
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8168
+  (0.0ms) SAVEPOINT active_record_1
8169
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8171
+  (0.0ms) SAVEPOINT active_record_1
8172
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8174
+  (0.0ms) SAVEPOINT active_record_1
8175
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8177
+  (0.0ms) SAVEPOINT active_record_1
8178
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8180
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8181
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8182
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8183
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8184
+  (0.0ms) SAVEPOINT active_record_1
8185
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8187
+  (0.0ms) SAVEPOINT active_record_1
8188
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8190
+  (0.0ms) SAVEPOINT active_record_1
8191
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8193
+  (0.0ms) SAVEPOINT active_record_1
8194
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8195
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8196
+  (0.0ms) SAVEPOINT active_record_1
8197
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8199
+  (0.0ms) SAVEPOINT active_record_1
8200
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8202
+  (0.0ms) SAVEPOINT active_record_1
8203
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8205
+  (0.0ms) SAVEPOINT active_record_1
8206
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8208
+  (0.0ms) SAVEPOINT active_record_1
8209
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8211
+  (0.0ms) SAVEPOINT active_record_1
8212
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8214
+  (0.0ms) SAVEPOINT active_record_1
8215
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8217
+  (0.0ms) SAVEPOINT active_record_1
8218
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8220
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8221
+ Hotel Load (0.3ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8222
+  (0.1ms) SAVEPOINT active_record_1
8223
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8225
+  (0.0ms) SAVEPOINT active_record_1
8226
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8228
+  (0.0ms) SAVEPOINT active_record_1
8229
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8231
+  (0.0ms) SAVEPOINT active_record_1
8232
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8234
+  (0.0ms) SAVEPOINT active_record_1
8235
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8237
+  (0.0ms) SAVEPOINT active_record_1
8238
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8240
+  (0.0ms) SAVEPOINT active_record_1
8241
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8243
+  (0.0ms) SAVEPOINT active_record_1
8244
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8246
+  (0.0ms) SAVEPOINT active_record_1
8247
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8248
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8249
+  (0.0ms) SAVEPOINT active_record_1
8250
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8252
+  (0.0ms) SAVEPOINT active_record_1
8253
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8255
+  (0.0ms) SAVEPOINT active_record_1
8256
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8258
+  (0.0ms) SAVEPOINT active_record_1
8259
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:42:20 UTC +00:00]]
8260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8261
+  (0.1ms) SAVEPOINT active_record_1
8262
+ SQL (38.1ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8264
+  (0.0ms) SAVEPOINT active_record_1
8265
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8267
+  (0.0ms) SAVEPOINT active_record_1
8268
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8270
+  (0.0ms) SAVEPOINT active_record_1
8271
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8273
+  (0.0ms) SAVEPOINT active_record_1
8274
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8276
+  (0.0ms) SAVEPOINT active_record_1
8277
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8279
+  (0.0ms) SAVEPOINT active_record_1
8280
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8282
+  (0.0ms) SAVEPOINT active_record_1
8283
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8285
+  (0.1ms) SAVEPOINT active_record_1
8286
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8288
+  (0.0ms) SAVEPOINT active_record_1
8289
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8291
+  (0.0ms) SAVEPOINT active_record_1
8292
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8294
+  (0.0ms) SAVEPOINT active_record_1
8295
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8296
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8297
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8298
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
8299
+  (0.0ms) SAVEPOINT active_record_1
8300
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8302
+  (0.0ms) SAVEPOINT active_record_1
8303
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8305
+  (0.0ms) SAVEPOINT active_record_1
8306
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8308
+  (0.0ms) SAVEPOINT active_record_1
8309
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8311
+  (0.0ms) SAVEPOINT active_record_1
8312
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8314
+  (0.0ms) SAVEPOINT active_record_1
8315
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:30 UTC +00:00]]
8316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8317
+  (0.0ms) SAVEPOINT active_record_1
8318
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8320
+  (0.0ms) SAVEPOINT active_record_1
8321
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8323
+  (0.0ms) SAVEPOINT active_record_1
8324
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8326
+  (0.0ms) SAVEPOINT active_record_1
8327
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8329
+  (0.0ms) SAVEPOINT active_record_1
8330
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8332
+  (0.0ms) SAVEPOINT active_record_1
8333
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8335
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8336
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8337
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8338
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8339
+  (0.0ms) SAVEPOINT active_record_1
8340
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8342
+  (0.0ms) SAVEPOINT active_record_1
8343
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8345
+  (0.0ms) SAVEPOINT active_record_1
8346
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8348
+  (0.0ms) SAVEPOINT active_record_1
8349
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8350
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8351
+  (0.0ms) SAVEPOINT active_record_1
8352
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8354
+  (0.0ms) SAVEPOINT active_record_1
8355
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8357
+  (0.0ms) SAVEPOINT active_record_1
8358
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8360
+  (0.0ms) SAVEPOINT active_record_1
8361
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8363
+  (0.0ms) SAVEPOINT active_record_1
8364
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8366
+  (0.0ms) SAVEPOINT active_record_1
8367
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8369
+  (0.0ms) SAVEPOINT active_record_1
8370
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8372
+  (0.0ms) SAVEPOINT active_record_1
8373
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8375
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8376
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8377
+  (0.0ms) SAVEPOINT active_record_1
8378
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8380
+  (0.0ms) SAVEPOINT active_record_1
8381
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8383
+  (0.0ms) SAVEPOINT active_record_1
8384
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8386
+  (0.0ms) SAVEPOINT active_record_1
8387
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8389
+  (0.0ms) SAVEPOINT active_record_1
8390
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8392
+  (0.0ms) SAVEPOINT active_record_1
8393
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8395
+  (0.0ms) SAVEPOINT active_record_1
8396
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8398
+  (0.0ms) SAVEPOINT active_record_1
8399
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8400
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8401
+  (0.0ms) SAVEPOINT active_record_1
8402
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8404
+  (0.0ms) SAVEPOINT active_record_1
8405
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8407
+  (0.0ms) SAVEPOINT active_record_1
8408
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8410
+  (0.0ms) SAVEPOINT active_record_1
8411
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8413
+  (0.0ms) SAVEPOINT active_record_1
8414
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:42:31 UTC +00:00]]
8415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8416
+  (0.1ms) SAVEPOINT active_record_1
8417
+ SQL (16.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8419
+  (0.0ms) SAVEPOINT active_record_1
8420
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8422
+  (0.0ms) SAVEPOINT active_record_1
8423
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8425
+  (0.0ms) SAVEPOINT active_record_1
8426
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8428
+  (0.0ms) SAVEPOINT active_record_1
8429
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8431
+  (0.0ms) SAVEPOINT active_record_1
8432
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8434
+  (0.0ms) SAVEPOINT active_record_1
8435
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8437
+  (0.0ms) SAVEPOINT active_record_1
8438
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8440
+  (0.1ms) SAVEPOINT active_record_1
8441
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8443
+  (0.0ms) SAVEPOINT active_record_1
8444
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8446
+  (0.0ms) SAVEPOINT active_record_1
8447
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8449
+  (0.0ms) SAVEPOINT active_record_1
8450
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8452
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8453
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
8454
+  (0.0ms) SAVEPOINT active_record_1
8455
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8457
+  (0.0ms) SAVEPOINT active_record_1
8458
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8460
+  (0.0ms) SAVEPOINT active_record_1
8461
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8463
+  (0.0ms) SAVEPOINT active_record_1
8464
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8466
+  (0.0ms) SAVEPOINT active_record_1
8467
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8469
+  (0.0ms) SAVEPOINT active_record_1
8470
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8472
+  (0.0ms) SAVEPOINT active_record_1
8473
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8475
+  (0.0ms) SAVEPOINT active_record_1
8476
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8478
+  (0.0ms) SAVEPOINT active_record_1
8479
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8481
+  (0.0ms) SAVEPOINT active_record_1
8482
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8484
+  (0.0ms) SAVEPOINT active_record_1
8485
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8487
+  (0.0ms) SAVEPOINT active_record_1
8488
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8490
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY id asc
8491
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8492
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8493
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8494
+  (0.0ms) SAVEPOINT active_record_1
8495
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8497
+  (0.0ms) SAVEPOINT active_record_1
8498
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8500
+  (0.0ms) SAVEPOINT active_record_1
8501
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8503
+  (0.0ms) SAVEPOINT active_record_1
8504
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8505
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8506
+  (0.0ms) SAVEPOINT active_record_1
8507
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8509
+  (0.0ms) SAVEPOINT active_record_1
8510
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8512
+  (0.0ms) SAVEPOINT active_record_1
8513
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8515
+  (0.0ms) SAVEPOINT active_record_1
8516
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8518
+  (0.0ms) SAVEPOINT active_record_1
8519
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8521
+  (0.0ms) SAVEPOINT active_record_1
8522
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8524
+  (0.0ms) SAVEPOINT active_record_1
8525
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8527
+  (0.0ms) SAVEPOINT active_record_1
8528
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8530
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8531
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8532
+  (0.0ms) SAVEPOINT active_record_1
8533
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8535
+  (0.0ms) SAVEPOINT active_record_1
8536
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8538
+  (0.0ms) SAVEPOINT active_record_1
8539
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8541
+  (0.0ms) SAVEPOINT active_record_1
8542
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8544
+  (0.0ms) SAVEPOINT active_record_1
8545
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8546
+  (0.2ms) RELEASE SAVEPOINT active_record_1
8547
+  (0.0ms) SAVEPOINT active_record_1
8548
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8550
+  (0.0ms) SAVEPOINT active_record_1
8551
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8553
+  (0.0ms) SAVEPOINT active_record_1
8554
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8556
+  (0.0ms) SAVEPOINT active_record_1
8557
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8559
+  (0.0ms) SAVEPOINT active_record_1
8560
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8562
+  (0.0ms) SAVEPOINT active_record_1
8563
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8565
+  (0.0ms) SAVEPOINT active_record_1
8566
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8568
+  (0.0ms) SAVEPOINT active_record_1
8569
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:42:45 UTC +00:00]]
8570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8571
+  (0.1ms) SAVEPOINT active_record_1
8572
+ SQL (44.9ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8573
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8574
+  (0.0ms) SAVEPOINT active_record_1
8575
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8577
+  (0.0ms) SAVEPOINT active_record_1
8578
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8580
+  (0.0ms) SAVEPOINT active_record_1
8581
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8583
+  (0.0ms) SAVEPOINT active_record_1
8584
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8586
+  (0.0ms) SAVEPOINT active_record_1
8587
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8589
+  (0.0ms) SAVEPOINT active_record_1
8590
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8592
+  (0.0ms) SAVEPOINT active_record_1
8593
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8595
+  (0.1ms) SAVEPOINT active_record_1
8596
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8598
+  (0.0ms) SAVEPOINT active_record_1
8599
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8601
+  (0.0ms) SAVEPOINT active_record_1
8602
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8604
+  (0.0ms) SAVEPOINT active_record_1
8605
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8607
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8608
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
8609
+  (0.1ms) SAVEPOINT active_record_1
8610
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8612
+  (0.0ms) SAVEPOINT active_record_1
8613
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8615
+  (0.0ms) SAVEPOINT active_record_1
8616
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8618
+  (0.0ms) SAVEPOINT active_record_1
8619
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8621
+  (0.0ms) SAVEPOINT active_record_1
8622
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8624
+  (0.0ms) SAVEPOINT active_record_1
8625
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8627
+  (0.0ms) SAVEPOINT active_record_1
8628
+ SQL (4.8ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8630
+  (0.0ms) SAVEPOINT active_record_1
8631
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8633
+  (0.0ms) SAVEPOINT active_record_1
8634
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8636
+  (0.0ms) SAVEPOINT active_record_1
8637
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8639
+  (0.0ms) SAVEPOINT active_record_1
8640
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8642
+  (0.0ms) SAVEPOINT active_record_1
8643
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8645
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8646
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8647
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8648
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8649
+  (0.0ms) SAVEPOINT active_record_1
8650
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8652
+  (0.0ms) SAVEPOINT active_record_1
8653
+ SQL (2.9ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8655
+  (0.0ms) SAVEPOINT active_record_1
8656
+ SQL (0.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8658
+  (0.0ms) SAVEPOINT active_record_1
8659
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8661
+  (0.0ms) SAVEPOINT active_record_1
8662
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8663
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8664
+  (0.0ms) SAVEPOINT active_record_1
8665
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8667
+  (0.0ms) SAVEPOINT active_record_1
8668
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8669
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8670
+  (0.0ms) SAVEPOINT active_record_1
8671
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8673
+  (0.0ms) SAVEPOINT active_record_1
8674
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8676
+  (0.0ms) SAVEPOINT active_record_1
8677
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8679
+  (0.0ms) SAVEPOINT active_record_1
8680
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8682
+  (0.0ms) SAVEPOINT active_record_1
8683
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8685
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8686
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8687
+  (0.0ms) SAVEPOINT active_record_1
8688
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8690
+  (0.0ms) SAVEPOINT active_record_1
8691
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8692
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8693
+  (0.1ms) SAVEPOINT active_record_1
8694
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8695
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8696
+  (0.0ms) SAVEPOINT active_record_1
8697
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8699
+  (0.0ms) SAVEPOINT active_record_1
8700
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8701
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8702
+  (0.0ms) SAVEPOINT active_record_1
8703
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8705
+  (0.1ms) SAVEPOINT active_record_1
8706
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8707
+  (0.2ms) RELEASE SAVEPOINT active_record_1
8708
+  (0.0ms) SAVEPOINT active_record_1
8709
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8711
+  (0.0ms) SAVEPOINT active_record_1
8712
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8714
+  (0.0ms) SAVEPOINT active_record_1
8715
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8716
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8717
+  (0.0ms) SAVEPOINT active_record_1
8718
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8720
+  (0.1ms) SAVEPOINT active_record_1
8721
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8723
+  (0.1ms) SAVEPOINT active_record_1
8724
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:42:53 UTC +00:00]]
8725
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8726
+  (0.1ms) SAVEPOINT active_record_1
8727
+ SQL (70.0ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8728
+  (0.2ms) RELEASE SAVEPOINT active_record_1
8729
+  (0.0ms) SAVEPOINT active_record_1
8730
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8731
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8732
+  (0.0ms) SAVEPOINT active_record_1
8733
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8735
+  (0.0ms) SAVEPOINT active_record_1
8736
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8738
+  (0.0ms) SAVEPOINT active_record_1
8739
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8740
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8741
+  (0.0ms) SAVEPOINT active_record_1
8742
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8744
+  (0.0ms) SAVEPOINT active_record_1
8745
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8747
+  (0.0ms) SAVEPOINT active_record_1
8748
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8750
+  (0.1ms) SAVEPOINT active_record_1
8751
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8753
+  (0.0ms) SAVEPOINT active_record_1
8754
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8756
+  (0.0ms) SAVEPOINT active_record_1
8757
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8759
+  (0.0ms) SAVEPOINT active_record_1
8760
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8762
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8763
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
8764
+  (0.1ms) SAVEPOINT active_record_1
8765
+ SQL (0.8ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8767
+  (0.0ms) SAVEPOINT active_record_1
8768
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8769
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8770
+  (0.0ms) SAVEPOINT active_record_1
8771
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8773
+  (0.0ms) SAVEPOINT active_record_1
8774
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8776
+  (0.0ms) SAVEPOINT active_record_1
8777
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8779
+  (0.0ms) SAVEPOINT active_record_1
8780
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8781
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8782
+  (0.0ms) SAVEPOINT active_record_1
8783
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8785
+  (0.0ms) SAVEPOINT active_record_1
8786
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8788
+  (0.0ms) SAVEPOINT active_record_1
8789
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8791
+  (0.0ms) SAVEPOINT active_record_1
8792
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8794
+  (0.0ms) SAVEPOINT active_record_1
8795
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8797
+  (0.0ms) SAVEPOINT active_record_1
8798
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:44:46 UTC +00:00]]
8799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8800
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8801
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
8802
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8803
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
8804
+  (0.0ms) SAVEPOINT active_record_1
8805
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8807
+  (0.0ms) SAVEPOINT active_record_1
8808
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8810
+  (0.0ms) SAVEPOINT active_record_1
8811
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8812
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8813
+  (0.0ms) SAVEPOINT active_record_1
8814
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8816
+  (0.0ms) SAVEPOINT active_record_1
8817
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8819
+  (0.0ms) SAVEPOINT active_record_1
8820
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8822
+  (0.0ms) SAVEPOINT active_record_1
8823
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8825
+  (0.0ms) SAVEPOINT active_record_1
8826
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8828
+  (0.0ms) SAVEPOINT active_record_1
8829
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8831
+  (0.0ms) SAVEPOINT active_record_1
8832
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8834
+  (0.0ms) SAVEPOINT active_record_1
8835
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8837
+  (0.0ms) SAVEPOINT active_record_1
8838
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8840
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8841
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
8842
+  (0.0ms) SAVEPOINT active_record_1
8843
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8844
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8845
+  (0.0ms) SAVEPOINT active_record_1
8846
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8848
+  (0.0ms) SAVEPOINT active_record_1
8849
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8851
+  (0.0ms) SAVEPOINT active_record_1
8852
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8854
+  (0.0ms) SAVEPOINT active_record_1
8855
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8857
+  (0.0ms) SAVEPOINT active_record_1
8858
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8860
+  (0.0ms) SAVEPOINT active_record_1
8861
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8863
+  (0.0ms) SAVEPOINT active_record_1
8864
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8866
+  (0.0ms) SAVEPOINT active_record_1
8867
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8869
+  (0.0ms) SAVEPOINT active_record_1
8870
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8872
+  (0.0ms) SAVEPOINT active_record_1
8873
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8874
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8875
+  (0.0ms) SAVEPOINT active_record_1
8876
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8878
+  (0.0ms) SAVEPOINT active_record_1
8879
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:44:47 UTC +00:00]]
8880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8881
+  (0.1ms) SAVEPOINT active_record_1
8882
+ SQL (69.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8883
+  (0.2ms) RELEASE SAVEPOINT active_record_1
8884
+  (0.0ms) SAVEPOINT active_record_1
8885
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8887
+  (0.0ms) SAVEPOINT active_record_1
8888
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8889
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8890
+  (0.0ms) SAVEPOINT active_record_1
8891
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8893
+  (0.0ms) SAVEPOINT active_record_1
8894
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8896
+  (0.0ms) SAVEPOINT active_record_1
8897
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8899
+  (0.0ms) SAVEPOINT active_record_1
8900
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8902
+  (0.0ms) SAVEPOINT active_record_1
8903
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8905
+  (0.1ms) SAVEPOINT active_record_1
8906
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8908
+  (0.0ms) SAVEPOINT active_record_1
8909
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8910
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8911
+  (0.0ms) SAVEPOINT active_record_1
8912
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8914
+  (0.0ms) SAVEPOINT active_record_1
8915
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8917
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
8918
+  (0.0ms) SAVEPOINT active_record_1
8919
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8921
+  (0.0ms) SAVEPOINT active_record_1
8922
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8924
+  (0.0ms) SAVEPOINT active_record_1
8925
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8927
+  (0.0ms) SAVEPOINT active_record_1
8928
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8929
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8930
+  (0.0ms) SAVEPOINT active_record_1
8931
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8932
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8933
+  (0.0ms) SAVEPOINT active_record_1
8934
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8936
+  (0.0ms) SAVEPOINT active_record_1
8937
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8939
+  (0.0ms) SAVEPOINT active_record_1
8940
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8942
+  (0.0ms) SAVEPOINT active_record_1
8943
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8945
+  (0.0ms) SAVEPOINT active_record_1
8946
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8948
+  (0.0ms) SAVEPOINT active_record_1
8949
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8950
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8951
+  (0.0ms) SAVEPOINT active_record_1
8952
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8953
+  (0.2ms) RELEASE SAVEPOINT active_record_1
8954
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY id asc
8955
+  (0.0ms) SAVEPOINT active_record_1
8956
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8957
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8958
+  (0.0ms) SAVEPOINT active_record_1
8959
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8961
+  (0.0ms) SAVEPOINT active_record_1
8962
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8963
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8964
+  (0.0ms) SAVEPOINT active_record_1
8965
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8967
+  (0.0ms) SAVEPOINT active_record_1
8968
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8970
+  (0.0ms) SAVEPOINT active_record_1
8971
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8973
+  (0.0ms) SAVEPOINT active_record_1
8974
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8975
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8976
+  (0.0ms) SAVEPOINT active_record_1
8977
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8978
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8979
+  (0.0ms) SAVEPOINT active_record_1
8980
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8982
+  (0.0ms) SAVEPOINT active_record_1
8983
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8985
+  (0.0ms) SAVEPOINT active_record_1
8986
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8988
+  (0.0ms) SAVEPOINT active_record_1
8989
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8990
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8991
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
8992
+  (0.0ms) SAVEPOINT active_record_1
8993
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8995
+  (0.0ms) SAVEPOINT active_record_1
8996
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
8997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8998
+  (0.0ms) SAVEPOINT active_record_1
8999
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9001
+  (0.0ms) SAVEPOINT active_record_1
9002
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9004
+  (0.0ms) SAVEPOINT active_record_1
9005
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9007
+  (0.0ms) SAVEPOINT active_record_1
9008
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9010
+  (0.0ms) SAVEPOINT active_record_1
9011
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9013
+  (0.0ms) SAVEPOINT active_record_1
9014
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9016
+  (0.0ms) SAVEPOINT active_record_1
9017
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9019
+  (0.0ms) SAVEPOINT active_record_1
9020
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9022
+  (0.0ms) SAVEPOINT active_record_1
9023
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9025
+  (0.0ms) SAVEPOINT active_record_1
9026
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9028
+  (0.0ms) SAVEPOINT active_record_1
9029
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:45:39 UTC +00:00]]
9030
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9031
+  (0.1ms) SAVEPOINT active_record_1
9032
+ SQL (44.1ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9034
+  (0.0ms) SAVEPOINT active_record_1
9035
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9036
+  (0.2ms) RELEASE SAVEPOINT active_record_1
9037
+  (0.0ms) SAVEPOINT active_record_1
9038
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9039
+  (0.3ms) RELEASE SAVEPOINT active_record_1
9040
+  (0.0ms) SAVEPOINT active_record_1
9041
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9043
+  (0.0ms) SAVEPOINT active_record_1
9044
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9046
+  (0.0ms) SAVEPOINT active_record_1
9047
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9049
+  (0.0ms) SAVEPOINT active_record_1
9050
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9051
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9052
+  (0.1ms) SAVEPOINT active_record_1
9053
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9055
+  (0.1ms) SAVEPOINT active_record_1
9056
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9058
+  (0.0ms) SAVEPOINT active_record_1
9059
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9061
+  (0.0ms) SAVEPOINT active_record_1
9062
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9063
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9064
+  (0.0ms) SAVEPOINT active_record_1
9065
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9066
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9067
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
9068
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
9069
+  (0.0ms) SAVEPOINT active_record_1
9070
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9072
+  (0.0ms) SAVEPOINT active_record_1
9073
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9074
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9075
+  (0.0ms) SAVEPOINT active_record_1
9076
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9078
+  (0.0ms) SAVEPOINT active_record_1
9079
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9081
+  (0.0ms) SAVEPOINT active_record_1
9082
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9084
+  (0.0ms) SAVEPOINT active_record_1
9085
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9087
+  (0.0ms) SAVEPOINT active_record_1
9088
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9089
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9090
+  (0.0ms) SAVEPOINT active_record_1
9091
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9093
+  (0.0ms) SAVEPOINT active_record_1
9094
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9095
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9096
+  (0.0ms) SAVEPOINT active_record_1
9097
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9098
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9099
+  (0.0ms) SAVEPOINT active_record_1
9100
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9102
+  (0.0ms) SAVEPOINT active_record_1
9103
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9105
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9106
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY id asc
9107
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9108
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9109
+  (0.0ms) SAVEPOINT active_record_1
9110
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9111
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9112
+  (0.0ms) SAVEPOINT active_record_1
9113
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9115
+  (0.0ms) SAVEPOINT active_record_1
9116
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9118
+  (0.0ms) SAVEPOINT active_record_1
9119
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9121
+  (0.0ms) SAVEPOINT active_record_1
9122
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9124
+  (0.0ms) SAVEPOINT active_record_1
9125
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9127
+  (0.0ms) SAVEPOINT active_record_1
9128
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9130
+  (0.0ms) SAVEPOINT active_record_1
9131
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9133
+  (0.0ms) SAVEPOINT active_record_1
9134
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9136
+  (0.0ms) SAVEPOINT active_record_1
9137
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9139
+  (0.0ms) SAVEPOINT active_record_1
9140
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9142
+  (0.0ms) SAVEPOINT active_record_1
9143
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9145
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
9146
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
9147
+  (0.0ms) SAVEPOINT active_record_1
9148
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9150
+  (0.0ms) SAVEPOINT active_record_1
9151
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9153
+  (0.0ms) SAVEPOINT active_record_1
9154
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9156
+  (0.0ms) SAVEPOINT active_record_1
9157
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9159
+  (0.0ms) SAVEPOINT active_record_1
9160
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9162
+  (0.0ms) SAVEPOINT active_record_1
9163
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9165
+  (0.0ms) SAVEPOINT active_record_1
9166
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9167
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9168
+  (0.0ms) SAVEPOINT active_record_1
9169
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9171
+  (0.0ms) SAVEPOINT active_record_1
9172
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9174
+  (0.0ms) SAVEPOINT active_record_1
9175
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9177
+  (0.0ms) SAVEPOINT active_record_1
9178
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9180
+  (0.0ms) SAVEPOINT active_record_1
9181
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9183
+  (0.0ms) SAVEPOINT active_record_1
9184
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:46:01 UTC +00:00]]
9185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9186
+  (0.1ms) SAVEPOINT active_record_1
9187
+ SQL (31.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9189
+  (0.0ms) SAVEPOINT active_record_1
9190
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9192
+  (0.0ms) SAVEPOINT active_record_1
9193
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9195
+  (0.0ms) SAVEPOINT active_record_1
9196
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9197
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9198
+  (0.0ms) SAVEPOINT active_record_1
9199
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9201
+  (0.0ms) SAVEPOINT active_record_1
9202
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9204
+  (0.0ms) SAVEPOINT active_record_1
9205
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9207
+  (0.0ms) SAVEPOINT active_record_1
9208
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9209
+  (0.4ms) RELEASE SAVEPOINT active_record_1
9210
+  (0.1ms) SAVEPOINT active_record_1
9211
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9213
+  (0.0ms) SAVEPOINT active_record_1
9214
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9216
+  (0.0ms) SAVEPOINT active_record_1
9217
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9219
+  (0.0ms) SAVEPOINT active_record_1
9220
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9222
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
9223
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
9224
+  (0.1ms) SAVEPOINT active_record_1
9225
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9227
+  (0.0ms) SAVEPOINT active_record_1
9228
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9230
+  (0.0ms) SAVEPOINT active_record_1
9231
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9233
+  (0.0ms) SAVEPOINT active_record_1
9234
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9236
+  (0.0ms) SAVEPOINT active_record_1
9237
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9239
+  (0.0ms) SAVEPOINT active_record_1
9240
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9242
+  (0.0ms) SAVEPOINT active_record_1
9243
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9245
+  (0.0ms) SAVEPOINT active_record_1
9246
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9248
+  (0.0ms) SAVEPOINT active_record_1
9249
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9251
+  (0.0ms) SAVEPOINT active_record_1
9252
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9254
+  (0.0ms) SAVEPOINT active_record_1
9255
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9257
+  (0.0ms) SAVEPOINT active_record_1
9258
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9260
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY id asc
9261
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9262
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9263
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9264
+  (0.0ms) SAVEPOINT active_record_1
9265
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9267
+  (0.0ms) SAVEPOINT active_record_1
9268
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9270
+  (0.0ms) SAVEPOINT active_record_1
9271
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9273
+  (0.0ms) SAVEPOINT active_record_1
9274
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9276
+  (0.0ms) SAVEPOINT active_record_1
9277
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9279
+  (0.0ms) SAVEPOINT active_record_1
9280
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9282
+  (0.0ms) SAVEPOINT active_record_1
9283
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9285
+  (0.0ms) SAVEPOINT active_record_1
9286
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9288
+  (0.0ms) SAVEPOINT active_record_1
9289
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9291
+  (0.0ms) SAVEPOINT active_record_1
9292
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9294
+  (0.0ms) SAVEPOINT active_record_1
9295
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9297
+  (0.0ms) SAVEPOINT active_record_1
9298
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9300
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
9301
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
9302
+  (0.0ms) SAVEPOINT active_record_1
9303
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9305
+  (0.0ms) SAVEPOINT active_record_1
9306
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9308
+  (0.0ms) SAVEPOINT active_record_1
9309
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9311
+  (0.0ms) SAVEPOINT active_record_1
9312
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9313
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9314
+  (0.0ms) SAVEPOINT active_record_1
9315
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9317
+  (0.0ms) SAVEPOINT active_record_1
9318
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9320
+  (0.0ms) SAVEPOINT active_record_1
9321
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9323
+  (0.0ms) SAVEPOINT active_record_1
9324
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9326
+  (0.0ms) SAVEPOINT active_record_1
9327
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9328
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9329
+  (0.0ms) SAVEPOINT active_record_1
9330
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9332
+  (0.0ms) SAVEPOINT active_record_1
9333
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9335
+  (0.0ms) SAVEPOINT active_record_1
9336
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9338
+  (0.0ms) SAVEPOINT active_record_1
9339
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:46:10 UTC +00:00]]
9340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9341
+  (0.1ms) SAVEPOINT active_record_1
9342
+ SQL (16.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9344
+  (0.0ms) SAVEPOINT active_record_1
9345
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9347
+  (0.0ms) SAVEPOINT active_record_1
9348
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9350
+  (0.0ms) SAVEPOINT active_record_1
9351
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9353
+  (0.0ms) SAVEPOINT active_record_1
9354
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9356
+  (0.0ms) SAVEPOINT active_record_1
9357
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9359
+  (0.0ms) SAVEPOINT active_record_1
9360
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9362
+  (0.0ms) SAVEPOINT active_record_1
9363
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9365
+  (0.4ms) SAVEPOINT active_record_1
9366
+ SQL (2.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9368
+  (0.0ms) SAVEPOINT active_record_1
9369
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9370
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9371
+  (0.0ms) SAVEPOINT active_record_1
9372
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9374
+  (0.0ms) SAVEPOINT active_record_1
9375
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9376
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9377
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
9378
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
9379
+  (0.0ms) SAVEPOINT active_record_1
9380
+ SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9382
+  (0.0ms) SAVEPOINT active_record_1
9383
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9384
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9385
+  (0.0ms) SAVEPOINT active_record_1
9386
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9388
+  (0.0ms) SAVEPOINT active_record_1
9389
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9391
+  (0.0ms) SAVEPOINT active_record_1
9392
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9394
+  (0.0ms) SAVEPOINT active_record_1
9395
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9397
+  (0.0ms) SAVEPOINT active_record_1
9398
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9400
+  (0.0ms) SAVEPOINT active_record_1
9401
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9403
+  (0.0ms) SAVEPOINT active_record_1
9404
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9405
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9406
+  (0.0ms) SAVEPOINT active_record_1
9407
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9409
+  (0.0ms) SAVEPOINT active_record_1
9410
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9412
+  (0.0ms) SAVEPOINT active_record_1
9413
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9414
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9415
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9416
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9417
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9418
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9419
+  (0.0ms) SAVEPOINT active_record_1
9420
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9422
+  (0.0ms) SAVEPOINT active_record_1
9423
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9425
+  (0.0ms) SAVEPOINT active_record_1
9426
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9428
+  (0.0ms) SAVEPOINT active_record_1
9429
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9430
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9431
+  (0.0ms) SAVEPOINT active_record_1
9432
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9434
+  (0.0ms) SAVEPOINT active_record_1
9435
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9437
+  (0.0ms) SAVEPOINT active_record_1
9438
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9440
+  (0.0ms) SAVEPOINT active_record_1
9441
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9443
+  (0.0ms) SAVEPOINT active_record_1
9444
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9446
+  (0.0ms) SAVEPOINT active_record_1
9447
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9449
+  (0.0ms) SAVEPOINT active_record_1
9450
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9452
+  (0.0ms) SAVEPOINT active_record_1
9453
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9455
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
9456
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
9457
+  (0.1ms) SAVEPOINT active_record_1
9458
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9460
+  (0.0ms) SAVEPOINT active_record_1
9461
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9463
+  (0.0ms) SAVEPOINT active_record_1
9464
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9466
+  (0.0ms) SAVEPOINT active_record_1
9467
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9469
+  (0.0ms) SAVEPOINT active_record_1
9470
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9472
+  (0.0ms) SAVEPOINT active_record_1
9473
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9475
+  (0.0ms) SAVEPOINT active_record_1
9476
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9478
+  (0.0ms) SAVEPOINT active_record_1
9479
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9481
+  (0.0ms) SAVEPOINT active_record_1
9482
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9484
+  (0.0ms) SAVEPOINT active_record_1
9485
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9487
+  (0.0ms) SAVEPOINT active_record_1
9488
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9490
+  (0.0ms) SAVEPOINT active_record_1
9491
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9493
+  (0.0ms) SAVEPOINT active_record_1
9494
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:46:18 UTC +00:00]]
9495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9496
+  (0.1ms) SAVEPOINT active_record_1
9497
+ SQL (17.1ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9499
+  (0.0ms) SAVEPOINT active_record_1
9500
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9502
+  (0.0ms) SAVEPOINT active_record_1
9503
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9505
+  (0.0ms) SAVEPOINT active_record_1
9506
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9508
+  (0.0ms) SAVEPOINT active_record_1
9509
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9511
+  (0.0ms) SAVEPOINT active_record_1
9512
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9514
+  (0.0ms) SAVEPOINT active_record_1
9515
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9517
+  (0.0ms) SAVEPOINT active_record_1
9518
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9520
+  (0.1ms) SAVEPOINT active_record_1
9521
+ SQL (0.4ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9523
+  (0.0ms) SAVEPOINT active_record_1
9524
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9526
+  (0.0ms) SAVEPOINT active_record_1
9527
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9529
+  (0.0ms) SAVEPOINT active_record_1
9530
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9532
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
9533
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
9534
+  (0.1ms) SAVEPOINT active_record_1
9535
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9537
+  (0.0ms) SAVEPOINT active_record_1
9538
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9540
+  (0.1ms) SAVEPOINT active_record_1
9541
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9543
+  (0.0ms) SAVEPOINT active_record_1
9544
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9545
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9546
+  (0.0ms) SAVEPOINT active_record_1
9547
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9549
+  (0.0ms) SAVEPOINT active_record_1
9550
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9552
+  (0.0ms) SAVEPOINT active_record_1
9553
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9554
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9555
+  (0.0ms) SAVEPOINT active_record_1
9556
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9558
+  (0.0ms) SAVEPOINT active_record_1
9559
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9560
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9561
+  (0.0ms) SAVEPOINT active_record_1
9562
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9564
+  (0.0ms) SAVEPOINT active_record_1
9565
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9567
+  (0.0ms) SAVEPOINT active_record_1
9568
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9569
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9570
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9571
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9572
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9573
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9574
+  (0.0ms) SAVEPOINT active_record_1
9575
+ SQL (0.9ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9577
+  (0.0ms) SAVEPOINT active_record_1
9578
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9580
+  (0.0ms) SAVEPOINT active_record_1
9581
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9583
+  (0.0ms) SAVEPOINT active_record_1
9584
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9586
+  (0.0ms) SAVEPOINT active_record_1
9587
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9589
+  (0.0ms) SAVEPOINT active_record_1
9590
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9592
+  (0.0ms) SAVEPOINT active_record_1
9593
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9595
+  (0.0ms) SAVEPOINT active_record_1
9596
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9598
+  (0.0ms) SAVEPOINT active_record_1
9599
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9601
+  (0.1ms) SAVEPOINT active_record_1
9602
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9604
+  (0.0ms) SAVEPOINT active_record_1
9605
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9607
+  (0.0ms) SAVEPOINT active_record_1
9608
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9609
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9610
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
9611
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
9612
+  (0.0ms) SAVEPOINT active_record_1
9613
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9615
+  (0.0ms) SAVEPOINT active_record_1
9616
+ SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9618
+  (0.0ms) SAVEPOINT active_record_1
9619
+ SQL (0.3ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9621
+  (0.0ms) SAVEPOINT active_record_1
9622
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9624
+  (0.0ms) SAVEPOINT active_record_1
9625
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9627
+  (0.0ms) SAVEPOINT active_record_1
9628
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9630
+  (0.0ms) SAVEPOINT active_record_1
9631
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9633
+  (0.0ms) SAVEPOINT active_record_1
9634
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9635
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9636
+  (0.0ms) SAVEPOINT active_record_1
9637
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9639
+  (0.0ms) SAVEPOINT active_record_1
9640
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9642
+  (0.0ms) SAVEPOINT active_record_1
9643
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9645
+  (0.0ms) SAVEPOINT active_record_1
9646
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9648
+  (0.0ms) SAVEPOINT active_record_1
9649
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:46:27 UTC +00:00]]
9650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9651
+  (0.1ms) SAVEPOINT active_record_1
9652
+ SQL (16.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9654
+  (0.0ms) SAVEPOINT active_record_1
9655
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9657
+  (0.0ms) SAVEPOINT active_record_1
9658
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9660
+  (0.0ms) SAVEPOINT active_record_1
9661
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9663
+  (0.0ms) SAVEPOINT active_record_1
9664
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9665
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9666
+  (0.0ms) SAVEPOINT active_record_1
9667
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9669
+  (0.0ms) SAVEPOINT active_record_1
9670
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9672
+  (0.0ms) SAVEPOINT active_record_1
9673
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9675
+  (0.1ms) SAVEPOINT active_record_1
9676
+ SQL (0.5ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9678
+  (0.0ms) SAVEPOINT active_record_1
9679
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9681
+  (0.1ms) SAVEPOINT active_record_1
9682
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9684
+  (0.0ms) SAVEPOINT active_record_1
9685
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9687
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 0
9688
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (naive_search_index like '%arnold%' OR naive_search_index like '%bentley%') ORDER BY id desc LIMIT 2 OFFSET 2
9689
+  (0.0ms) SAVEPOINT active_record_1
9690
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9692
+  (0.0ms) SAVEPOINT active_record_1
9693
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9695
+  (0.0ms) SAVEPOINT active_record_1
9696
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9698
+  (0.0ms) SAVEPOINT active_record_1
9699
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9701
+  (0.0ms) SAVEPOINT active_record_1
9702
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9704
+  (0.0ms) SAVEPOINT active_record_1
9705
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9707
+  (0.0ms) SAVEPOINT active_record_1
9708
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9710
+  (0.0ms) SAVEPOINT active_record_1
9711
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9713
+  (0.0ms) SAVEPOINT active_record_1
9714
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9716
+  (0.0ms) SAVEPOINT active_record_1
9717
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9719
+  (0.0ms) SAVEPOINT active_record_1
9720
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9721
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9722
+  (0.0ms) SAVEPOINT active_record_1
9723
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9725
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9726
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY id asc
9727
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9728
+ Hotel Load (0.1ms) SELECT "hotels".* FROM "hotels" ORDER BY id asc
9729
+  (0.0ms) SAVEPOINT active_record_1
9730
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9731
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9732
+  (0.0ms) SAVEPOINT active_record_1
9733
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9735
+  (0.0ms) SAVEPOINT active_record_1
9736
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9738
+  (0.0ms) SAVEPOINT active_record_1
9739
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9740
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9741
+  (0.0ms) SAVEPOINT active_record_1
9742
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9744
+  (0.0ms) SAVEPOINT active_record_1
9745
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9747
+  (0.0ms) SAVEPOINT active_record_1
9748
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9750
+  (0.0ms) SAVEPOINT active_record_1
9751
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9753
+  (0.0ms) SAVEPOINT active_record_1
9754
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9756
+  (0.0ms) SAVEPOINT active_record_1
9757
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9759
+  (0.0ms) SAVEPOINT active_record_1
9760
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9762
+  (0.0ms) SAVEPOINT active_record_1
9763
+ SQL (0.3ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9765
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%great%' OR naive_search_index like '%breakfast%') ORDER BY rate asc LIMIT 20 OFFSET 0
9766
+ Hotel Load (0.2ms) SELECT "hotels".* FROM "hotels" WHERE (naive_search_index like '%cheap%' OR naive_search_index like '%clean%') ORDER BY rate asc LIMIT 20 OFFSET 0
9767
+  (0.0ms) SAVEPOINT active_record_1
9768
+ SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 50], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "Arnold\nBentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9769
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9770
+  (0.0ms) SAVEPOINT active_record_1
9771
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "Minnie\nBentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9773
+  (0.0ms) SAVEPOINT active_record_1
9774
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "Robert\nBentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9776
+  (0.0ms) SAVEPOINT active_record_1
9777
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "Dennis\nDonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9779
+  (0.0ms) SAVEPOINT active_record_1
9780
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "Stan\nDonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9781
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9782
+  (0.0ms) SAVEPOINT active_record_1
9783
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 69], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "Tina\nDonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9785
+  (0.0ms) SAVEPOINT active_record_1
9786
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "Dan\nBentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9788
+  (0.0ms) SAVEPOINT active_record_1
9789
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 72], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "Julia\nBentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9791
+  (0.0ms) SAVEPOINT active_record_1
9792
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, dirty, great breakfast"], ["naive_search_index", "Holiday Inn\ncheap, dirty, great breakfast"], ["name", "Holiday Inn"], ["rate", 95], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9794
+  (0.0ms) SAVEPOINT active_record_1
9795
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "cheap, clean, simple breakfast"], ["naive_search_index", "Holiday Lodge\ncheap, clean, simple breakfast"], ["name", "Holiday Lodge"], ["rate", 100], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9797
+  (0.0ms) SAVEPOINT active_record_1
9798
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "nice, simple, great breakfast"], ["naive_search_index", "Holiday Motel\nnice, simple, great breakfast"], ["name", "Holiday Motel"], ["rate", 90], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9800
+  (0.0ms) SAVEPOINT active_record_1
9801
+ SQL (0.2ms) INSERT INTO "hotels" ("created_at", "description", "naive_search_index", "name", "rate", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "moderate, simple, nice breakfast"], ["naive_search_index", "Holiday Stay\nmoderate, simple, nice breakfast"], ["name", "Holiday Stay"], ["rate", 130], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9803
+  (0.0ms) SAVEPOINT active_record_1
9804
+ SQL (0.2ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["created_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00], ["description", "nice hat!"], ["naive_search_index", "Abraham\nLincoln\nnice hat!"], ["name", "Abraham"], ["surname", "Lincoln"], ["updated_at", Wed, 09 Nov 2011 15:46:48 UTC +00:00]]
9805
+  (0.0ms) RELEASE SAVEPOINT active_record_1