easy_union_set 0.0.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/easy_union_set.rb +18 -12
- data/lib/easy_union_set/version.rb +1 -1
- data/test/dummy/app/models/user.rb +2 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140804181328_create_users.rb +9 -0
- data/test/dummy/db/schema.rb +7 -1
- data/test/dummy/log/development.log +658 -0
- data/test/dummy/spec/easy_union_set_spec.rb +1 -1
- data/test/dummy/spec/factories/users.rb +7 -0
- data/test/dummy/spec/models/user_spec.rb +5 -0
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5a3773ff66fc517649dd1fb8a0b0f09d792f888
|
4
|
+
data.tar.gz: 61ad7c1382b018f72e23051fed4eb08ef2afa1cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9e5d3b6febfba4239b338c485c1765608a3fab1055470577b9440b1b3e829289932ec49f750dc237049758ea37e325c94741efa6592a3883492e53db66e5c9b
|
7
|
+
data.tar.gz: 273c88a7454da2489850d4596a9ee0b5dfea6bb4237c25c70598349a0086fcc37e1bf334d9a71f7dc3a3b8a984503faf273826d0f5bed6d9d9e4f0030f2c32f2
|
data/lib/easy_union_set.rb
CHANGED
@@ -4,23 +4,29 @@ module EasyUnionSet
|
|
4
4
|
module GroupMethods
|
5
5
|
|
6
6
|
def & ar_rel
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
case ar_rel
|
8
|
+
when ActiveRecord::Relation
|
9
|
+
set = self.intersect(ar_rel)
|
10
|
+
table_alias = arel_table.create_table_alias(set, table_name)
|
11
|
+
|
12
|
+
ancestors.first.from(table_alias)
|
13
|
+
else
|
14
|
+
super
|
15
|
+
end
|
11
16
|
end
|
12
17
|
|
13
18
|
def | ar_rel
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
19
|
+
case ar_rel
|
20
|
+
when ActiveRecord::Relation
|
21
|
+
union = self.union(ar_rel)
|
22
|
+
when Hash
|
23
|
+
ar_rel.assert_valid_keys(:all)
|
24
|
+
union = self.union(:all, ar_rel[:all])
|
25
|
+
else
|
26
|
+
return super
|
27
|
+
end
|
21
28
|
|
22
29
|
table_alias = arel_table.create_table_alias(union, table_name)
|
23
|
-
|
24
30
|
ancestors.first.from(table_alias)
|
25
31
|
end
|
26
32
|
end
|
Binary file
|
data/test/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20140804181328) do
|
15
15
|
|
16
16
|
create_table "projects", force: true do |t|
|
17
17
|
t.string "title"
|
@@ -21,4 +21,10 @@ ActiveRecord::Schema.define(version: 20140804121508) do
|
|
21
21
|
t.datetime "updated_at"
|
22
22
|
end
|
23
23
|
|
24
|
+
create_table "users", force: true do |t|
|
25
|
+
t.string "name"
|
26
|
+
t.datetime "created_at"
|
27
|
+
t.datetime "updated_at"
|
28
|
+
end
|
29
|
+
|
24
30
|
end
|
@@ -3897,3 +3897,661 @@ SQLite3::SQLException: near "NULL": syntax error: SELECT "projects".* FROM NULL
|
|
3897
3897
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3898
3898
|
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"[0m
|
3899
3899
|
[1m[35m (0.4ms)[0m rollback transaction
|
3900
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3901
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3902
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3903
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3904
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3905
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "implement world-class solutions"], ["created_at", "2014-08-04 14:54:31.580842"], ["description", "Atque qui sint sequi alias sit."], ["title", "array"], ["updated_at", "2014-08-04 14:54:31.580842"]]
|
3906
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3908
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "mesh ubiquitous architectures"], ["created_at", "2014-08-04 14:54:31.587769"], ["description", "Omnis eos quas quidem ut."], ["title", "firewall"], ["updated_at", "2014-08-04 14:54:31.587769"]]
|
3909
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3910
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3911
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize e-business schemas"], ["created_at", "2014-08-04 14:54:31.590262"], ["description", "Animi nihil mollitia expedita."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:54:31.590262"]]
|
3912
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3913
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3914
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "visualize back-end partnerships"], ["created_at", "2014-08-04 14:54:31.591478"], ["description", "Iure similique officiis quasi quia et qui."], ["title", "feed"], ["updated_at", "2014-08-04 14:54:31.591478"]]
|
3915
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3916
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3917
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale clicks-and-mortar e-markets"], ["created_at", "2014-08-04 14:54:31.592538"], ["description", "Magni nostrum voluptatum expedita ea quod vitae distinctio a."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:54:31.592538"]]
|
3918
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3919
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3920
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "orchestrate transparent models"], ["created_at", "2014-08-04 14:54:31.593527"], ["description", "Dolorum enim nihil amet eum vel nulla labore."], ["title", "program"], ["updated_at", "2014-08-04 14:54:31.593527"]]
|
3921
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3922
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3923
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix world-class technologies"], ["created_at", "2014-08-04 14:54:31.594976"], ["description", "Iste sunt ullam sapiente atque ratione ipsa."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.594976"]]
|
3924
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3925
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3926
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "leverage clicks-and-mortar supply-chains"], ["created_at", "2014-08-04 14:54:31.596693"], ["description", "Error corrupti id porro est reiciendis."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.596693"]]
|
3927
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3929
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "seize ubiquitous technologies"], ["created_at", "2014-08-04 14:54:31.598018"], ["description", "Impedit qui corporis id expedita adipisci blanditiis."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.598018"]]
|
3930
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3932
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "mesh killer networks"], ["created_at", "2014-08-04 14:54:31.599172"], ["description", "Asperiores qui aut unde."], ["title", "alarm"], ["updated_at", "2014-08-04 14:54:31.599172"]]
|
3933
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3934
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3935
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3936
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3937
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deploy open-source ROI"], ["created_at", "2014-08-04 14:54:31.606603"], ["description", "Explicabo libero accusantium vel et."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:54:31.606603"]]
|
3938
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3939
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3940
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "matrix open-source infomediaries"], ["created_at", "2014-08-04 14:54:31.608490"], ["description", "Exercitationem praesentium id quis nostrum tempora."], ["title", "array"], ["updated_at", "2014-08-04 14:54:31.608490"]]
|
3941
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3942
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3943
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engage collaborative paradigms"], ["created_at", "2014-08-04 14:54:31.610085"], ["description", "Ex saepe est quo."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.610085"]]
|
3944
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3945
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3946
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "benchmark collaborative solutions"], ["created_at", "2014-08-04 14:54:31.611217"], ["description", "Optio inventore consequatur eos nobis aliquam expedita."], ["title", "panel"], ["updated_at", "2014-08-04 14:54:31.611217"]]
|
3947
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3949
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "visualize distributed channels"], ["created_at", "2014-08-04 14:54:31.612396"], ["description", "Ea et eos et accusantium modi."], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.612396"]]
|
3950
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3952
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "matrix 24/365 eyeballs"], ["created_at", "2014-08-04 14:54:31.613609"], ["description", "Numquam rem quam est blanditiis labore."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.613609"]]
|
3953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3954
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3955
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate synergistic paradigms"], ["created_at", "2014-08-04 14:54:31.614636"], ["description", "Et quo mollitia fuga sapiente nesciunt saepe nihil."], ["title", "transmitter"], ["updated_at", "2014-08-04 14:54:31.614636"]]
|
3956
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3957
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3958
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "engage strategic systems"], ["created_at", "2014-08-04 14:54:31.615917"], ["description", "Beatae sed nemo error cupiditate laboriosam ipsum dolorum."], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.615917"]]
|
3959
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3960
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3961
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix global platforms"], ["created_at", "2014-08-04 14:54:31.617584"], ["description", "Id error consequatur nobis."], ["title", "alarm"], ["updated_at", "2014-08-04 14:54:31.617584"]]
|
3962
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3964
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "whiteboard collaborative mindshare"], ["created_at", "2014-08-04 14:54:31.619264"], ["description", "Ad harum cupiditate consectetur repellat pariatur atque."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.619264"]]
|
3965
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3966
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3967
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3968
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3969
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize virtual web-readiness"], ["created_at", "2014-08-04 14:54:31.623770"], ["description", "In illum at fugit sit."], ["title", "microchip"], ["updated_at", "2014-08-04 14:54:31.623770"]]
|
3970
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3971
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3972
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "enable distributed e-business"], ["created_at", "2014-08-04 14:54:31.626039"], ["description", "Voluptate ut eius et illo accusamus id nobis natus."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.626039"]]
|
3973
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3974
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3975
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize extensible platforms"], ["created_at", "2014-08-04 14:54:31.627719"], ["description", "Sapiente corrupti repellendus quis aspernatur itaque sequi quaerat unde."], ["title", "pixel"], ["updated_at", "2014-08-04 14:54:31.627719"]]
|
3976
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3977
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3978
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "enable virtual convergence"], ["created_at", "2014-08-04 14:54:31.629114"], ["description", "Ut velit voluptatem a molestiae qui excepturi maxime quaerat."], ["title", "sensor"], ["updated_at", "2014-08-04 14:54:31.629114"]]
|
3979
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3980
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3981
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "morph leading-edge e-services"], ["created_at", "2014-08-04 14:54:31.630414"], ["description", "Sit eaque iusto est voluptatem."], ["title", "microchip"], ["updated_at", "2014-08-04 14:54:31.630414"]]
|
3982
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3983
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3984
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "innovate robust e-business"], ["created_at", "2014-08-04 14:54:31.631766"], ["description", "Facere fuga repellat deleniti quibusdam iusto accusamus."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.631766"]]
|
3985
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3986
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3987
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "transition killer networks"], ["created_at", "2014-08-04 14:54:31.633082"], ["description", "Pariatur qui et quia."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.633082"]]
|
3988
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3989
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3990
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "innovate ubiquitous infomediaries"], ["created_at", "2014-08-04 14:54:31.634289"], ["description", "Animi qui doloremque natus sed nostrum dolores."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.634289"]]
|
3991
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3992
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3993
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize dot-com mindshare"], ["created_at", "2014-08-04 14:54:31.635333"], ["description", "Nihil est ut rem occaecati voluptas necessitatibus."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.635333"]]
|
3994
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3995
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3996
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "matrix front-end markets"], ["created_at", "2014-08-04 14:54:31.636366"], ["description", "Officiis ad autem ipsum quia aut natus saepe ab."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.636366"]]
|
3997
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3998
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3999
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "extend bricks-and-clicks eyeballs"], ["created_at", "2014-08-04 14:54:31.637811"], ["description", "Quod sunt laboriosam et ab vel unde qui consequatur."], ["title", "program"], ["updated_at", "2014-08-04 14:54:31.637811"]]
|
4000
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4001
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4002
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "repurpose efficient functionalities"], ["created_at", "2014-08-04 14:54:31.639753"], ["description", "Quo nesciunt veritatis quod quibusdam."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.639753"]]
|
4003
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4004
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4005
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh e-business e-commerce"], ["created_at", "2014-08-04 14:54:31.642136"], ["description", "Provident quasi enim voluptatem mollitia consequuntur quidem."], ["title", "panel"], ["updated_at", "2014-08-04 14:54:31.642136"]]
|
4006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4008
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "visualize back-end technologies"], ["created_at", "2014-08-04 14:54:31.643636"], ["description", "Ut qui quae ad recusandae voluptas a minus dolor."], ["title", "circuit"], ["updated_at", "2014-08-04 14:54:31.643636"]]
|
4009
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4010
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4011
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "whiteboard vertical applications"], ["created_at", "2014-08-04 14:54:31.644973"], ["description", "Praesentium doloremque dicta fuga quo harum pariatur magnam voluptate."], ["title", "circuit"], ["updated_at", "2014-08-04 14:54:31.644973"]]
|
4012
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4013
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4014
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "embrace sticky web services"], ["created_at", "2014-08-04 14:54:31.646444"], ["description", "Blanditiis et ullam laborum omnis sint animi et necessitatibus."], ["title", "monitor"], ["updated_at", "2014-08-04 14:54:31.646444"]]
|
4015
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4016
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4017
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deliver integrated networks"], ["created_at", "2014-08-04 14:54:31.647720"], ["description", "Minima occaecati accusantium voluptatem at id qui."], ["title", "port"], ["updated_at", "2014-08-04 14:54:31.647720"]]
|
4018
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4020
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "productize frictionless paradigms"], ["created_at", "2014-08-04 14:54:31.648734"], ["description", "Et quos eius maiores dignissimos."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:54:31.648734"]]
|
4021
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4022
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4023
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "utilize ubiquitous partnerships"], ["created_at", "2014-08-04 14:54:31.649943"], ["description", "Quia commodi consequatur voluptatibus."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:54:31.649943"]]
|
4024
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4025
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4026
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "morph back-end networks"], ["created_at", "2014-08-04 14:54:31.651930"], ["description", "Consequatur ad rerum cum ex provident et fugiat."], ["title", "bus"], ["updated_at", "2014-08-04 14:54:31.651930"]]
|
4027
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4028
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4029
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4030
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4031
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.657776"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.657776"]]
|
4032
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4033
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%')
|
4034
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%')[0m
|
4035
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%')
|
4036
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
4037
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4038
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4039
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "synthesize frictionless eyeballs"], ["created_at", "2014-08-04 14:54:31.661372"], ["description", "Pariatur aperiam fuga eos iusto ut cupiditate."], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.661372"]]
|
4040
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4041
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4042
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "productize out-of-the-box channels"], ["created_at", "2014-08-04 14:54:31.662743"], ["description", "some proj"], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.662743"]]
|
4043
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4045
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.663953"], ["description", "Dolores tempore cum ad qui."], ["title", "port"], ["updated_at", "2014-08-04 14:54:31.663953"]]
|
4046
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4047
|
+
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
|
4048
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4049
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4050
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4051
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.667348"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.667348"]]
|
4052
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4053
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
|
4054
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"[0m
|
4055
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4056
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4057
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4058
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.674905"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.674905"]]
|
4059
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4060
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"[0m
|
4061
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4063
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4064
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.679809"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.679809"]]
|
4065
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4066
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"[0m
|
4067
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4068
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4069
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "orchestrate efficient channels"], ["created_at", "2014-08-04 14:55:28.752818"], ["description", "Rerum sequi rerum molestias asperiores ab amet unde voluptatibus."], ["title", "panel"], ["updated_at", "2014-08-04 14:55:28.752818"]]
|
4070
|
+
[1m[36m (9.1ms)[0m [1mcommit transaction[0m
|
4071
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4072
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "monetize B2C convergence"], ["created_at", "2014-08-04 14:55:28.766976"], ["description", "Reprehenderit dolores aspernatur a soluta perferendis libero occaecati non."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.766976"]]
|
4073
|
+
[1m[35m (1.1ms)[0m commit transaction
|
4074
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4075
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "exploit wireless applications"], ["created_at", "2014-08-04 14:55:28.771780"], ["description", "Quia officia alias ducimus labore cumque."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.771780"]]
|
4076
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
4077
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4078
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "innovate cutting-edge deliverables"], ["created_at", "2014-08-04 14:55:28.775345"], ["description", "Aut odio rerum possimus."], ["title", "application"], ["updated_at", "2014-08-04 14:55:28.775345"]]
|
4079
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4081
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "repurpose sexy content"], ["created_at", "2014-08-04 14:55:28.778696"], ["description", "Aut similique quae ipsa eum consectetur sed sint."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.778696"]]
|
4082
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4083
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4084
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "productize front-end systems"], ["created_at", "2014-08-04 14:55:28.781851"], ["description", "Iusto saepe est debitis voluptate provident eos."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.781851"]]
|
4085
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4086
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4087
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage robust channels"], ["created_at", "2014-08-04 14:55:28.785244"], ["description", "Dignissimos alias ut unde quia."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.785244"]]
|
4088
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4089
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4090
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "unleash innovative applications"], ["created_at", "2014-08-04 14:55:28.788894"], ["description", "In voluptatibus aut natus quos in ut eos vel."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:55:28.788894"]]
|
4091
|
+
[1m[35m (1.5ms)[0m commit transaction
|
4092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4093
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "drive next-generation e-commerce"], ["created_at", "2014-08-04 14:55:28.793197"], ["description", "Deleniti porro eos minima natus quia."], ["title", "firewall"], ["updated_at", "2014-08-04 14:55:28.793197"]]
|
4094
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4095
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4096
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "redefine dot-com functionalities"], ["created_at", "2014-08-04 14:55:28.796569"], ["description", "Ut similique dolorum expedita et suscipit voluptas eum."], ["title", "protocol"], ["updated_at", "2014-08-04 14:55:28.796569"]]
|
4097
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4098
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4099
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage granular e-commerce"], ["created_at", "2014-08-04 14:55:28.799123"], ["description", "Aut et eius qui iste."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.799123"]]
|
4100
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4101
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4102
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "grow interactive mindshare"], ["created_at", "2014-08-04 14:55:28.801745"], ["description", "Animi ipsam et et similique omnis ut beatae."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.801745"]]
|
4103
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4104
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4105
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "iterate dynamic channels"], ["created_at", "2014-08-04 14:55:28.805894"], ["description", "Nesciunt doloremque aut sit."], ["title", "array"], ["updated_at", "2014-08-04 14:55:28.805894"]]
|
4106
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
4107
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4108
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "generate B2B solutions"], ["created_at", "2014-08-04 14:55:28.811406"], ["description", "Nihil ducimus recusandae natus quia at veniam fugiat."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.811406"]]
|
4109
|
+
[1m[35m (1.2ms)[0m commit transaction
|
4110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4111
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "revolutionize magnetic architectures"], ["created_at", "2014-08-04 14:55:28.815675"], ["description", "Velit odit ullam laboriosam cumque natus quae."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.815675"]]
|
4112
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4113
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4114
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "deliver proactive experiences"], ["created_at", "2014-08-04 14:55:28.818257"], ["description", "Sint rerum commodi libero nisi est quam suscipit."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.818257"]]
|
4115
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4117
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "redefine extensible e-tailers"], ["created_at", "2014-08-04 14:55:28.820697"], ["description", "Voluptas quas eos veniam dolore enim ut."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.820697"]]
|
4118
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4120
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "mesh one-to-one vortals"], ["created_at", "2014-08-04 14:55:28.823081"], ["description", "Culpa et velit ipsum expedita ut unde."], ["title", "firewall"], ["updated_at", "2014-08-04 14:55:28.823081"]]
|
4121
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4123
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "whiteboard virtual functionalities"], ["created_at", "2014-08-04 14:55:28.825585"], ["description", "Similique aut nesciunt non est deleniti."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.825585"]]
|
4124
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4125
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4126
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "optimize wireless markets"], ["created_at", "2014-08-04 14:55:28.828237"], ["description", "Doloremque similique nisi dolorem asperiores cumque occaecati et eum."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.828237"]]
|
4127
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4129
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline frictionless mindshare"], ["created_at", "2014-08-04 14:55:28.831813"], ["description", "Reprehenderit reiciendis est mollitia nemo aut rem sunt."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.831813"]]
|
4130
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
4131
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4132
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "enhance user-centric channels"], ["created_at", "2014-08-04 14:55:28.835249"], ["description", "Quae architecto mollitia consequuntur nisi."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.835249"]]
|
4133
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4134
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4135
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix strategic synergies"], ["created_at", "2014-08-04 14:55:28.839559"], ["description", "Nihil molestiae distinctio consequuntur."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.839559"]]
|
4136
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
4137
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4138
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "innovate integrated e-tailers"], ["created_at", "2014-08-04 14:55:28.844282"], ["description", "Enim aut nobis ad aliquid excepturi eaque."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.844282"]]
|
4139
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4141
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deploy rich metrics"], ["created_at", "2014-08-04 14:55:28.848715"], ["description", "Minus numquam sint minima nostrum omnis voluptatem vel."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.848715"]]
|
4142
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4143
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4144
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "monetize B2B metrics"], ["created_at", "2014-08-04 14:55:28.851871"], ["description", "Esse praesentium sed autem quia numquam tenetur."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.851871"]]
|
4145
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4147
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand bleeding-edge infomediaries"], ["created_at", "2014-08-04 14:55:28.854920"], ["description", "Nesciunt eligendi sint voluptatem quas doloremque officiis."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.854920"]]
|
4148
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4149
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4150
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "generate efficient web services"], ["created_at", "2014-08-04 14:55:28.857552"], ["description", "Sed natus eos numquam iusto."], ["title", "microchip"], ["updated_at", "2014-08-04 14:55:28.857552"]]
|
4151
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4153
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "optimize killer platforms"], ["created_at", "2014-08-04 14:55:28.860029"], ["description", "Cum aut ea asperiores occaecati rem et."], ["title", "array"], ["updated_at", "2014-08-04 14:55:28.860029"]]
|
4154
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4155
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4156
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "generate value-added eyeballs"], ["created_at", "2014-08-04 14:55:28.862751"], ["description", "Magni id suscipit dolores."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:55:28.862751"]]
|
4157
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4159
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "cultivate e-business web services"], ["created_at", "2014-08-04 14:55:28.865826"], ["description", "Dolorum odio ex aut."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.865826"]]
|
4160
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
4161
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4162
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "enable proactive supply-chains"], ["created_at", "2014-08-04 14:55:28.868715"], ["description", "Neque unde ad ratione reiciendis asperiores dolorem error."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.868715"]]
|
4163
|
+
[1m[35m (1.2ms)[0m commit transaction
|
4164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4165
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "disintermediate interactive portals"], ["created_at", "2014-08-04 14:55:28.873078"], ["description", "Voluptas qui repudiandae illo deleniti fuga assumenda rem."], ["title", "matrix"], ["updated_at", "2014-08-04 14:55:28.873078"]]
|
4166
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4167
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4168
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "recontextualize user-centric e-tailers"], ["created_at", "2014-08-04 14:55:28.876130"], ["description", "Est commodi nihil qui omnis est voluptatem voluptatem."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.876130"]]
|
4169
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4171
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "morph revolutionary mindshare"], ["created_at", "2014-08-04 14:55:28.878639"], ["description", "Expedita autem quo commodi."], ["title", "microchip"], ["updated_at", "2014-08-04 14:55:28.878639"]]
|
4172
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4173
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4174
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "maximize revolutionary synergies"], ["created_at", "2014-08-04 14:55:28.881097"], ["description", "Cum est quaerat aut et."], ["title", "panel"], ["updated_at", "2014-08-04 14:55:28.881097"]]
|
4175
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4177
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "cultivate best-of-breed deliverables"], ["created_at", "2014-08-04 14:55:28.883458"], ["description", "Corrupti aut ipsum quae aut facere ipsa eveniet unde."], ["title", "transmitter"], ["updated_at", "2014-08-04 14:55:28.883458"]]
|
4178
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4179
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4180
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "optimize clicks-and-mortar synergies"], ["created_at", "2014-08-04 14:55:28.886148"], ["description", "Qui voluptatem doloremque esse aliquid et."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.886148"]]
|
4181
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4183
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow web-enabled infomediaries"], ["created_at", "2014-08-04 14:55:28.889289"], ["description", "Autem delectus necessitatibus culpa."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.889289"]]
|
4184
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
4185
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4186
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "unleash bleeding-edge users"], ["created_at", "2014-08-04 14:55:28.895536"], ["description", "Et eos tenetur nisi dolore nam."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.895536"]]
|
4187
|
+
[1m[35m (1.2ms)[0m commit transaction
|
4188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4189
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reintermediate front-end schemas"], ["created_at", "2014-08-04 14:55:28.899735"], ["description", "Voluptate eum exercitationem eum at autem odio labore."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.899735"]]
|
4190
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4191
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4192
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "monetize intuitive web services"], ["created_at", "2014-08-04 14:55:28.902977"], ["description", "Et omnis incidunt inventore vel."], ["title", "feed"], ["updated_at", "2014-08-04 14:55:28.902977"]]
|
4193
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4195
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer visionary action-items"], ["created_at", "2014-08-04 14:55:28.906034"], ["description", "Omnis quas aliquid deleniti."], ["title", "port"], ["updated_at", "2014-08-04 14:55:28.906034"]]
|
4196
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4197
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4198
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "strategize world-class e-business"], ["created_at", "2014-08-04 14:55:28.908924"], ["description", "Aspernatur sint qui quasi."], ["title", "feed"], ["updated_at", "2014-08-04 14:55:28.908924"]]
|
4199
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4200
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4201
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer distributed networks"], ["created_at", "2014-08-04 14:55:28.912996"], ["description", "Omnis nostrum commodi iste quidem quasi repellat."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.912996"]]
|
4202
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
4203
|
+
[1m[35m (0.2ms)[0m begin transaction
|
4204
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "visualize revolutionary initiatives"], ["created_at", "2014-08-04 14:55:28.916391"], ["description", "Tenetur dolores nemo dolore voluptas ut accusantium quaerat."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.916391"]]
|
4205
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4206
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4207
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable killer action-items"], ["created_at", "2014-08-04 14:55:28.919399"], ["description", "Eos sunt voluptatem quisquam tempora qui repellat deserunt."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.919399"]]
|
4208
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4209
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4210
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "leverage ubiquitous architectures"], ["created_at", "2014-08-04 14:55:28.922473"], ["description", "Quisquam illo nisi est rerum."], ["title", "program"], ["updated_at", "2014-08-04 14:55:28.922473"]]
|
4211
|
+
[1m[35m (1.1ms)[0m commit transaction
|
4212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4213
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale magnetic e-business"], ["created_at", "2014-08-04 14:55:28.927700"], ["description", "Enim odit aut laudantium dolor esse cupiditate."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.927700"]]
|
4214
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
4215
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4216
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "expedite dot-com technologies"], ["created_at", "2014-08-04 14:55:28.931904"], ["description", "Nesciunt omnis enim earum."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.931904"]]
|
4217
|
+
[1m[35m (1.0ms)[0m commit transaction
|
4218
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" HAVING LEN(description) > 10 ) "projects"[0m
|
4219
|
+
SQLite3::SQLException: a GROUP BY clause is required before HAVING: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" HAVING LEN(description) > 10 ) "projects"
|
4220
|
+
[1m[35mProject Load (0.4ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LEN(description) > 10 ) "projects"
|
4221
|
+
SQLite3::SQLException: no such function: LEN: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LEN(description) > 10 ) "projects"
|
4222
|
+
[1m[36mProject Load (0.3ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY projeCHAR_ct_id HAVING LEN(description) > 10 ) "projects"[0m
|
4223
|
+
SQLite3::SQLException: no such function: LEN: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY projeCHAR_ct_id HAVING LEN(description) > 10 ) "projects"
|
4224
|
+
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING CHAR_LENGTH(description) > 10 ) "projects"
|
4225
|
+
SQLite3::SQLException: no such function: CHAR_LENGTH: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING CHAR_LENGTH(description) > 10 ) "projects"
|
4226
|
+
[1m[36mProject Load (8.7ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LENGTH(description) > 10 ) "projects"[0m
|
4227
|
+
SQLite3::SQLException: no such column: project_id: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LENGTH(description) > 10 ) "projects"
|
4228
|
+
[1m[35mProject Load (0.9ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"
|
4229
|
+
[1m[36mProject Load (0.8ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') INTERSECT SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"[0m
|
4230
|
+
[1m[35mProject Load (8.8ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION ALL SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"
|
4231
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4232
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4233
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4235
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4236
|
+
[1m[35mSQL (2.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "architect out-of-the-box metrics"], ["created_at", "2014-08-04 17:32:33.402989"], ["description", "Sit quod qui est ipsam inventore voluptates."], ["title", "firewall"], ["updated_at", "2014-08-04 17:32:33.402989"]]
|
4237
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4238
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4239
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "productize open-source action-items"], ["created_at", "2014-08-04 17:32:33.410236"], ["description", "Omnis sit culpa magnam et."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.410236"]]
|
4240
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4241
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4242
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline customized methodologies"], ["created_at", "2014-08-04 17:32:33.412778"], ["description", "Quo est et optio molestias natus assumenda laudantium."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.412778"]]
|
4243
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4244
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4245
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "revolutionize vertical initiatives"], ["created_at", "2014-08-04 17:32:33.413889"], ["description", "Fugit omnis amet earum ea qui vero quasi reprehenderit."], ["title", "system"], ["updated_at", "2014-08-04 17:32:33.413889"]]
|
4246
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4247
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4248
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "incentivize magnetic experiences"], ["created_at", "2014-08-04 17:32:33.414900"], ["description", "Sint corrupti voluptates natus reiciendis sit."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.414900"]]
|
4249
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4250
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4251
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "e-enable viral web services"], ["created_at", "2014-08-04 17:32:33.415876"], ["description", "Ex dolorum inventore atque similique quis voluptatem."], ["title", "monitor"], ["updated_at", "2014-08-04 17:32:33.415876"]]
|
4252
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4253
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4254
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "iterate magnetic convergence"], ["created_at", "2014-08-04 17:32:33.416833"], ["description", "Dignissimos perferendis beatae pariatur veniam consequatur quo doloribus a."], ["title", "monitor"], ["updated_at", "2014-08-04 17:32:33.416833"]]
|
4255
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4256
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4257
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "engineer global mindshare"], ["created_at", "2014-08-04 17:32:33.418472"], ["description", "Ad est enim possimus sed voluptas."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.418472"]]
|
4258
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4259
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4260
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reintermediate magnetic e-commerce"], ["created_at", "2014-08-04 17:32:33.421178"], ["description", "Quo omnis natus tenetur."], ["title", "pixel"], ["updated_at", "2014-08-04 17:32:33.421178"]]
|
4261
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4262
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4263
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "orchestrate dot-com portals"], ["created_at", "2014-08-04 17:32:33.422614"], ["description", "Possimus voluptas praesentium quo accusamus voluptatem."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.422614"]]
|
4264
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4265
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
4266
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4268
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "harness end-to-end partnerships"], ["created_at", "2014-08-04 17:32:33.428560"], ["description", "Ut velit rerum ut cumque."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.428560"]]
|
4269
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4270
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4271
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "maximize granular technologies"], ["created_at", "2014-08-04 17:32:33.430978"], ["description", "Saepe consequatur ut deleniti quo sit."], ["title", "port"], ["updated_at", "2014-08-04 17:32:33.430978"]]
|
4272
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4274
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "expedite magnetic mindshare"], ["created_at", "2014-08-04 17:32:33.433237"], ["description", "Optio sunt impedit est soluta doloremque."], ["title", "panel"], ["updated_at", "2014-08-04 17:32:33.433237"]]
|
4275
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4276
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4277
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "orchestrate interactive e-services"], ["created_at", "2014-08-04 17:32:33.435288"], ["description", "Nobis est accusantium ea quis sint non earum."], ["title", "array"], ["updated_at", "2014-08-04 17:32:33.435288"]]
|
4278
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4279
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
4280
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow end-to-end action-items"], ["created_at", "2014-08-04 17:32:33.437325"], ["description", "Quo necessitatibus voluptas ipsum quasi mollitia dolorem qui corporis."], ["title", "array"], ["updated_at", "2014-08-04 17:32:33.437325"]]
|
4281
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4282
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4283
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "expedite B2C e-tailers"], ["created_at", "2014-08-04 17:32:33.439074"], ["description", "Ab perferendis corrupti rerum in dicta."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.439074"]]
|
4284
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4285
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4286
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand turn-key relationships"], ["created_at", "2014-08-04 17:32:33.440380"], ["description", "Ea sunt rerum deserunt consequatur."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.440380"]]
|
4287
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4288
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4289
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "aggregate best-of-breed e-services"], ["created_at", "2014-08-04 17:32:33.441465"], ["description", "Doloremque est sed qui."], ["title", "application"], ["updated_at", "2014-08-04 17:32:33.441465"]]
|
4290
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4291
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4292
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix strategic deliverables"], ["created_at", "2014-08-04 17:32:33.442439"], ["description", "Suscipit tenetur adipisci mollitia."], ["title", "microchip"], ["updated_at", "2014-08-04 17:32:33.442439"]]
|
4293
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4295
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "cultivate cross-platform e-business"], ["created_at", "2014-08-04 17:32:33.443370"], ["description", "Minus illum quam atque."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.443370"]]
|
4296
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4297
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4298
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4299
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4300
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix scalable users"], ["created_at", "2014-08-04 17:32:33.447029"], ["description", "Aut earum in facilis reiciendis voluptatibus maxime non."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.447029"]]
|
4301
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4303
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "grow best-of-breed systems"], ["created_at", "2014-08-04 17:32:33.448512"], ["description", "Repellat eum a velit unde est molestias."], ["title", "sensor"], ["updated_at", "2014-08-04 17:32:33.448512"]]
|
4304
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4305
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4306
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize integrated communities"], ["created_at", "2014-08-04 17:32:33.449697"], ["description", "Magnam non et reiciendis."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.449697"]]
|
4307
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4308
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4309
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "revolutionize compelling synergies"], ["created_at", "2014-08-04 17:32:33.450689"], ["description", "Odio suscipit laboriosam possimus accusamus ratione ex."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.450689"]]
|
4310
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4312
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable holistic niches"], ["created_at", "2014-08-04 17:32:33.451634"], ["description", "Numquam earum cupiditate est repellendus."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.451634"]]
|
4313
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4314
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4315
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "seize global convergence"], ["created_at", "2014-08-04 17:32:33.452593"], ["description", "Aut doloremque et pariatur aliquam a id."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.452593"]]
|
4316
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4317
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4318
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline scalable schemas"], ["created_at", "2014-08-04 17:32:33.453542"], ["description", "Sit nihil aut pariatur."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.453542"]]
|
4319
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4320
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4321
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "engineer end-to-end relationships"], ["created_at", "2014-08-04 17:32:33.454471"], ["description", "Corrupti qui quaerat est."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.454471"]]
|
4322
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4324
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "target cross-media bandwidth"], ["created_at", "2014-08-04 17:32:33.455498"], ["description", "Doloribus et quae est voluptatum eos quos quibusdam laborum."], ["title", "alarm"], ["updated_at", "2014-08-04 17:32:33.455498"]]
|
4325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4326
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4327
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "recontextualize proactive applications"], ["created_at", "2014-08-04 17:32:33.456795"], ["description", "Quas id dolore ipsum et."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.456795"]]
|
4328
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4329
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4330
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow interactive bandwidth"], ["created_at", "2014-08-04 17:32:33.458677"], ["description", "Eum veniam possimus quis corporis et."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.458677"]]
|
4331
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4332
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4333
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "seize bleeding-edge relationships"], ["created_at", "2014-08-04 17:32:33.460577"], ["description", "In soluta reiciendis excepturi quia distinctio."], ["title", "hard drive"], ["updated_at", "2014-08-04 17:32:33.460577"]]
|
4334
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4335
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4336
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reinvent virtual supply-chains"], ["created_at", "2014-08-04 17:32:33.462575"], ["description", "Odio molestiae enim suscipit omnis officiis modi ratione quod."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.462575"]]
|
4337
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4339
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "incubate collaborative eyeballs"], ["created_at", "2014-08-04 17:32:33.464604"], ["description", "Quaerat impedit ut delectus illo quas qui esse."], ["title", "firewall"], ["updated_at", "2014-08-04 17:32:33.464604"]]
|
4340
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4341
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4342
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh rich markets"], ["created_at", "2014-08-04 17:32:33.466037"], ["description", "Ex qui beatae voluptatem sed voluptates vitae omnis."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.466037"]]
|
4343
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4344
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4345
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "enable distributed schemas"], ["created_at", "2014-08-04 17:32:33.468148"], ["description", "Sapiente et et est omnis quod qui."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.468148"]]
|
4346
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4347
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4348
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale strategic applications"], ["created_at", "2014-08-04 17:32:33.470680"], ["description", "Dolores odit quisquam voluptas magnam natus voluptatibus perspiciatis nihil."], ["title", "system"], ["updated_at", "2014-08-04 17:32:33.470680"]]
|
4349
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4350
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4351
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "maximize 24/7 portals"], ["created_at", "2014-08-04 17:32:33.471907"], ["description", "Aut animi aut voluptatem pariatur."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.471907"]]
|
4352
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4353
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4354
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "extend sticky channels"], ["created_at", "2014-08-04 17:32:33.472880"], ["description", "Autem odit eum perferendis at fuga nihil possimus quidem."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.472880"]]
|
4355
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4356
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4357
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "revolutionize cross-platform initiatives"], ["created_at", "2014-08-04 17:32:33.473837"], ["description", "Quisquam accusamus qui aut quidem."], ["title", "driver"], ["updated_at", "2014-08-04 17:32:33.473837"]]
|
4358
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4359
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
4360
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4361
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4362
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.480747"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.480747"]]
|
4363
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4364
|
+
[1m[35mProject Load (0.6ms)[0m SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%')
|
4365
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%')[0m
|
4366
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%')
|
4367
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
4368
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4369
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4370
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand next-generation action-items"], ["created_at", "2014-08-04 17:32:33.486658"], ["description", "Odio numquam est et quidem corporis ut enim."], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.486658"]]
|
4371
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4372
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4373
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "extend integrated eyeballs"], ["created_at", "2014-08-04 17:32:33.488510"], ["description", "some proj"], ["title", "driver"], ["updated_at", "2014-08-04 17:32:33.488510"]]
|
4374
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4375
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4376
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.490764"], ["description", "Velit eaque et incidunt corporis dolorum tenetur."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.490764"]]
|
4377
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4378
|
+
[1m[35mProject Load (0.6ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
|
4379
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
4380
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4382
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.496302"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.496302"]]
|
4383
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4384
|
+
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
|
4385
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"[0m
|
4386
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4388
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4389
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.506031"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.506031"]]
|
4390
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4391
|
+
[1m[36mProject Load (0.7ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"[0m
|
4392
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
4393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4394
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4395
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.511940"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.511940"]]
|
4396
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4397
|
+
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"[0m
|
4398
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4399
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4400
|
+
Migrating to CreateUsers (20140804181328)
|
4401
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4402
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
4403
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140804181328"]]
|
4404
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
4405
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
4406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4407
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.128218"], ["name", "Marshall Baumbach"], ["updated_at", "2014-08-04 18:15:14.128218"]]
|
4408
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4409
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4410
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.134814"], ["name", "Kaya Bartoletti"], ["updated_at", "2014-08-04 18:15:14.134814"]]
|
4411
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4412
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4413
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.137310"], ["name", "Mr. Elsa Durgan"], ["updated_at", "2014-08-04 18:15:14.137310"]]
|
4414
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4415
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4416
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.139572"], ["name", "Ms. Lia Quitzon"], ["updated_at", "2014-08-04 18:15:14.139572"]]
|
4417
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4418
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4419
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.141754"], ["name", "Cheyenne Lang"], ["updated_at", "2014-08-04 18:15:14.141754"]]
|
4420
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4421
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4422
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.144024"], ["name", "Mary Ortiz Sr."], ["updated_at", "2014-08-04 18:15:14.144024"]]
|
4423
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4425
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.146643"], ["name", "Domenica Terry II"], ["updated_at", "2014-08-04 18:15:14.146643"]]
|
4426
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4427
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4428
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.149300"], ["name", "Lucinda Bartoletti"], ["updated_at", "2014-08-04 18:15:14.149300"]]
|
4429
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4430
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4431
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.152012"], ["name", "Destinee Sporer"], ["updated_at", "2014-08-04 18:15:14.152012"]]
|
4432
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4433
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4434
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.154846"], ["name", "Christiana Steuber"], ["updated_at", "2014-08-04 18:15:14.154846"]]
|
4435
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4436
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4437
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.157953"], ["name", "Joanny Blick"], ["updated_at", "2014-08-04 18:15:14.157953"]]
|
4438
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4439
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4440
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.160270"], ["name", "Jordane Torphy"], ["updated_at", "2014-08-04 18:15:14.160270"]]
|
4441
|
+
[1m[35m (0.6ms)[0m commit transaction
|
4442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4443
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.162811"], ["name", "Sarah O'Keefe"], ["updated_at", "2014-08-04 18:15:14.162811"]]
|
4444
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4446
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.165752"], ["name", "Isobel Fay"], ["updated_at", "2014-08-04 18:15:14.165752"]]
|
4447
|
+
[1m[35m (1.0ms)[0m commit transaction
|
4448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4449
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.170434"], ["name", "Christopher Friesen"], ["updated_at", "2014-08-04 18:15:14.170434"]]
|
4450
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
4451
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4452
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.174090"], ["name", "Benton Kulas"], ["updated_at", "2014-08-04 18:15:14.174090"]]
|
4453
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4454
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4455
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.177633"], ["name", "Terry Carter"], ["updated_at", "2014-08-04 18:15:14.177633"]]
|
4456
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4457
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4458
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.180321"], ["name", "Rowland Kuphal"], ["updated_at", "2014-08-04 18:15:14.180321"]]
|
4459
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4460
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4461
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.183197"], ["name", "Trever Legros DVM"], ["updated_at", "2014-08-04 18:15:14.183197"]]
|
4462
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4463
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4464
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.185812"], ["name", "Dr. Hyman Graham"], ["updated_at", "2014-08-04 18:15:14.185812"]]
|
4465
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4467
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.188434"], ["name", "Ms. Vincenza Crooks"], ["updated_at", "2014-08-04 18:15:14.188434"]]
|
4468
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4469
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4470
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.190608"], ["name", "Kaden Hegmann"], ["updated_at", "2014-08-04 18:15:14.190608"]]
|
4471
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4472
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4473
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.193591"], ["name", "Hassie Ernser PhD"], ["updated_at", "2014-08-04 18:15:14.193591"]]
|
4474
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4475
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4476
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.196522"], ["name", "Alivia Adams"], ["updated_at", "2014-08-04 18:15:14.196522"]]
|
4477
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4478
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4479
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.199106"], ["name", "Lexi Walsh"], ["updated_at", "2014-08-04 18:15:14.199106"]]
|
4480
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4481
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4482
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.202614"], ["name", "Mr. Dan Langworth"], ["updated_at", "2014-08-04 18:15:14.202614"]]
|
4483
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4485
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.205843"], ["name", "Lukas Roob"], ["updated_at", "2014-08-04 18:15:14.205843"]]
|
4486
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
4487
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4488
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.208818"], ["name", "Idell Schuppe"], ["updated_at", "2014-08-04 18:15:14.208818"]]
|
4489
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4491
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.212286"], ["name", "Shany Kassulke"], ["updated_at", "2014-08-04 18:15:14.212286"]]
|
4492
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
4493
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.215145"], ["name", "Shanny Bashirian PhD"], ["updated_at", "2014-08-04 18:15:14.215145"]]
|
4495
|
+
[1m[35m (1.0ms)[0m commit transaction
|
4496
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4497
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.218806"], ["name", "Pinkie Volkman"], ["updated_at", "2014-08-04 18:15:14.218806"]]
|
4498
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
4499
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4500
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.222985"], ["name", "Kariane Veum"], ["updated_at", "2014-08-04 18:15:14.222985"]]
|
4501
|
+
[1m[35m (1.1ms)[0m commit transaction
|
4502
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4503
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.226685"], ["name", "Miss Hazle Ortiz"], ["updated_at", "2014-08-04 18:15:14.226685"]]
|
4504
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
4505
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4506
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.229822"], ["name", "Frank Dickinson"], ["updated_at", "2014-08-04 18:15:14.229822"]]
|
4507
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4508
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4509
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.232603"], ["name", "Dr. Garfield Spencer"], ["updated_at", "2014-08-04 18:15:14.232603"]]
|
4510
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4511
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4512
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.235449"], ["name", "Miss Tito Langosh"], ["updated_at", "2014-08-04 18:15:14.235449"]]
|
4513
|
+
[1m[35m (0.6ms)[0m commit transaction
|
4514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4515
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.237981"], ["name", "Bertha Nikolaus"], ["updated_at", "2014-08-04 18:15:14.237981"]]
|
4516
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4517
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4518
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.240577"], ["name", "Una Gulgowski"], ["updated_at", "2014-08-04 18:15:14.240577"]]
|
4519
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4520
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4521
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.242909"], ["name", "Kyle Littel III"], ["updated_at", "2014-08-04 18:15:14.242909"]]
|
4522
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4523
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4524
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.246221"], ["name", "Leilani Buckridge"], ["updated_at", "2014-08-04 18:15:14.246221"]]
|
4525
|
+
[1m[35m (0.6ms)[0m commit transaction
|
4526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4527
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.249377"], ["name", "Arjun Kihn IV"], ["updated_at", "2014-08-04 18:15:14.249377"]]
|
4528
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
4529
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4530
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.252536"], ["name", "Lucious Hudson"], ["updated_at", "2014-08-04 18:15:14.252536"]]
|
4531
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4532
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4533
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.255315"], ["name", "Antone Yost"], ["updated_at", "2014-08-04 18:15:14.255315"]]
|
4534
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4535
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4536
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.258013"], ["name", "Sabina Rodriguez"], ["updated_at", "2014-08-04 18:15:14.258013"]]
|
4537
|
+
[1m[35m (0.8ms)[0m commit transaction
|
4538
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4539
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.260422"], ["name", "Miss Jaylan Auer"], ["updated_at", "2014-08-04 18:15:14.260422"]]
|
4540
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
4541
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.262757"], ["name", "Esmeralda Daugherty"], ["updated_at", "2014-08-04 18:15:14.262757"]]
|
4543
|
+
[1m[35m (0.7ms)[0m commit transaction
|
4544
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4545
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.264977"], ["name", "Catherine O'Connell"], ["updated_at", "2014-08-04 18:15:14.264977"]]
|
4546
|
+
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
4547
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4548
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.268627"], ["name", "Moises Abernathy"], ["updated_at", "2014-08-04 18:15:14.268627"]]
|
4549
|
+
[1m[35m (1.3ms)[0m commit transaction
|
4550
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4551
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.272569"], ["name", "Billie Collins"], ["updated_at", "2014-08-04 18:15:14.272569"]]
|
4552
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
4553
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4554
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-08-04 18:15:14.276589"], ["name", "Oceane Towne"], ["updated_at", "2014-08-04 18:15:14.276589"]]
|
4555
|
+
[1m[35m (0.9ms)[0m commit transaction
|
4556
|
+
[1m[36mProject Load (0.3ms)[0m [1mSELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "users".* FROM "users" WHERE (name LIKE '%b%') ) "projects"[0m
|
4557
|
+
SQLite3::SQLException: SELECTs to the left and right of UNION do not have the same number of result columns: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "users".* FROM "users" WHERE (name LIKE '%b%') ) "projects"
|
@@ -27,7 +27,7 @@ describe EasyUnionSet do
|
|
27
27
|
project1 = create(:project, :title => "George's project")
|
28
28
|
project2 = create(:project, :description => "some proj")
|
29
29
|
project3 = create(:project, :category => "projectile")
|
30
|
-
|
30
|
+
|
31
31
|
expect(Project.where("title LIKE '%proj%'") | Project.where("description LIKE '%proj%'") | Project.where("category LIKE '%proj%'")).to include(project1, project2, project3)
|
32
32
|
end
|
33
33
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_union_set
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Taveras
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -115,6 +115,7 @@ files:
|
|
115
115
|
- test/dummy/app/controllers/application_controller.rb
|
116
116
|
- test/dummy/app/helpers/application_helper.rb
|
117
117
|
- test/dummy/app/models/project.rb
|
118
|
+
- test/dummy/app/models/user.rb
|
118
119
|
- test/dummy/app/views/layouts/application.html.erb
|
119
120
|
- test/dummy/bin/bundle
|
120
121
|
- test/dummy/bin/rails
|
@@ -140,6 +141,7 @@ files:
|
|
140
141
|
- test/dummy/config/secrets.yml
|
141
142
|
- test/dummy/db/development.sqlite3
|
142
143
|
- test/dummy/db/migrate/20140804121508_create_projects.rb
|
144
|
+
- test/dummy/db/migrate/20140804181328_create_users.rb
|
143
145
|
- test/dummy/db/schema.rb
|
144
146
|
- test/dummy/db/test.sqlite3
|
145
147
|
- test/dummy/log/development.log
|
@@ -150,6 +152,8 @@ files:
|
|
150
152
|
- test/dummy/public/favicon.ico
|
151
153
|
- test/dummy/spec/easy_union_set_spec.rb
|
152
154
|
- test/dummy/spec/factories/projects.rb
|
155
|
+
- test/dummy/spec/factories/users.rb
|
156
|
+
- test/dummy/spec/models/user_spec.rb
|
153
157
|
- test/dummy/spec/rails_helper.rb
|
154
158
|
- test/dummy/spec/spec_helper.rb
|
155
159
|
- test/easy_union_set_test.rb
|
@@ -184,6 +188,7 @@ test_files:
|
|
184
188
|
- test/dummy/app/controllers/application_controller.rb
|
185
189
|
- test/dummy/app/helpers/application_helper.rb
|
186
190
|
- test/dummy/app/models/project.rb
|
191
|
+
- test/dummy/app/models/user.rb
|
187
192
|
- test/dummy/app/views/layouts/application.html.erb
|
188
193
|
- test/dummy/bin/bundle
|
189
194
|
- test/dummy/bin/rails
|
@@ -209,6 +214,7 @@ test_files:
|
|
209
214
|
- test/dummy/config.ru
|
210
215
|
- test/dummy/db/development.sqlite3
|
211
216
|
- test/dummy/db/migrate/20140804121508_create_projects.rb
|
217
|
+
- test/dummy/db/migrate/20140804181328_create_users.rb
|
212
218
|
- test/dummy/db/schema.rb
|
213
219
|
- test/dummy/db/test.sqlite3
|
214
220
|
- test/dummy/log/development.log
|
@@ -221,6 +227,8 @@ test_files:
|
|
221
227
|
- test/dummy/README.rdoc
|
222
228
|
- test/dummy/spec/easy_union_set_spec.rb
|
223
229
|
- test/dummy/spec/factories/projects.rb
|
230
|
+
- test/dummy/spec/factories/users.rb
|
231
|
+
- test/dummy/spec/models/user_spec.rb
|
224
232
|
- test/dummy/spec/rails_helper.rb
|
225
233
|
- test/dummy/spec/spec_helper.rb
|
226
234
|
- test/easy_union_set_test.rb
|