naive-search 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/naive-search/naive_search_on.rb +7 -5
- data/lib/naive-search/version.rb +1 -1
- data/test/dummy/log/test.log +639 -18175
- metadata +8 -12
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -123
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: naive-search
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-01-09 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &2157828700 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.1.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2157828700
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: unicode_utils
|
27
|
-
requirement: &
|
27
|
+
requirement: &2157828200 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.0.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2157828200
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: sqlite3
|
38
|
-
requirement: &
|
38
|
+
requirement: &2157827820 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2157827820
|
47
47
|
description: Provides very simple full text searching for ActiveRecord, without depending
|
48
48
|
on any particular SQL-feature, search server or anything like that.
|
49
49
|
email:
|
@@ -85,7 +85,6 @@ files:
|
|
85
85
|
- test/dummy/config/locales/en.yml
|
86
86
|
- test/dummy/config/routes.rb
|
87
87
|
- test/dummy/config.ru
|
88
|
-
- test/dummy/db/development.sqlite3
|
89
88
|
- test/dummy/db/migrate/20111107144413_create_people.rb
|
90
89
|
- test/dummy/db/migrate/20111107212128_add_naive_search_index_to_person.rb
|
91
90
|
- test/dummy/db/migrate/20111108071246_create_hotels.rb
|
@@ -96,7 +95,6 @@ files:
|
|
96
95
|
- test/dummy/db/schema.rb
|
97
96
|
- test/dummy/db/seeds.rb
|
98
97
|
- test/dummy/db/test.sqlite3
|
99
|
-
- test/dummy/log/development.log
|
100
98
|
- test/dummy/log/test.log
|
101
99
|
- test/dummy/public/404.html
|
102
100
|
- test/dummy/public/422.html
|
@@ -161,7 +159,6 @@ test_files:
|
|
161
159
|
- test/dummy/config/locales/en.yml
|
162
160
|
- test/dummy/config/routes.rb
|
163
161
|
- test/dummy/config.ru
|
164
|
-
- test/dummy/db/development.sqlite3
|
165
162
|
- test/dummy/db/migrate/20111107144413_create_people.rb
|
166
163
|
- test/dummy/db/migrate/20111107212128_add_naive_search_index_to_person.rb
|
167
164
|
- test/dummy/db/migrate/20111108071246_create_hotels.rb
|
@@ -172,7 +169,6 @@ test_files:
|
|
172
169
|
- test/dummy/db/schema.rb
|
173
170
|
- test/dummy/db/seeds.rb
|
174
171
|
- test/dummy/db/test.sqlite3
|
175
|
-
- test/dummy/log/development.log
|
176
172
|
- test/dummy/log/test.log
|
177
173
|
- test/dummy/public/404.html
|
178
174
|
- test/dummy/public/422.html
|
Binary file
|
@@ -1,123 +0,0 @@
|
|
1
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7
|
-
Migrating to CreatePeople (20111107144413)
|
8
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
9
|
-
[1m[36m (0.6ms)[0m [1mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
10
|
-
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')
|
11
|
-
Migrating to AddNaiveSearchIndexToPerson (20111107212128)
|
12
|
-
[1m[36m (0.5ms)[0m [1mALTER TABLE "people" ADD "naive_search_index" text[0m
|
13
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')
|
14
|
-
Migrating to CreateHotels (20111108071246)
|
15
|
-
[1m[36m (0.5ms)[0m [1mCREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime) [0m
|
16
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')
|
17
|
-
Migrating to AddNaiveSearchIndexToHotel (20111108082054)
|
18
|
-
[1m[36m (0.5ms)[0m [1mALTER TABLE "hotels" ADD "naive_search_index" text[0m
|
19
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')
|
20
|
-
Migrating to AddAgeToPerson (20111108142454)
|
21
|
-
[1m[36m (0.5ms)[0m [1mALTER TABLE "people" ADD "age" integer[0m
|
22
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')
|
23
|
-
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
24
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
25
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("hotels")[0m
|
26
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("people")
|
27
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
28
|
-
Migrating to CreatePeople (20111107144413)
|
29
|
-
Migrating to AddNaiveSearchIndexToPerson (20111107212128)
|
30
|
-
Migrating to CreateHotels (20111108071246)
|
31
|
-
Migrating to AddNaiveSearchIndexToHotel (20111108082054)
|
32
|
-
Migrating to AddAgeToPerson (20111108142454)
|
33
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
34
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
35
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("hotels")
|
36
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("people")[0m
|
37
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
38
|
-
[1m[35m (1.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
39
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
40
|
-
[1m[35m (29.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
41
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
42
|
-
Migrating to CreatePeople (20111107144413)
|
43
|
-
[1m[35m (0.6ms)[0m CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime)
|
44
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')[0m
|
45
|
-
Migrating to AddNaiveSearchIndexToPerson (20111107212128)
|
46
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "people" ADD "naive_search_index" text
|
47
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')[0m
|
48
|
-
Migrating to CreateHotels (20111108071246)
|
49
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime)
|
50
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')[0m
|
51
|
-
Migrating to AddNaiveSearchIndexToHotel (20111108082054)
|
52
|
-
[1m[35m (0.6ms)[0m ALTER TABLE "hotels" ADD "naive_search_index" text
|
53
|
-
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')[0m
|
54
|
-
Migrating to AddAgeToPerson (20111108142454)
|
55
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "people" ADD "age" integer
|
56
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')[0m
|
57
|
-
Migrating to CreateCities (20111117144937)
|
58
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
59
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111117144937')[0m
|
60
|
-
Migrating to AddNaiveSearchIndexToCity (20111117155928)
|
61
|
-
[1m[35m (0.4ms)[0m ALTER TABLE "cities" ADD "naive_search_index" text
|
62
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111117155928')[0m
|
63
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
64
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
65
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("cities")
|
66
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hotels")[0m
|
67
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("people")
|
68
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
69
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
70
|
-
[1m[35mSQL (16.1ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
71
|
-
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 46], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
72
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 44], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
73
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 46], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
74
|
-
[1m[35mSQL (0.5ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
75
|
-
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 66], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
76
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
77
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 68], ["created_at", Thu, 17 Nov 2011 15:05:29 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", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
78
|
-
[1m[35mSQL (0.5ms)[0m INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "Örnsköldsvik"], ["name", "Örnsköldsvik"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
79
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "Örebro"], ["name", "Örebro"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
80
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "malmö"], ["name", "Malmö"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
|
81
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
82
|
-
[1m[35m (10.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
83
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
84
|
-
[1m[35m (36.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
85
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
86
|
-
Migrating to CreatePeople (20111107144413)
|
87
|
-
[1m[35m (0.6ms)[0m CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime)
|
88
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')[0m
|
89
|
-
Migrating to AddNaiveSearchIndexToPerson (20111107212128)
|
90
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "people" ADD "naive_search_index" text
|
91
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')[0m
|
92
|
-
Migrating to CreateHotels (20111108071246)
|
93
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime)
|
94
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')[0m
|
95
|
-
Migrating to AddNaiveSearchIndexToHotel (20111108082054)
|
96
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "hotels" ADD "naive_search_index" text
|
97
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')[0m
|
98
|
-
Migrating to AddAgeToPerson (20111108142454)
|
99
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "people" ADD "age" integer
|
100
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')[0m
|
101
|
-
Migrating to CreateCities (20111117144937)
|
102
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
103
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111117144937')[0m
|
104
|
-
Migrating to AddNaiveSearchIndexToCity (20111117155928)
|
105
|
-
[1m[35m (0.4ms)[0m ALTER TABLE "cities" ADD "naive_search_index" text
|
106
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111117155928')[0m
|
107
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
108
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
109
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("cities")
|
110
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hotels")[0m
|
111
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("people")
|
112
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
113
|
-
[1m[35mSQL (48.4ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
114
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 46], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
115
|
-
[1m[35mSQL (0.5ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 44], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
116
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 46], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
117
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
118
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 66], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
119
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
120
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["age", 68], ["created_at", Thu, 17 Nov 2011 15:15:44 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", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
121
|
-
[1m[35mSQL (0.6ms)[0m INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "örnsköldsvik"], ["name", "Örnsköldsvik"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
122
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "örebro"], ["name", "Örebro"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|
123
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "malmö"], ["name", "Malmö"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
|