datastax_rails 1.0.18.8 → 1.0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- data/config/schema.xml.erb +1 -1
- data/lib/datastax_rails/base.rb +4 -0
- data/lib/datastax_rails/persistence.rb +22 -8
- data/lib/datastax_rails/relation/search_methods.rb +1 -1
- data/lib/datastax_rails/tasks/column_family.rb +1 -1
- data/lib/datastax_rails/version.rb +1 -1
- data/spec/datastax_rails/persistence_spec.rb +41 -9
- data/spec/dummy/log/development.log +21 -0
- data/spec/dummy/log/test.log +642 -0
- data/spec/support/models.rb +1 -0
- metadata +5 -5
data/config/schema.xml.erb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
See the License for the specific language governing permissions and
|
16
16
|
limitations under the License.
|
17
17
|
-->
|
18
|
-
<schema name="datastax_rails" version="1.
|
18
|
+
<schema name="datastax_rails" version="1.5">
|
19
19
|
<types>
|
20
20
|
<fieldType name="string_cs" class="solr.StrField" omitNorms="true"/>
|
21
21
|
<fieldType name="string" class="solr.TextField" omitNorms="true">
|
data/lib/datastax_rails/base.rb
CHANGED
@@ -322,6 +322,9 @@ module DatastaxRails #:nodoc:
|
|
322
322
|
|
323
323
|
class_attribute :default_consistency
|
324
324
|
self.default_consistency = :quorum
|
325
|
+
|
326
|
+
class_attribute :storage_method
|
327
|
+
self.storage_method = :solr
|
325
328
|
|
326
329
|
class_attribute :models
|
327
330
|
self.models = []
|
@@ -476,6 +479,7 @@ module DatastaxRails #:nodoc:
|
|
476
479
|
delegate :count, :first, :first!, :last, :last!, :compute_stats, :to => :scoped
|
477
480
|
delegate :sum, :average, :minimum, :maximum, :stddev, :to => :scoped
|
478
481
|
delegate :cql, :with_cassandra, :with_solr, :commit_solr, :to => :scoped
|
482
|
+
delegate :find_each, :find_in_batches, :to => :scoped
|
479
483
|
|
480
484
|
# Sets the column family name
|
481
485
|
#
|
@@ -62,7 +62,15 @@ module DatastaxRails
|
|
62
62
|
else
|
63
63
|
raise ArgumentError, "'#{level}' is not a valid Cassandra consistency level"
|
64
64
|
end
|
65
|
-
|
65
|
+
key.tap do |key|
|
66
|
+
ActiveSupport::Notifications.instrument("insert.datastax_rails", :column_family => column_family, :key => key, :attributes => attributes) do
|
67
|
+
if(self.storage_method == :solr)
|
68
|
+
write_with_solr(key, attributes, options)
|
69
|
+
else
|
70
|
+
write_with_cql(key, attributes, options)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
66
74
|
end
|
67
75
|
|
68
76
|
# Instantiates a new object without calling +initialize+.
|
@@ -111,15 +119,21 @@ module DatastaxRails
|
|
111
119
|
|
112
120
|
private
|
113
121
|
def write_with_cql(key, attributes, options)
|
114
|
-
key.
|
115
|
-
ActiveSupport::Notifications.instrument("insert.datastax_rails", :column_family => column_family, :key => key, :attributes => attributes) do
|
116
|
-
cql.update(key.to_s).columns(attributes).using(options[:consistency]).execute
|
117
|
-
end
|
118
|
-
end
|
122
|
+
cql.update(key.to_s).columns(attributes).using(options[:consistency]).execute
|
119
123
|
end
|
120
124
|
|
121
125
|
def write_with_solr(key, attributes, options)
|
122
|
-
|
126
|
+
# We need to collect removed fields since we can't currently delete the column via
|
127
|
+
# the solr interface
|
128
|
+
removed_fields = []
|
129
|
+
attributes.each do |k,v|
|
130
|
+
removed_fields << k.to_s if v.blank?
|
131
|
+
end
|
132
|
+
xml_doc = RSolr::Xml::Generator.new.add(attributes.merge(:id => key))
|
133
|
+
self.solr_connection.update(:data => xml_doc, :params => {:replacefields => false, :cl => options[:consistency]})
|
134
|
+
unless removed_fields.empty?
|
135
|
+
cql.delete(key.to_s).columns(removed_fields).using(options[:consistency]).execute
|
136
|
+
end
|
123
137
|
end
|
124
138
|
end
|
125
139
|
|
@@ -196,4 +210,4 @@ module DatastaxRails
|
|
196
210
|
self.class.write(key, changed_attributes, options)
|
197
211
|
end
|
198
212
|
end
|
199
|
-
end
|
213
|
+
end
|
@@ -33,7 +33,7 @@ module DatastaxRails
|
|
33
33
|
# is submitted. If you want to handle escaping yourself because you need to use
|
34
34
|
# those special characters, then just include this in your chain.
|
35
35
|
#
|
36
|
-
# Model.dont_escape.where("(some stuff I don\'t want escaped)")
|
36
|
+
# Model.dont_escape.where(:name => "(some stuff I don\'t want escaped)")
|
37
37
|
#
|
38
38
|
# Note that fulltext searches are NEVER escaped. Use Relation.solr_escape if you
|
39
39
|
# want that done.
|
@@ -43,7 +43,7 @@ module DatastaxRails
|
|
43
43
|
@fulltext_fields = []
|
44
44
|
model.attribute_definitions.values.each do |attr|
|
45
45
|
coder = attr.coder
|
46
|
-
if coder.options[:solr_type]
|
46
|
+
if coder.options[:solr_type]
|
47
47
|
@fields.push({ :name => attr.name,
|
48
48
|
:type => coder.options[:solr_type].to_s,
|
49
49
|
:indexed => coder.options[:indexed].to_s,
|
@@ -2,18 +2,50 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe "DatastaxRails::Base" do
|
4
4
|
describe "persistence" do
|
5
|
-
describe "
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
describe "with cql" do
|
6
|
+
describe "#create" do
|
7
|
+
it "should persist at the given consistency level" do
|
8
|
+
DatastaxRails::Base.connection.should_receive(:execute_cql_query).with(/USING CONSISTENCY LOCAL_QUORUM/i).and_return(true)
|
9
|
+
Person.storage_method = :cql
|
10
|
+
Person.create({:name => 'Steven'},{:consistency => 'LOCAL_QUORUM'})
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "#save" do
|
15
|
+
it "should persist at the given consistency level" do
|
16
|
+
DatastaxRails::Base.connection.should_receive(:execute_cql_query).with(/USING CONSISTENCY LOCAL_QUORUM/i).and_return(true)
|
17
|
+
Person.storage_method = :cql
|
18
|
+
p=Person.new(:name => 'Steven')
|
19
|
+
p.save(:consistency => 'LOCAL_QUORUM')
|
20
|
+
end
|
9
21
|
end
|
10
22
|
end
|
23
|
+
|
24
|
+
describe "with solr" do
|
25
|
+
describe "#create" do
|
26
|
+
it "should persist at the given consistency level" do
|
27
|
+
Person.solr_connection.should_receive(:update).with(hash_including(:params => {:replacefields => false, :cl => 'LOCAL_QUORUM'})).and_return(true)
|
28
|
+
Person.storage_method = :solr
|
29
|
+
Person.create({:name => 'Steven'},{:consistency => 'LOCAL_QUORUM'})
|
30
|
+
end
|
31
|
+
end
|
11
32
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
33
|
+
describe "#save" do
|
34
|
+
it "should persist at the given consistency level" do
|
35
|
+
Person.solr_connection.should_receive(:update).with(hash_including(:params => {:replacefields => false, :cl => 'LOCAL_QUORUM'})).and_return(true)
|
36
|
+
Person.storage_method = :solr
|
37
|
+
p=Person.new(:name => 'Steven')
|
38
|
+
p.save(:consistency => 'LOCAL_QUORUM')
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should successfully remove columns that are set to nil" do
|
42
|
+
Person.storage_method = :solr
|
43
|
+
p = Person.create(:name => 'Steven', :birthdate => Date.today)
|
44
|
+
Person.commit_solr
|
45
|
+
p.birthdate = nil
|
46
|
+
p.save
|
47
|
+
Person.find_by_name('Steven').birthdate.should be_nil
|
48
|
+
end
|
17
49
|
end
|
18
50
|
end
|
19
51
|
|
@@ -24152,3 +24152,24 @@ SELECT updated_at,birthdate,nickname,created_at,name FROM people USING CONSISTEN
|
|
24152
24152
|
people insert (64.9ms) 5989f5a6-6b22-11e2-9533-d78b7614c5ee {"created_at"=>"2013-01-30T21:16:44Z", "nickname"=>"JimBob", "updated_at"=>"2013-01-30T21:16:44Z", "name"=>"JimBob"}
|
24153
24153
|
jobs insert (49.8ms) ab429e24-752d-11e2-8d47-b0e75aa0ec84 {"created_at"=>"2013-02-12T16:02:58Z", "position_number"=>125, "updated_at"=>"2013-02-12T16:02:58Z", "title"=>"abc"}
|
24154
24154
|
jobs insert (3.0ms) b040877e-752d-11e2-8879-539f2ad9c9e9 {"created_at"=>"2013-02-12T16:03:06Z", "position_number"=>175, "updated_at"=>"2013-02-12T16:03:06Z", "title"=>"def"}
|
24155
|
+
people insert (15.6ms) b2ffd926-c184-11e2-9796-2455a771718c {"name"=>"Jason", "updated_at"=>"2013-05-20T19:37:25Z", "birthdate"=>"1980-10-19T00:00:00Z", "created_at"=>"2013-05-20T19:37:25Z", "nickname"=>"Jason"}
|
24156
|
+
people insert (2.1ms) b2ffd926-c184-11e2-9796-2455a771718c {"name"=>"Jason", "updated_at"=>"2013-05-20T19:38:00Z", "birthdate"=>nil, "created_at"=>"2013-05-20T19:37:25Z", "nickname"=>"Jason"}
|
24157
|
+
cars insert (16.8ms) cac0cffc-c18e-11e2-8a60-4816cc64d999 {"created_at"=>"2013-05-20T20:49:40Z", "updated_at"=>"2013-05-20T20:49:40Z", "name"=>"Jeep", "last_serviced_at"=>"2013-05-10T20:49:39Z"}
|
24158
|
+
cars insert (11.0ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"created_at"=>"2013-05-20T20:50:36Z", "name"=>"Jeep", "last_serviced_at"=>"2013-05-10T20:50:36Z", "updated_at"=>"2013-05-20T20:50:36Z"}
|
24159
|
+
cars insert (3.5ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"created_at"=>"2013-05-20T20:50:36Z", "name"=>"Jeep", "last_serviced_at"=>nil, "updated_at"=>"2013-05-20T20:50:52Z"}
|
24160
|
+
cars insert (9.7ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:23:47Z", "last_serviced_at"=>nil}
|
24161
|
+
cars insert (3.8ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:24:15Z", "last_serviced_at"=>nil}
|
24162
|
+
cars insert (10827.2ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:25:30Z", "last_serviced_at"=>nil}
|
24163
|
+
cars insert (29067.0ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "updated_at"=>"2013-05-20T21:26:17Z"}
|
24164
|
+
cars insert (95059.4ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "updated_at"=>"2013-05-20T21:26:51Z"}
|
24165
|
+
cars insert (12949.8ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "updated_at"=>"2013-05-20T21:28:30Z"}
|
24166
|
+
cars insert (9.8ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "updated_at"=>"2013-05-20T21:30:17Z"}
|
24167
|
+
cars insert (5121.4ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:32:32Z", "last_serviced_at"=>nil}
|
24168
|
+
cars insert (1804.8ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:33:14Z", "last_serviced_at"=>nil}
|
24169
|
+
cars insert (86564.5ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:33:40Z", "last_serviced_at"=>nil}
|
24170
|
+
cars insert (25760.1ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:35:37Z", "last_serviced_at"=>nil}
|
24171
|
+
cars insert (306243.9ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"name"=>"Jeep Wranger", "updated_at"=>"2013-05-20T21:49:31Z"}
|
24172
|
+
cars insert (1595.0ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>"2013-05-20T21:54:51Z", "name"=>"Jeep Wranger", "updated_at"=>"2013-05-20T21:54:53Z"}
|
24173
|
+
cars insert (1600.2ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "name"=>"Jeep Wranger", "updated_at"=>"2013-05-20T21:55:09Z"}
|
24174
|
+
cars insert (30.3ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"last_serviced_at"=>nil, "updated_at"=>"2013-05-20T21:56:46Z"}
|
24175
|
+
cars insert (11.8ms) ec46e0da-c18e-11e2-8c1e-12c5f0df414b {"updated_at"=>"2013-05-20T21:57:18Z", "last_serviced_at"=>nil}
|
data/spec/dummy/log/test.log
CHANGED
@@ -11084,3 +11084,645 @@ Scoped order and limit are ignored, it's forced to be batch order and batch size
|
|
11084
11084
|
hobbies insert (1.4ms) f69432fa-bc15-11e2-8977-97d9a2859ff9 {"updated_at"=>"2013-05-13T21:42:09Z", "name"=>"k", "created_at"=>"2013-05-13T21:42:09Z"}
|
11085
11085
|
hobbies insert (1.5ms) f694857a-bc15-11e2-98c5-833da6ac9a5e {"updated_at"=>"2013-05-13T21:42:09Z", "name"=>"l", "created_at"=>"2013-05-13T21:42:09Z"}
|
11086
11086
|
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11087
|
+
people insert (10.4ms) c73e11b6-c18c-11e2-9dc4-221591fc9e20 {"nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:35:15Z", "updated_at"=>"2013-05-20T20:35:15Z"}
|
11088
|
+
cars insert (3.4ms) c7479024-c18c-11e2-90e9-bff9ced81879 {"name"=>"Jeep", "created_at"=>"2013-05-20T20:35:15Z", "person_id"=>"c73e11b6-c18c-11e2-9dc4-221591fc9e20", "updated_at"=>"2013-05-20T20:35:15Z"}
|
11089
|
+
cars remove (26.6ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x11079598>
|
11090
|
+
people remove (1.1ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x11072810>
|
11091
|
+
people insert (3.5ms) c82b0958-c18c-11e2-9de8-67dcc886cb63 {"nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11092
|
+
cars insert (4.0ms) c82bc1c2-c18c-11e2-8bd1-8b47ee0a47b6 {"name"=>"Jeep", "created_at"=>"2013-05-20T20:35:17Z", "person_id"=>"c82b0958-c18c-11e2-9de8-67dcc886cb63", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11093
|
+
people insert (3.5ms) c84483f6-c18c-11e2-8854-277e9e5de51c {"nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11094
|
+
cars insert (3.3ms) c8453698-c18c-11e2-82c9-d495bf1cd0cd {"name"=>"Jeep", "created_at"=>"2013-05-20T20:35:17Z", "person_id"=>"12345", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11095
|
+
people insert (3.8ms) c85fd4bc-c18c-11e2-89b7-9fcf8b045eff {"nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11096
|
+
cars insert (3.3ms) c860b1c0-c18c-11e2-893b-f8008818c265 {"name"=>"Jeep", "created_at"=>"2013-05-20T20:35:17Z", "person_id"=>"c85fd4bc-c18c-11e2-89b7-9fcf8b045eff", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11097
|
+
people insert (3.7ms) c8820956-c18c-11e2-8052-263741b59800 {"nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11098
|
+
jobs insert (3.1ms) c8832dae-c18c-11e2-87b6-941c53b1a96f {"title"=>"Developer", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11099
|
+
people insert (3.4ms) c89d1ad4-c18c-11e2-937e-c3fd93fb7b2a {"nickname"=>"John", "name"=>"John", "created_at"=>"2013-05-20T20:35:17Z", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11100
|
+
jobs insert (3.2ms) c89dcdb2-c18c-11e2-9a9b-caa70f6b1b54 {"title"=>"Developer", "created_at"=>"2013-05-20T20:35:17Z", "person_id"=>"c89d1ad4-c18c-11e2-937e-c3fd93fb7b2a", "updated_at"=>"2013-05-20T20:35:17Z"}
|
11101
|
+
people insert (3.7ms) c8c9eb86-c18c-11e2-88af-697614cbb018 {"nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11102
|
+
people insert (3.2ms) c8da38a6-c18c-11e2-9c13-f397226c7c0c {"nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11103
|
+
people insert (0.4ms) c8f7d33e-c18c-11e2-9a7e-3aaa3b8f9846 {"nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11104
|
+
people insert (0.4ms) c8f9b3a2-c18c-11e2-8c20-e042ce692f50 {"nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11105
|
+
people insert (1.1ms) c8fcb1ba-c18c-11e2-8ac2-9f2440f6d8c3 {"nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11106
|
+
people insert (1.1ms) c8ffef2e-c18c-11e2-94cc-b19679b57fb9 {"nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11107
|
+
people insert (3.2ms) c9032ba8-c18c-11e2-930f-b02c99c18609 {"nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:18Z", "updated_at"=>"2013-05-20T20:35:18Z"}
|
11108
|
+
people remove (0.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x114bc920>
|
11109
|
+
hobbies insert (3.9ms) d2f50942-c18c-11e2-923f-7dc6740e4ef1 {"name"=>"a", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11110
|
+
hobbies insert (2.7ms) d2f5c9f4-c18c-11e2-9ac8-53e650171c3f {"name"=>"b", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11111
|
+
hobbies insert (2.6ms) d2f6569e-c18c-11e2-9c7f-5ff915b569ef {"name"=>"c", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11112
|
+
hobbies insert (2.6ms) d2f6e046-c18c-11e2-9336-7aa4e03d322f {"name"=>"d", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11113
|
+
hobbies insert (2.7ms) d2f76b24-c18c-11e2-9ef5-988ee4983d78 {"name"=>"e", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11114
|
+
hobbies insert (3.4ms) d2f7fba2-c18c-11e2-959e-db0294ff125d {"name"=>"f", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11115
|
+
hobbies insert (2.7ms) d2f8a6e2-c18c-11e2-869b-3de4cd79544d {"name"=>"g", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11116
|
+
hobbies insert (2.9ms) d2f93314-c18c-11e2-9c11-8702ec5b71bd {"name"=>"h", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11117
|
+
hobbies insert (2.7ms) d2f9c888-c18c-11e2-9547-ea129e0543ad {"name"=>"i", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11118
|
+
hobbies insert (2.6ms) d2fa55aa-c18c-11e2-8b73-54144d60dedd {"name"=>"j", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11119
|
+
hobbies insert (2.6ms) d2fae092-c18c-11e2-881c-46b6f762cf66 {"name"=>"k", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11120
|
+
hobbies insert (2.6ms) d2fb6940-c18c-11e2-975b-b0e5c17c22e1 {"name"=>"l", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11121
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11122
|
+
hobbies insert (3.1ms) d321711c-c18c-11e2-9c1a-d10823d64d73 {"name"=>"a", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11123
|
+
hobbies insert (2.6ms) d3221392-c18c-11e2-9805-764e53ef61ef {"name"=>"b", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11124
|
+
hobbies insert (2.5ms) d3229e16-c18c-11e2-82b9-d9734a6f47f6 {"name"=>"c", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11125
|
+
hobbies insert (3.3ms) d32324da-c18c-11e2-80bd-554c31d1ae6d {"name"=>"d", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11126
|
+
hobbies insert (2.5ms) d323ca34-c18c-11e2-9b33-f91fa70899c1 {"name"=>"e", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11127
|
+
hobbies insert (2.6ms) d32452ba-c18c-11e2-967e-4efa53b4cd4c {"name"=>"f", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11128
|
+
hobbies insert (2.6ms) d324db68-c18c-11e2-8653-2b060747ad6e {"name"=>"g", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11129
|
+
hobbies insert (2.6ms) d32565b0-c18c-11e2-96a9-a737787ca887 {"name"=>"h", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11130
|
+
hobbies insert (2.6ms) d325f1b0-c18c-11e2-995b-f0e474d116fd {"name"=>"i", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11131
|
+
hobbies insert (2.7ms) d3267bbc-c18c-11e2-96a0-25791a37705d {"name"=>"j", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11132
|
+
hobbies insert (2.6ms) d3270a1e-c18c-11e2-9531-f601fec13ead {"name"=>"k", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11133
|
+
hobbies insert (3.0ms) d32792fe-c18c-11e2-9a31-2bbbafca04ba {"name"=>"l", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11134
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11135
|
+
boats insert (3.0ms) d3537b4e-c18c-11e2-8622-9bf389102348 {"name"=>"Spooner", "created_at"=>"2013-05-20T20:35:35Z", "updated_at"=>"2013-05-20T20:35:35Z"}
|
11136
|
+
boats insert (2.9ms) d36a39f6-c18c-11e2-8268-e5c091ce63f5 {"name"=>"Water Lily", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11137
|
+
boats insert (2.9ms) d3728dcc-c18c-11e2-87af-9f33526c0508 {"name"=>"Dumb: Name", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11138
|
+
hobbies insert (3.9ms) d3880512-c18c-11e2-8e44-b3e719322b64 {"name"=>"biking", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>1.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11139
|
+
hobbies insert (3.0ms) d388c970-c18c-11e2-9260-2f9ccfcdb6ad {"name"=>"skydiving", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>4.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11140
|
+
hobbies remove (1.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x11ee5fa0>
|
11141
|
+
hobbies insert (3.5ms) d39aa032-c18c-11e2-985d-5e0f76a34297 {"name"=>"biking", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>1.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11142
|
+
hobbies insert (2.7ms) d39b54a0-c18c-11e2-998d-889e2180a92b {"name"=>"skydiving", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>4.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11143
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x11bf33d8>
|
11144
|
+
hobbies insert (3.5ms) d3af13e6-c18c-11e2-918f-502727b9500c {"name"=>"biking", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>1.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11145
|
+
hobbies insert (3.1ms) d3afc714-c18c-11e2-8014-c7461ab31f8c {"name"=>"skydiving", "created_at"=>"2013-05-20T20:35:36Z", "complexity"=>4.0, "updated_at"=>"2013-05-20T20:35:36Z"}
|
11146
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x119ba878>
|
11147
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x11985c40>
|
11148
|
+
hobbies insert (3.0ms) d3c248d0-c18c-11e2-8eb9-1e4f83c4e2da {"name"=>"swimming", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11149
|
+
hobbies insert (2.9ms) d3d32e16-c18c-11e2-9554-ad83b2b3ed3b {"name"=>"a", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11150
|
+
hobbies insert (2.8ms) d3d3c81c-c18c-11e2-9d15-3d08b43b63da {"name"=>"b", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11151
|
+
hobbies insert (2.7ms) d3d45ba6-c18c-11e2-9c05-2a0b0e4021fa {"name"=>"c", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11152
|
+
hobbies insert (2.5ms) d3d4e9f4-c18c-11e2-807e-52e6676bf6fc {"name"=>"d", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11153
|
+
hobbies insert (2.5ms) d3d57194-c18c-11e2-8c61-9648c389cca0 {"name"=>"e", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11154
|
+
hobbies insert (2.5ms) d3d5f8a8-c18c-11e2-8cf3-ecf5d1cff539 {"name"=>"f", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11155
|
+
hobbies insert (2.7ms) d3d680c0-c18c-11e2-9fa7-8a0ceba1fe12 {"name"=>"g", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11156
|
+
hobbies insert (2.8ms) d3d70f72-c18c-11e2-8243-97913a36488a {"name"=>"h", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11157
|
+
hobbies insert (2.8ms) d3d79fe6-c18c-11e2-8978-89f8b5382f40 {"name"=>"i", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11158
|
+
hobbies insert (2.8ms) d3d833b6-c18c-11e2-83d7-a8eee6117a92 {"name"=>"j", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11159
|
+
hobbies insert (2.8ms) d3d8c5a6-c18c-11e2-81d6-fe305d821968 {"name"=>"k", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11160
|
+
hobbies insert (2.5ms) d3d95764-c18c-11e2-9f41-71c72ad34c84 {"name"=>"l", "created_at"=>"2013-05-20T20:35:36Z", "updated_at"=>"2013-05-20T20:35:36Z"}
|
11161
|
+
hobbies insert (3.0ms) d3ff0d9c-c18c-11e2-88a6-6a7c8797b9e7 {"name"=>"a", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11162
|
+
hobbies insert (2.7ms) d3ffad06-c18c-11e2-9525-4bdde7948497 {"name"=>"b", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11163
|
+
hobbies insert (2.6ms) d4003ae6-c18c-11e2-969e-615976151bff {"name"=>"c", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11164
|
+
hobbies insert (2.7ms) d400c4f2-c18c-11e2-81ce-7c43fee8cb42 {"name"=>"d", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11165
|
+
hobbies insert (2.5ms) d401539a-c18c-11e2-9340-01b3e74bf2a2 {"name"=>"e", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11166
|
+
hobbies insert (2.6ms) d401dbb2-c18c-11e2-9288-349178f31090 {"name"=>"f", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11167
|
+
hobbies insert (2.5ms) d40263de-c18c-11e2-8c39-a787244b6156 {"name"=>"g", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11168
|
+
hobbies insert (2.7ms) d402eb1a-c18c-11e2-80c0-a6f1313dedc7 {"name"=>"h", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11169
|
+
hobbies insert (2.6ms) d4037724-c18c-11e2-8f7c-a634be4e9073 {"name"=>"i", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11170
|
+
hobbies insert (2.7ms) d403ff32-c18c-11e2-8b0a-7cdbcea76624 {"name"=>"j", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11171
|
+
hobbies insert (2.5ms) d4048b78-c18c-11e2-99d8-b58d52898088 {"name"=>"k", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11172
|
+
hobbies insert (2.5ms) d405116a-c18c-11e2-858a-090ef0bc7ab6 {"name"=>"l", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11173
|
+
hobbies insert (3.3ms) d426703a-c18c-11e2-8400-7904b03a7f2a {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11174
|
+
hobbies insert (2.6ms) d4271ae4-c18c-11e2-82a9-3c148a27a167 {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11175
|
+
hobbies insert (2.5ms) d427a338-c18c-11e2-9789-436f5486da0b {"name"=>"boating", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11176
|
+
hobbies insert (2.6ms) d4282c0e-c18c-11e2-899d-99e990d87aa9 {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11177
|
+
hobbies insert (2.8ms) d428b516-c18c-11e2-8920-451a74c3dc69 {"name"=>"swimming", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11178
|
+
hobbies insert (2.5ms) d42948b4-c18c-11e2-8a10-f75534dca85e {"name"=>"chess", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11179
|
+
hobbies insert (3.0ms) d43dfb7e-c18c-11e2-8de5-eea58d5a5747 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11180
|
+
hobbies insert (2.6ms) d43e9ac0-c18c-11e2-92f4-8f2e5fdb266b {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11181
|
+
hobbies insert (2.9ms) d43f272e-c18c-11e2-91bd-4e47dc977bc0 {"name"=>"boating", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11182
|
+
hobbies insert (2.6ms) d43fbd10-c18c-11e2-9882-f243db7d19fe {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11183
|
+
hobbies insert (2.6ms) d44047a8-c18c-11e2-8ddb-de04d0e6f7b8 {"name"=>"swimming", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11184
|
+
hobbies insert (2.6ms) d440d16e-c18c-11e2-9a58-f5dc8154c244 {"name"=>"chess", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11185
|
+
hobbies insert (3.4ms) d45bde3c-c18c-11e2-8236-5f908393eb6f {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11186
|
+
hobbies insert (2.4ms) d45c89a4-c18c-11e2-81bf-cd721ea48a66 {"created_at"=>"2013-05-20T20:35:37Z", "updated_at"=>"2013-05-20T20:35:37Z"}
|
11187
|
+
hobbies insert (3.1ms) d466e8d6-c18c-11e2-9cd2-32271e99fbe4 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:37Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:37Z"}
|
11188
|
+
hobbies insert (3.2ms) d47a5b8c-c18c-11e2-8319-ecb973f4856d {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:37Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:37Z"}
|
11189
|
+
hobbies insert (3.1ms) d48355d4-c18c-11e2-9737-7d7152b46e0f {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:37Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:37Z"}
|
11190
|
+
hobbies insert (3.1ms) d49135e6-c18c-11e2-8492-fef462d613bc {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11191
|
+
hobbies insert (3.0ms) d49a8a4c-c18c-11e2-8a76-0c7dfc563ed1 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11192
|
+
hobbies insert (2.8ms) d49b24ca-c18c-11e2-8abb-78e9905a809c {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11193
|
+
hobbies insert (3.2ms) d49bb85e-c18c-11e2-8fad-ec536484ab6d {"name"=>"boating", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11194
|
+
hobbies insert (2.6ms) d49c599e-c18c-11e2-941c-56720428a198 {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11195
|
+
hobbies insert (2.5ms) d49ce24c-c18c-11e2-9658-c9ce91f15089 {"name"=>"swimming", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11196
|
+
hobbies insert (2.5ms) d49d691a-c18c-11e2-9e72-e79d72b588a1 {"name"=>"chess", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11197
|
+
hobbies insert (4.2ms) d4b5f67e-c18c-11e2-9bc2-b04a42ab599b {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>-1.2, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11198
|
+
hobbies insert (3.0ms) d4bef206-c18c-11e2-8b4f-558258c052c9 {"name"=>"horseback riding", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11199
|
+
hobbies insert (3.3ms) d4c954bc-c18c-11e2-9a34-b97a7442c88e {"name"=>"horseback riding", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11200
|
+
hobbies insert (3.1ms) d4d1e8ac-c18c-11e2-8f76-9059f50d2a34 {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.2, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11201
|
+
hobbies insert (2.9ms) d4df0c08-c18c-11e2-96b5-6ed0d54da339 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11202
|
+
hobbies insert (3.1ms) d4e76948-c18c-11e2-9b6a-ad5a1287e581 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11203
|
+
hobbies insert (2.5ms) d4e8086c-c18c-11e2-8f35-abbfb5711679 {"name"=>"Biking", "created_at"=>"2013-05-20T20:35:38Z", "updated_at"=>"2013-05-20T20:35:38Z"}
|
11204
|
+
hobbies insert (3.5ms) d4fa12d2-c18c-11e2-9e66-650a977b619f {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11205
|
+
hobbies insert (3.1ms) d503a5d6-c18c-11e2-904c-62160b7fe787 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11206
|
+
hobbies insert (3.0ms) d510f98e-c18c-11e2-9b26-289d3e8992df {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11207
|
+
hobbies insert (3.1ms) d519b8f8-c18c-11e2-89a6-1c364ba107b5 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:38Z", "complexity"=>1.1, "updated_at"=>"2013-05-20T20:35:38Z"}
|
11208
|
+
hobbies insert (3.0ms) d52a4240-c18c-11e2-98d6-e2b7923db2aa {"name"=>"jogging", "created_at"=>"2013-05-20T20:35:39Z", "complexity"=>1.2, "updated_at"=>"2013-05-20T20:35:39Z"}
|
11209
|
+
hobbies insert (2.8ms) d534a2b2-c18c-11e2-93d1-6a90574b4c07 {"name"=>"Swimming", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11210
|
+
hobbies insert (2.9ms) d53f557c-c18c-11e2-9fc4-993802747562 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11211
|
+
hobbies insert (3.2ms) d5516d70-c18c-11e2-9142-46f5aa21fccb {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11212
|
+
hobbies insert (2.5ms) d55213e2-c18c-11e2-890f-3aaf4bc41662 {"name"=>"boxing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11213
|
+
hobbies insert (2.6ms) d5529c86-c18c-11e2-9f8a-c1f2581e4628 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11214
|
+
hobbies insert (3.0ms) d5532660-c18c-11e2-89ca-9a47a473f531 {"name"=>"running", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11215
|
+
hobbies insert (3.2ms) d5668f48-c18c-11e2-9b2c-61d8ad910491 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11216
|
+
hobbies insert (3.0ms) d5712d36-c18c-11e2-9990-1d47582257ce {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11217
|
+
hobbies insert (2.9ms) d571c7dc-c18c-11e2-89aa-0a16c4510d15 {"name"=>"swimming", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11218
|
+
hobbies insert (3.4ms) d58f278c-c18c-11e2-9848-dbc4c2d3f8be {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11219
|
+
hobbies insert (3.0ms) d5ad4afa-c18c-11e2-9648-d8195d1a232c {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11220
|
+
hobbies insert (3.3ms) d5b452c8-c18c-11e2-8bda-21c844c306b5 {"name"=>"hiking", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11221
|
+
hobbies insert (2.6ms) d5b4fa7a-c18c-11e2-8516-f229c724f814 {"name"=>"boxing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11222
|
+
hobbies insert (2.6ms) d5b582c4-c18c-11e2-8a5a-901754fa1709 {"name"=>"fishing", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11223
|
+
hobbies insert (2.5ms) d5b60b36-c18c-11e2-968e-1819f1e8d6cd {"name"=>"running", "created_at"=>"2013-05-20T20:35:39Z", "updated_at"=>"2013-05-20T20:35:39Z"}
|
11224
|
+
people insert (3.5ms) d5c6e5dc-c18c-11e2-8bcf-1443b0afcc46 {"nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11225
|
+
people insert (2.8ms) d5c7e414-c18c-11e2-8684-821f996296dc {"nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11226
|
+
people insert (2.8ms) d5c8c2f8-c18c-11e2-89b9-bc45f2274641 {"nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11227
|
+
people insert (2.8ms) d5c99e30-c18c-11e2-9660-fce6829df6d0 {"nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11228
|
+
people insert (2.7ms) d5ca7be8-c18c-11e2-90cf-aa7e3a3a33a8 {"nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11229
|
+
people insert (3.1ms) d5cb56c6-c18c-11e2-9e94-b15084aba717 {"nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11230
|
+
people insert (3.1ms) d5e1ca78-c18c-11e2-9a82-cc767f0adffd {"nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11231
|
+
people insert (2.8ms) d5e2ba3c-c18c-11e2-9671-675dabbd1a81 {"nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11232
|
+
people insert (2.7ms) d5e39786-c18c-11e2-913a-13d966b766bc {"nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11233
|
+
people insert (2.8ms) d5e4734a-c18c-11e2-9e2a-1e1533145c98 {"nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11234
|
+
people insert (2.7ms) d5e54ff4-c18c-11e2-9c84-661f04d9d828 {"nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11235
|
+
people insert (2.7ms) d5e62b9a-c18c-11e2-88fd-0eb0004ecf34 {"nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11236
|
+
people insert (3.1ms) d60493be-c18c-11e2-9b7e-d80348ed10fe {"nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11237
|
+
people insert (2.7ms) d6057fae-c18c-11e2-949d-690a965b3a79 {"nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11238
|
+
people insert (2.7ms) d6065906-c18c-11e2-88bd-f8d7bd627d4b {"nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11239
|
+
people insert (2.7ms) d6072f02-c18c-11e2-8121-a4a2c655a70d {"nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11240
|
+
people insert (2.6ms) d60805f8-c18c-11e2-9647-d51b33bb0fc2 {"nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11241
|
+
people insert (2.7ms) d608db0e-c18c-11e2-9dc8-b953d4d199cb {"nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11242
|
+
people insert (3.2ms) d6285d6c-c18c-11e2-8cbc-d72b44672648 {"nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11243
|
+
jobs insert (3.1ms) d635ff58-c18c-11e2-92b0-646ed5e65b51 {"title"=>"Engineer", "created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11244
|
+
boats insert (2.7ms) d63dc544-c18c-11e2-9395-45831738d988 {"created_at"=>"2013-05-20T20:35:40Z", "updated_at"=>"2013-05-20T20:35:40Z"}
|
11245
|
+
people insert (9.9ms) 86dd44b0-c18d-11e2-952a-f2a89d6ed6a9 {"updated_at"=>"2013-05-20T20:40:37Z", "created_at"=>"2013-05-20T20:40:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11246
|
+
cars insert (3.4ms) 86dfc564-c18d-11e2-9c45-3e1c1d65a4f0 {"updated_at"=>"2013-05-20T20:40:37Z", "person_id"=>"86dd44b0-c18d-11e2-952a-f2a89d6ed6a9", "created_at"=>"2013-05-20T20:40:37Z", "name"=>"Jeep"}
|
11247
|
+
cars remove (1.7ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x86b2eb8>
|
11248
|
+
people remove (1.1ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x86ac108>
|
11249
|
+
people insert (3.4ms) 87066106-c18d-11e2-89dc-3d0a946e95e1 {"updated_at"=>"2013-05-20T20:40:37Z", "created_at"=>"2013-05-20T20:40:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11250
|
+
cars insert (3.7ms) 8707127c-c18d-11e2-9bd1-9cdd5efe7c44 {"updated_at"=>"2013-05-20T20:40:37Z", "person_id"=>"87066106-c18d-11e2-89dc-3d0a946e95e1", "created_at"=>"2013-05-20T20:40:37Z", "name"=>"Jeep"}
|
11251
|
+
people insert (3.4ms) 872098aa-c18d-11e2-9bec-995c216ea34e {"updated_at"=>"2013-05-20T20:40:37Z", "created_at"=>"2013-05-20T20:40:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11252
|
+
cars insert (3.1ms) 872147d2-c18d-11e2-91c8-ae07a1b36cd6 {"updated_at"=>"2013-05-20T20:40:37Z", "person_id"=>"12345", "created_at"=>"2013-05-20T20:40:37Z", "name"=>"Jeep"}
|
11253
|
+
people insert (3.7ms) 8738e32e-c18d-11e2-8c05-41a34613dae0 {"updated_at"=>"2013-05-20T20:40:37Z", "created_at"=>"2013-05-20T20:40:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11254
|
+
cars insert (60.5ms) 8739c370-c18d-11e2-84f3-aa360e350bc2 {"updated_at"=>"2013-05-20T20:40:37Z", "person_id"=>"8738e32e-c18d-11e2-8c05-41a34613dae0", "created_at"=>"2013-05-20T20:40:37Z", "name"=>"Jeep"}
|
11255
|
+
people insert (3.2ms) 875806a0-c18d-11e2-9f37-dd799715fec2 {"updated_at"=>"2013-05-20T20:40:37Z", "created_at"=>"2013-05-20T20:40:37Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11256
|
+
jobs insert (3.1ms) 875923b4-c18d-11e2-9127-7d7d3b6630ed {"updated_at"=>"2013-05-20T20:40:37Z", "title"=>"Developer", "created_at"=>"2013-05-20T20:40:37Z"}
|
11257
|
+
people insert (3.7ms) 8787b3a0-c18d-11e2-9436-8b1b44511bf8 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"John", "name"=>"John"}
|
11258
|
+
jobs insert (3.9ms) 8788702e-c18d-11e2-9c16-1df599c4dc7f {"updated_at"=>"2013-05-20T20:40:38Z", "person_id"=>"8787b3a0-c18d-11e2-9436-8b1b44511bf8", "title"=>"Developer", "created_at"=>"2013-05-20T20:40:38Z"}
|
11259
|
+
people insert (3.3ms) 87ab79a2-c18d-11e2-9016-1a451d515af7 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11260
|
+
people insert (3.2ms) 87b2859e-c18d-11e2-8028-c7643fde0489 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11261
|
+
people insert (0.4ms) 87c1cb26-c18d-11e2-8dd1-cc09a06c4be6 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11262
|
+
people insert (0.4ms) 87c519fc-c18d-11e2-84b6-0d22de01a229 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11263
|
+
people insert (1.1ms) 87c83d3a-c18d-11e2-8309-94000c36e3b0 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11264
|
+
people insert (1.1ms) 87cb6b40-c18d-11e2-9c73-fa08128ec494 {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11265
|
+
people insert (3.2ms) 87ce7a38-c18d-11e2-842b-ff1f0a4ba94a {"updated_at"=>"2013-05-20T20:40:38Z", "created_at"=>"2013-05-20T20:40:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11266
|
+
people remove (0.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x8ab3dc8>
|
11267
|
+
hobbies insert (4.1ms) 91deae30-c18d-11e2-9b1d-e772572e7e90 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"a"}
|
11268
|
+
hobbies insert (2.8ms) 91df7982-c18d-11e2-908d-511c903a7820 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"b"}
|
11269
|
+
hobbies insert (4.2ms) 91e00b18-c18d-11e2-9aa9-43c33c6b4724 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"c"}
|
11270
|
+
hobbies insert (2.7ms) 91e0d386-c18d-11e2-9e68-f7e35b876faf {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"d"}
|
11271
|
+
hobbies insert (2.6ms) 91e161f2-c18d-11e2-8dac-f363bf121125 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"e"}
|
11272
|
+
hobbies insert (2.8ms) 91e1edac-c18d-11e2-8ef2-1ac0b8898e17 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"f"}
|
11273
|
+
hobbies insert (3.6ms) 91e27f10-c18d-11e2-80ba-27b6d43930ac {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"g"}
|
11274
|
+
hobbies insert (2.6ms) 91e3316c-c18d-11e2-8ec9-690f39a813af {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"h"}
|
11275
|
+
hobbies insert (2.8ms) 91e3baec-c18d-11e2-9822-ff742c219fd5 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"i"}
|
11276
|
+
hobbies insert (2.6ms) 91e44c32-c18d-11e2-80de-ab1f7e911f0b {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"j"}
|
11277
|
+
hobbies insert (2.7ms) 91e4d882-c18d-11e2-9ca8-3e117c895137 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"k"}
|
11278
|
+
hobbies insert (3.5ms) 91e567d4-c18d-11e2-834a-5a3fd13c7a48 {"updated_at"=>"2013-05-20T20:40:55Z", "created_at"=>"2013-05-20T20:40:55Z", "name"=>"l"}
|
11279
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11280
|
+
hobbies insert (3.9ms) 92890074-c18d-11e2-80ba-6d7145ba1830 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"a"}
|
11281
|
+
hobbies insert (2.6ms) 9289c19e-c18d-11e2-904f-99e6e20d1c27 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"b"}
|
11282
|
+
hobbies insert (2.6ms) 928a4eb6-c18d-11e2-8b11-b56f7db372bb {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"c"}
|
11283
|
+
hobbies insert (2.6ms) 928adb56-c18d-11e2-8d83-b84026e8ff15 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"d"}
|
11284
|
+
hobbies insert (2.7ms) 928b6800-c18d-11e2-8d76-6a5d8354882d {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"e"}
|
11285
|
+
hobbies insert (2.7ms) 928bf69e-c18d-11e2-8dc0-9d658d59eda9 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"f"}
|
11286
|
+
hobbies insert (2.9ms) 928c8618-c18d-11e2-92c7-0f7489092588 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"g"}
|
11287
|
+
hobbies insert (2.6ms) 928d1cb8-c18d-11e2-84fc-3b4f8db34980 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"h"}
|
11288
|
+
hobbies insert (2.7ms) 928da782-c18d-11e2-92ec-fdf901c1f5cc {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"i"}
|
11289
|
+
hobbies insert (2.6ms) 928e360c-c18d-11e2-831e-0dce737e17f2 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"j"}
|
11290
|
+
hobbies insert (3.0ms) 928ec1da-c18d-11e2-8c37-f19cee82d0a0 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"k"}
|
11291
|
+
hobbies insert (2.6ms) 928f5c44-c18d-11e2-8858-86ab429e9b71 {"updated_at"=>"2013-05-20T20:40:56Z", "created_at"=>"2013-05-20T20:40:56Z", "name"=>"l"}
|
11292
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11293
|
+
boats insert (3.2ms) 92b90a8a-c18d-11e2-8d28-ac5ee31ba259 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"Spooner"}
|
11294
|
+
boats insert (3.5ms) 92c23650-c18d-11e2-9489-82c851fb5f64 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"Water Lily"}
|
11295
|
+
boats insert (3.0ms) 92cb8c64-c18d-11e2-909e-149dce815004 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"Dumb: Name"}
|
11296
|
+
hobbies insert (3.8ms) 92e10dbe-c18d-11e2-8752-e865175db413 {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>1.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"biking"}
|
11297
|
+
hobbies insert (3.3ms) 92e1cdb2-c18d-11e2-8b4f-af2af3a36457 {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>4.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"skydiving"}
|
11298
|
+
hobbies remove (1.2ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x950dbc0>
|
11299
|
+
hobbies insert (4.0ms) 92f97c46-c18d-11e2-8751-3f6211fcb3f8 {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>1.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"biking"}
|
11300
|
+
hobbies insert (3.1ms) 92fa4748-c18d-11e2-8bf0-b30e9fc6c38d {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>4.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"skydiving"}
|
11301
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x921eba8>
|
11302
|
+
hobbies insert (3.3ms) 93053c98-c18d-11e2-9ada-2033c90945fe {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>1.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"biking"}
|
11303
|
+
hobbies insert (2.8ms) 9305ea6c-c18d-11e2-8049-70fc5446e3f8 {"updated_at"=>"2013-05-20T20:40:57Z", "complexity"=>4.0, "created_at"=>"2013-05-20T20:40:57Z", "name"=>"skydiving"}
|
11304
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x8ff7910>
|
11305
|
+
hobbies remove (1.1ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x8fb1e10>
|
11306
|
+
hobbies insert (3.6ms) 931ad404-c18d-11e2-81d0-164e9ac45a56 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"swimming"}
|
11307
|
+
hobbies insert (3.3ms) 93232942-c18d-11e2-9ace-7e2ea1643e1c {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"a"}
|
11308
|
+
hobbies insert (2.7ms) 9323d248-c18d-11e2-88bf-8071e71feb2a {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"b"}
|
11309
|
+
hobbies insert (2.7ms) 932462a8-c18d-11e2-8a35-ce6525e7ec93 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"c"}
|
11310
|
+
hobbies insert (2.8ms) 9324f380-c18d-11e2-8eff-a2784680c16f {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"d"}
|
11311
|
+
hobbies insert (2.6ms) 932584c6-c18d-11e2-86c4-57b26fdb2535 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"e"}
|
11312
|
+
hobbies insert (2.7ms) 9326127e-c18d-11e2-84fd-6e4a0b170040 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"f"}
|
11313
|
+
hobbies insert (2.7ms) 9326a1b2-c18d-11e2-9e94-d9ed5a406859 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"g"}
|
11314
|
+
hobbies insert (2.7ms) 93272f92-c18d-11e2-851b-d120a1d00304 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"h"}
|
11315
|
+
hobbies insert (2.8ms) 9327bd04-c18d-11e2-81c2-c33b11503e69 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"i"}
|
11316
|
+
hobbies insert (2.6ms) 93284f3a-c18d-11e2-9220-c8de5ec01082 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"j"}
|
11317
|
+
hobbies insert (2.7ms) 9328db76-c18d-11e2-8639-d7476fd14b47 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"k"}
|
11318
|
+
hobbies insert (2.5ms) 93296b86-c18d-11e2-801c-2e0ee9aa7298 {"updated_at"=>"2013-05-20T20:40:57Z", "created_at"=>"2013-05-20T20:40:57Z", "name"=>"l"}
|
11319
|
+
hobbies insert (3.5ms) 934d91d2-c18d-11e2-8410-8221768d29f7 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"a"}
|
11320
|
+
hobbies insert (2.7ms) 934e4532-c18d-11e2-8863-a5ec90d850b3 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"b"}
|
11321
|
+
hobbies insert (2.7ms) 934ed39e-c18d-11e2-97d5-8001ba881164 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"c"}
|
11322
|
+
hobbies insert (2.7ms) 934f61b0-c18d-11e2-8d5b-a7e0b15a549a {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"d"}
|
11323
|
+
hobbies insert (2.7ms) 934ff1de-c18d-11e2-8633-441ee76112fa {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"e"}
|
11324
|
+
hobbies insert (2.7ms) 93508022-c18d-11e2-849d-b2194c47abae {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"f"}
|
11325
|
+
hobbies insert (2.6ms) 93510fc4-c18d-11e2-8897-9392b76671bf {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"g"}
|
11326
|
+
hobbies insert (2.7ms) 93519a70-c18d-11e2-9abf-f1e8d0d0e831 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"h"}
|
11327
|
+
hobbies insert (2.6ms) 93522756-c18d-11e2-9132-fa65f489a2bf {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"i"}
|
11328
|
+
hobbies insert (2.6ms) 9352b284-c18d-11e2-8e51-1e7493140c8d {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"j"}
|
11329
|
+
hobbies insert (2.5ms) 93533c86-c18d-11e2-8016-b78091cb6218 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"k"}
|
11330
|
+
hobbies insert (2.6ms) 9353c3ea-c18d-11e2-99c3-8f3beffcd481 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"l"}
|
11331
|
+
hobbies insert (3.4ms) 9377cfce-c18d-11e2-9300-9dbfad518d20 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"fishing"}
|
11332
|
+
hobbies insert (2.5ms) 937879e2-c18d-11e2-848a-03d38fcee97b {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"hiking"}
|
11333
|
+
hobbies insert (2.7ms) 93790178-c18d-11e2-9ce6-4571a5860753 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"boating"}
|
11334
|
+
hobbies insert (2.8ms) 937990ac-c18d-11e2-8333-aa3a3c3c10e4 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"jogging"}
|
11335
|
+
hobbies insert (2.6ms) 937a2198-c18d-11e2-8594-c492107a1cf0 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"swimming"}
|
11336
|
+
hobbies insert (2.7ms) 937aacd0-c18d-11e2-827e-ecf4774fe5b2 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"chess"}
|
11337
|
+
hobbies insert (3.7ms) 938f6e54-c18d-11e2-9a82-9ef449c7c3a5 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"fishing"}
|
11338
|
+
hobbies insert (2.8ms) 93902556-c18d-11e2-8a6f-6b81e63aedea {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"hiking"}
|
11339
|
+
hobbies insert (2.8ms) 9390b9e4-c18d-11e2-9fa5-ff35e84a84a2 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"boating"}
|
11340
|
+
hobbies insert (2.8ms) 93914bc0-c18d-11e2-80f2-19766e8de05e {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"jogging"}
|
11341
|
+
hobbies insert (2.7ms) 9391def0-c18d-11e2-9a84-1ca1ff74cac3 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"swimming"}
|
11342
|
+
hobbies insert (2.7ms) 93926d02-c18d-11e2-9395-eb87c90cd535 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"chess"}
|
11343
|
+
hobbies insert (3.4ms) 93a991a8-c18d-11e2-9413-708438aca597 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z", "name"=>"Swimming"}
|
11344
|
+
hobbies insert (2.6ms) 93aa3b94-c18d-11e2-9e31-2a545eac7564 {"updated_at"=>"2013-05-20T20:40:58Z", "created_at"=>"2013-05-20T20:40:58Z"}
|
11345
|
+
hobbies insert (3.8ms) 93b23862-c18d-11e2-90ab-257ab0edb94d {"updated_at"=>"2013-05-20T20:40:58Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:58Z", "name"=>"Swimming"}
|
11346
|
+
hobbies insert (3.6ms) 93ca9d1c-c18d-11e2-8564-d2bca6a6f581 {"updated_at"=>"2013-05-20T20:40:58Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:58Z", "name"=>"Swimming"}
|
11347
|
+
hobbies insert (3.6ms) 93d306aa-c18d-11e2-8c0a-921553129e6a {"updated_at"=>"2013-05-20T20:40:58Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:58Z", "name"=>"Swimming"}
|
11348
|
+
hobbies insert (3.6ms) 93e6a5a2-c18d-11e2-9242-d66f757c892b {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11349
|
+
hobbies insert (3.6ms) 93eed4c0-c18d-11e2-9d82-14c64fdfca13 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"fishing"}
|
11350
|
+
hobbies insert (2.7ms) 93ef88b6-c18d-11e2-89d0-729377bcaf56 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"hiking"}
|
11351
|
+
hobbies insert (2.8ms) 93f015f6-c18d-11e2-9827-6b1a4d599795 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"boating"}
|
11352
|
+
hobbies insert (2.7ms) 93f0a7dc-c18d-11e2-9714-68ee9f25bd8e {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"jogging"}
|
11353
|
+
hobbies insert (2.7ms) 93f13602-c18d-11e2-89ac-f3121f074857 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"swimming"}
|
11354
|
+
hobbies insert (2.9ms) 93f1c630-c18d-11e2-96d1-aa60d5f9a6db {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"chess"}
|
11355
|
+
hobbies insert (3.5ms) 940517c6-c18d-11e2-95cd-bfad22b20ca4 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>-1.2, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"jogging"}
|
11356
|
+
hobbies insert (3.6ms) 940e97a6-c18d-11e2-855d-35070636af80 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"horseback riding"}
|
11357
|
+
hobbies insert (3.5ms) 941b52f2-c18d-11e2-8481-80bc4352a33f {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"horseback riding"}
|
11358
|
+
hobbies insert (3.7ms) 9423ea02-c18d-11e2-9f89-c022bedb0398 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.2, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"jogging"}
|
11359
|
+
hobbies insert (3.4ms) 9430f9fe-c18d-11e2-9a08-7ee2d65023f1 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11360
|
+
hobbies insert (3.5ms) 943a90b8-c18d-11e2-8ba9-f3fed3c337af {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11361
|
+
hobbies insert (2.7ms) 943b41d4-c18d-11e2-988e-0aefbc4ff652 {"updated_at"=>"2013-05-20T20:40:59Z", "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Biking"}
|
11362
|
+
hobbies insert (3.5ms) 944af430-c18d-11e2-900a-5680799cf6c3 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11363
|
+
hobbies insert (3.7ms) 9454802c-c18d-11e2-8073-32e95f32ade2 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11364
|
+
hobbies insert (3.5ms) 945f6334-c18d-11e2-93d0-f6cda0acba45 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11365
|
+
hobbies insert (3.6ms) 94692b30-c18d-11e2-9eff-7ba51cae9f1d {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.1, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"Swimming"}
|
11366
|
+
hobbies insert (3.4ms) 94730e02-c18d-11e2-85cf-ecddf74a8030 {"updated_at"=>"2013-05-20T20:40:59Z", "complexity"=>1.2, "created_at"=>"2013-05-20T20:40:59Z", "name"=>"jogging"}
|
11367
|
+
hobbies insert (3.6ms) 94845464-c18d-11e2-9ab5-966fbe6fc71d {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"Swimming"}
|
11368
|
+
hobbies insert (3.5ms) 948d79c2-c18d-11e2-835a-b334bac30326 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"fishing"}
|
11369
|
+
hobbies insert (3.5ms) 94984f6e-c18d-11e2-9569-bb9844cd2d02 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"hiking"}
|
11370
|
+
hobbies insert (2.8ms) 949901a2-c18d-11e2-8978-fc95daa8d00c {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"boxing"}
|
11371
|
+
hobbies insert (2.7ms) 94999464-c18d-11e2-8b7b-904f73205973 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"fishing"}
|
11372
|
+
hobbies insert (2.8ms) 949a2352-c18d-11e2-8819-81787c5b6a50 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"running"}
|
11373
|
+
hobbies insert (3.4ms) 94abe8d0-c18d-11e2-8fd7-47d5e595dfff {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"fishing"}
|
11374
|
+
hobbies insert (3.5ms) 94b8bfce-c18d-11e2-926d-df6b4b32d441 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"hiking"}
|
11375
|
+
hobbies insert (2.8ms) 94b97108-c18d-11e2-897a-b3bb20b84c4f {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"swimming"}
|
11376
|
+
hobbies insert (3.1ms) 94d8b40a-c18d-11e2-8b85-64cada686f63 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"hiking"}
|
11377
|
+
hobbies insert (3.4ms) 94df7cc2-c18d-11e2-8541-f16892de50a9 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"hiking"}
|
11378
|
+
hobbies insert (3.5ms) 94ee62dc-c18d-11e2-80aa-0487b1286747 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"hiking"}
|
11379
|
+
hobbies insert (2.8ms) 94ef13c6-c18d-11e2-9c50-c12871bd0c36 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"boxing"}
|
11380
|
+
hobbies insert (2.8ms) 94efa6e2-c18d-11e2-8f6b-bb30c8253dad {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"fishing"}
|
11381
|
+
hobbies insert (2.7ms) 94f0383c-c18d-11e2-8ad2-2fc3ed8abbab {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"running"}
|
11382
|
+
people insert (3.2ms) 950238a2-c18d-11e2-9d7c-3878b0461398 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"John", "nickname"=>"J"}
|
11383
|
+
people insert (3.3ms) 95032f8c-c18d-11e2-9de8-d29065eec9c2 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"Jason", "nickname"=>"J"}
|
11384
|
+
people insert (3.0ms) 95042540-c18d-11e2-992f-f2ab5d18bb47 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"James", "nickname"=>"J"}
|
11385
|
+
people insert (3.1ms) 95050dfc-c18d-11e2-8189-a7a00658a724 {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"Kathrine", "nickname"=>"Kat"}
|
11386
|
+
people insert (3.1ms) 9505fe92-c18d-11e2-9e0e-d77b325ef24d {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"Kathy", "nickname"=>"Kat"}
|
11387
|
+
people insert (3.3ms) 9506f446-c18d-11e2-9a31-4098367d0ded {"updated_at"=>"2013-05-20T20:41:00Z", "created_at"=>"2013-05-20T20:41:00Z", "name"=>"Steven", "nickname"=>"Steve"}
|
11388
|
+
people insert (3.9ms) 9523d55c-c18d-11e2-8f84-b7023e657dce {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"John", "nickname"=>"J"}
|
11389
|
+
people insert (3.6ms) 9524ee42-c18d-11e2-81a9-eb9fcdc443fa {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Jason", "nickname"=>"J"}
|
11390
|
+
people insert (3.1ms) 9525f5da-c18d-11e2-8272-1f7ab51b5325 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"James", "nickname"=>"J"}
|
11391
|
+
people insert (3.0ms) 9526e92c-c18d-11e2-9216-60e510fb2612 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Kathrine", "nickname"=>"Kat"}
|
11392
|
+
people insert (3.0ms) 9527d8b4-c18d-11e2-9fa7-36c479376b77 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Kathy", "nickname"=>"Kat"}
|
11393
|
+
people insert (3.0ms) 9528c954-c18d-11e2-8e0b-b59b7caa8fcb {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Steven", "nickname"=>"Steve"}
|
11394
|
+
people insert (3.2ms) 9549a4e4-c18d-11e2-9add-2d12d5fcebaf {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"John", "nickname"=>"J"}
|
11395
|
+
people insert (2.7ms) 954a95ca-c18d-11e2-83e7-473c1f018754 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Jason", "nickname"=>"J"}
|
11396
|
+
people insert (2.7ms) 954b7396-c18d-11e2-81af-1989107a6647 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"James", "nickname"=>"J"}
|
11397
|
+
people insert (2.7ms) 954c4f82-c18d-11e2-95ad-352640852f7e {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Kathrine", "nickname"=>"Kat"}
|
11398
|
+
people insert (2.8ms) 954d2d76-c18d-11e2-8a73-2b27c9727752 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Kathy", "nickname"=>"Kat"}
|
11399
|
+
people insert (2.7ms) 954e0b1a-c18d-11e2-96f2-23ccaf65b023 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "name"=>"Steven", "nickname"=>"Steve"}
|
11400
|
+
people insert (3.3ms) 9576b88a-c18d-11e2-85a2-b20807c7a261 {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11401
|
+
people insert (3.4ms) 95819f98-c18d-11e2-8a4c-8412f09f31e1 {"updated_at"=>"2013-05-20T20:41:01Z", "birthdate"=>"1985-10-19T00:00:00Z", "created_at"=>"2013-05-20T20:41:01Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11402
|
+
people insert (3.3ms) 95819f98-c18d-11e2-8a4c-8412f09f31e1 {"updated_at"=>"2013-05-20T20:41:01Z", "birthdate"=>"1980-10-19T00:00:00Z", "created_at"=>"2013-05-20T20:41:01Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11403
|
+
jobs insert (3.1ms) 9591be3c-c18d-11e2-99f4-5a5419f788f8 {"updated_at"=>"2013-05-20T20:41:01Z", "title"=>"Engineer", "created_at"=>"2013-05-20T20:41:01Z"}
|
11404
|
+
boats insert (2.9ms) 959c1684-c18d-11e2-95c7-d8c32d14c7fa {"updated_at"=>"2013-05-20T20:41:01Z", "created_at"=>"2013-05-20T20:41:01Z"}
|
11405
|
+
people insert (10.8ms) dbd7f7a8-c18d-11e2-92bb-88ab69a33227 {"updated_at"=>"2013-05-20T20:42:59Z", "nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:42:59Z"}
|
11406
|
+
cars insert (3.5ms) dbdab754-c18d-11e2-9664-d1fcada773f2 {"updated_at"=>"2013-05-20T20:42:59Z", "name"=>"Jeep", "created_at"=>"2013-05-20T20:42:59Z", "person_id"=>"dbd7f7a8-c18d-11e2-92bb-88ab69a33227"}
|
11407
|
+
cars remove (2.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1c073f98>
|
11408
|
+
people remove (1.1ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1c06d1e8>
|
11409
|
+
people insert (3.9ms) dc067902-c18d-11e2-9c94-0377de041e03 {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:43:00Z"}
|
11410
|
+
cars insert (3.6ms) dc073e46-c18d-11e2-8a7e-4ae4d0f84d22 {"updated_at"=>"2013-05-20T20:43:00Z", "name"=>"Jeep", "created_at"=>"2013-05-20T20:43:00Z", "person_id"=>"dc067902-c18d-11e2-9c94-0377de041e03"}
|
11411
|
+
people insert (3.4ms) dc1aa922-c18d-11e2-977d-2e0f4917fd28 {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:43:00Z"}
|
11412
|
+
cars insert (7.3ms) dc1b5cfa-c18d-11e2-9b79-e9b7a26b7d1d {"updated_at"=>"2013-05-20T20:43:00Z", "name"=>"Jeep", "created_at"=>"2013-05-20T20:43:00Z", "person_id"=>"12345"}
|
11413
|
+
people insert (3.7ms) dc2f8f0e-c18d-11e2-86a9-9c6c2d0d8d04 {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"jason", "name"=>"jason", "created_at"=>"2013-05-20T20:43:00Z"}
|
11414
|
+
cars insert (72.0ms) dc306b5e-c18d-11e2-9506-3007202993c0 {"updated_at"=>"2013-05-20T20:43:00Z", "name"=>"Jeep", "created_at"=>"2013-05-20T20:43:00Z", "person_id"=>"dc2f8f0e-c18d-11e2-86a9-9c6c2d0d8d04"}
|
11415
|
+
people insert (3.7ms) dc4c1f16-c18d-11e2-95b2-cb5782f90342 {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:00Z"}
|
11416
|
+
jobs insert (3.2ms) dc4d4bd4-c18d-11e2-813c-672ea133c474 {"title"=>"Developer", "updated_at"=>"2013-05-20T20:43:00Z", "created_at"=>"2013-05-20T20:43:00Z"}
|
11417
|
+
people insert (3.2ms) dc63b248-c18d-11e2-92b0-b0eaedacaaeb {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"John", "name"=>"John", "created_at"=>"2013-05-20T20:43:00Z"}
|
11418
|
+
jobs insert (3.7ms) dc6459be-c18d-11e2-9ece-825e32c97b04 {"title"=>"Developer", "updated_at"=>"2013-05-20T20:43:00Z", "created_at"=>"2013-05-20T20:43:00Z", "person_id"=>"dc63b248-c18d-11e2-92b0-b0eaedacaaeb"}
|
11419
|
+
people insert (3.3ms) dc94e6a6-c18d-11e2-8074-dc6b497eee78 {"updated_at"=>"2013-05-20T20:43:00Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:00Z"}
|
11420
|
+
people insert (3.1ms) dc9cebf8-c18d-11e2-9c06-2aa40874de10 {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:01Z"}
|
11421
|
+
people insert (0.4ms) dcab1714-c18d-11e2-9a68-fae2ccd48beb {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:01Z"}
|
11422
|
+
people insert (0.4ms) dcae1c7a-c18d-11e2-8561-f1f4c845bba0 {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:01Z"}
|
11423
|
+
people insert (1.2ms) dcb13a40-c18d-11e2-91f9-bc7a76bc5e02 {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:01Z"}
|
11424
|
+
people insert (1.1ms) dcb49b90-c18d-11e2-87ef-c24acb212f43 {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:01Z"}
|
11425
|
+
people insert (3.0ms) dcb7b0a0-c18d-11e2-90fd-ce8ce3d2439d {"updated_at"=>"2013-05-20T20:43:01Z", "nickname"=>"Steven", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:01Z"}
|
11426
|
+
people remove (0.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1c473aa8>
|
11427
|
+
hobbies insert (3.9ms) e6bc9f3e-c18d-11e2-8eef-1aff55d2acef {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"a", "created_at"=>"2013-05-20T20:43:18Z"}
|
11428
|
+
hobbies insert (2.7ms) e6bd60c2-c18d-11e2-9b09-e6f6c1c22d4d {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"b", "created_at"=>"2013-05-20T20:43:18Z"}
|
11429
|
+
hobbies insert (2.6ms) e6bdef9c-c18d-11e2-810f-3c90eebebbff {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"c", "created_at"=>"2013-05-20T20:43:18Z"}
|
11430
|
+
hobbies insert (2.6ms) e6be7a7a-c18d-11e2-9921-1476b9527b04 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"d", "created_at"=>"2013-05-20T20:43:18Z"}
|
11431
|
+
hobbies insert (2.6ms) e6bf0710-c18d-11e2-87a4-42ce274c90f0 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"e", "created_at"=>"2013-05-20T20:43:18Z"}
|
11432
|
+
hobbies insert (2.7ms) e6bf9202-c18d-11e2-97a7-9b9f52807369 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"f", "created_at"=>"2013-05-20T20:43:18Z"}
|
11433
|
+
hobbies insert (2.6ms) e6c0215e-c18d-11e2-9a9e-0ba0a24852f2 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"g", "created_at"=>"2013-05-20T20:43:18Z"}
|
11434
|
+
hobbies insert (2.6ms) e6c0ad72-c18d-11e2-9172-662d4809f55f {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"h", "created_at"=>"2013-05-20T20:43:18Z"}
|
11435
|
+
hobbies insert (2.6ms) e6c1388c-c18d-11e2-9bd3-1e66dc7ca234 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"i", "created_at"=>"2013-05-20T20:43:18Z"}
|
11436
|
+
hobbies insert (2.6ms) e6c1c2ca-c18d-11e2-8441-46a03930d618 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"j", "created_at"=>"2013-05-20T20:43:18Z"}
|
11437
|
+
hobbies insert (2.5ms) e6c24d44-c18d-11e2-9a9c-8208cdd9ebc2 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"k", "created_at"=>"2013-05-20T20:43:18Z"}
|
11438
|
+
hobbies insert (2.5ms) e6c2d6d8-c18d-11e2-9f89-89a6b283c21a {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"l", "created_at"=>"2013-05-20T20:43:18Z"}
|
11439
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11440
|
+
hobbies insert (3.5ms) e6e7dff0-c18d-11e2-92c7-111c10854bdc {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"a", "created_at"=>"2013-05-20T20:43:18Z"}
|
11441
|
+
hobbies insert (2.9ms) e6e891e8-c18d-11e2-85fe-f69922828118 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"b", "created_at"=>"2013-05-20T20:43:18Z"}
|
11442
|
+
hobbies insert (2.8ms) e6e9291e-c18d-11e2-85c4-fe1662d25ecd {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"c", "created_at"=>"2013-05-20T20:43:18Z"}
|
11443
|
+
hobbies insert (2.9ms) e6e9bb90-c18d-11e2-8283-a97eb16932ba {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"d", "created_at"=>"2013-05-20T20:43:18Z"}
|
11444
|
+
hobbies insert (2.8ms) e6ea5186-c18d-11e2-8b6c-222406f5719e {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"e", "created_at"=>"2013-05-20T20:43:18Z"}
|
11445
|
+
hobbies insert (2.6ms) e6eae2e0-c18d-11e2-9d26-f55ddf9992a0 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"f", "created_at"=>"2013-05-20T20:43:18Z"}
|
11446
|
+
hobbies insert (2.7ms) e6eb6cf6-c18d-11e2-9809-2d80ae0eaf91 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"g", "created_at"=>"2013-05-20T20:43:18Z"}
|
11447
|
+
hobbies insert (2.6ms) e6ebfbf8-c18d-11e2-8cad-1d319cd17d98 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"h", "created_at"=>"2013-05-20T20:43:18Z"}
|
11448
|
+
hobbies insert (2.7ms) e6ec871c-c18d-11e2-97ac-217deb6a1291 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"i", "created_at"=>"2013-05-20T20:43:18Z"}
|
11449
|
+
hobbies insert (2.5ms) e6ed16d2-c18d-11e2-8626-ad2be974f5af {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"j", "created_at"=>"2013-05-20T20:43:18Z"}
|
11450
|
+
hobbies insert (2.7ms) e6ed9f1c-c18d-11e2-9b71-c7f22c369eb3 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"k", "created_at"=>"2013-05-20T20:43:18Z"}
|
11451
|
+
hobbies insert (2.5ms) e6ee2d42-c18d-11e2-98a5-18e1e176f244 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"l", "created_at"=>"2013-05-20T20:43:18Z"}
|
11452
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11453
|
+
boats insert (3.1ms) e713ccaa-c18d-11e2-9acb-74fa32b96201 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"Spooner", "created_at"=>"2013-05-20T20:43:18Z"}
|
11454
|
+
boats insert (3.4ms) e71c7d0a-c18d-11e2-949a-2906a15be72b {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"Water Lily", "created_at"=>"2013-05-20T20:43:18Z"}
|
11455
|
+
boats insert (3.0ms) e726cde6-c18d-11e2-89b5-7525868db52f {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"Dumb: Name", "created_at"=>"2013-05-20T20:43:18Z"}
|
11456
|
+
hobbies insert (3.2ms) e73b996a-c18d-11e2-9d95-096b1a99e3a2 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"biking", "created_at"=>"2013-05-20T20:43:18Z", "complexity"=>1.0}
|
11457
|
+
hobbies insert (2.8ms) e73c43ba-c18d-11e2-87bf-ef44f724085b {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"skydiving", "created_at"=>"2013-05-20T20:43:18Z", "complexity"=>4.0}
|
11458
|
+
hobbies remove (1.2ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1cecff60>
|
11459
|
+
hobbies insert (3.0ms) e746556c-c18d-11e2-905b-47c0d8243e6d {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"biking", "created_at"=>"2013-05-20T20:43:18Z", "complexity"=>1.0}
|
11460
|
+
hobbies insert (2.8ms) e746f6ac-c18d-11e2-9b43-b6a2b2c4a5e5 {"updated_at"=>"2013-05-20T20:43:18Z", "name"=>"skydiving", "created_at"=>"2013-05-20T20:43:18Z", "complexity"=>4.0}
|
11461
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1cbdfd28>
|
11462
|
+
hobbies insert (3.0ms) e75a540e-c18d-11e2-8256-1299da95208e {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"biking", "created_at"=>"2013-05-20T20:43:19Z", "complexity"=>1.0}
|
11463
|
+
hobbies insert (3.3ms) e75af4ea-c18d-11e2-8e31-422ccae72b89 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"skydiving", "created_at"=>"2013-05-20T20:43:19Z", "complexity"=>4.0}
|
11464
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1c9b82e8>
|
11465
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1c972bf8>
|
11466
|
+
hobbies insert (2.8ms) e76dc818-c18d-11e2-84e5-acdff267cb47 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"swimming", "created_at"=>"2013-05-20T20:43:19Z"}
|
11467
|
+
hobbies insert (2.8ms) e7766da6-c18d-11e2-94fd-a879171d05df {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"a", "created_at"=>"2013-05-20T20:43:19Z"}
|
11468
|
+
hobbies insert (2.5ms) e77702fc-c18d-11e2-9b60-2019e4f7ae28 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"b", "created_at"=>"2013-05-20T20:43:19Z"}
|
11469
|
+
hobbies insert (2.5ms) e7778ad8-c18d-11e2-9780-80a8b81491b3 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"c", "created_at"=>"2013-05-20T20:43:19Z"}
|
11470
|
+
hobbies insert (2.6ms) e7781368-c18d-11e2-895b-96bbb02757ad {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"d", "created_at"=>"2013-05-20T20:43:19Z"}
|
11471
|
+
hobbies insert (2.6ms) e7789d2e-c18d-11e2-9eb5-bce0af584515 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"e", "created_at"=>"2013-05-20T20:43:19Z"}
|
11472
|
+
hobbies insert (2.6ms) e7792974-c18d-11e2-9dcf-b5442da1a7a2 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"f", "created_at"=>"2013-05-20T20:43:19Z"}
|
11473
|
+
hobbies insert (2.5ms) e779b268-c18d-11e2-827c-d7137f5858ec {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"g", "created_at"=>"2013-05-20T20:43:19Z"}
|
11474
|
+
hobbies insert (2.5ms) e77a3b16-c18d-11e2-9c45-a0b8328cc6e4 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"h", "created_at"=>"2013-05-20T20:43:19Z"}
|
11475
|
+
hobbies insert (2.5ms) e77ac392-c18d-11e2-8281-5057f311ce6d {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"i", "created_at"=>"2013-05-20T20:43:19Z"}
|
11476
|
+
hobbies insert (2.8ms) e77b4bf0-c18d-11e2-91f5-fff8d2dc6ac8 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"j", "created_at"=>"2013-05-20T20:43:19Z"}
|
11477
|
+
hobbies insert (2.7ms) e77bdd18-c18d-11e2-9411-d719524ed08e {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"k", "created_at"=>"2013-05-20T20:43:19Z"}
|
11478
|
+
hobbies insert (2.6ms) e77c6a4e-c18d-11e2-8228-36d2fa579245 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"l", "created_at"=>"2013-05-20T20:43:19Z"}
|
11479
|
+
hobbies insert (2.9ms) e7a0ac92-c18d-11e2-9d3b-4877c19a6732 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"a", "created_at"=>"2013-05-20T20:43:19Z"}
|
11480
|
+
hobbies insert (2.8ms) e7a14616-c18d-11e2-8ba7-4ad7a09012cb {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"b", "created_at"=>"2013-05-20T20:43:19Z"}
|
11481
|
+
hobbies insert (2.6ms) e7a1d856-c18d-11e2-8e59-2994a18aa172 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"c", "created_at"=>"2013-05-20T20:43:19Z"}
|
11482
|
+
hobbies insert (2.7ms) e7a2642e-c18d-11e2-966a-f00be7381a22 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"d", "created_at"=>"2013-05-20T20:43:19Z"}
|
11483
|
+
hobbies insert (2.5ms) e7a2f2f4-c18d-11e2-9680-d9d1a823aa46 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"e", "created_at"=>"2013-05-20T20:43:19Z"}
|
11484
|
+
hobbies insert (2.6ms) e7a37922-c18d-11e2-8953-e41e951e093c {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"f", "created_at"=>"2013-05-20T20:43:19Z"}
|
11485
|
+
hobbies insert (2.5ms) e7a40356-c18d-11e2-835f-d52ad100dcaa {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"g", "created_at"=>"2013-05-20T20:43:19Z"}
|
11486
|
+
hobbies insert (2.5ms) e7a4897a-c18d-11e2-93ac-2c9f8d83060e {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"h", "created_at"=>"2013-05-20T20:43:19Z"}
|
11487
|
+
hobbies insert (2.6ms) e7a50fee-c18d-11e2-80ff-98eba4bf7840 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"i", "created_at"=>"2013-05-20T20:43:19Z"}
|
11488
|
+
hobbies insert (2.6ms) e7a59a5e-c18d-11e2-8a09-af9ba341019d {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"j", "created_at"=>"2013-05-20T20:43:19Z"}
|
11489
|
+
hobbies insert (2.5ms) e7a62438-c18d-11e2-865e-6eaef6c975a0 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"k", "created_at"=>"2013-05-20T20:43:19Z"}
|
11490
|
+
hobbies insert (2.5ms) e7a6aaca-c18d-11e2-911c-47757ad12855 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"l", "created_at"=>"2013-05-20T20:43:19Z"}
|
11491
|
+
hobbies insert (3.6ms) e7c381f4-c18d-11e2-95a0-91074f383ac0 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:19Z"}
|
11492
|
+
hobbies insert (2.5ms) e7c432ac-c18d-11e2-9f85-6376d04f9c77 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:19Z"}
|
11493
|
+
hobbies insert (2.5ms) e7c4b77c-c18d-11e2-80a1-f8fdf8ac9ec5 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"boating", "created_at"=>"2013-05-20T20:43:19Z"}
|
11494
|
+
hobbies insert (2.7ms) e7c53e40-c18d-11e2-8fca-30cda2303829 {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:19Z"}
|
11495
|
+
hobbies insert (3.9ms) e7c5cab8-c18d-11e2-9615-a088f3f1a06d {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"swimming", "created_at"=>"2013-05-20T20:43:19Z"}
|
11496
|
+
hobbies insert (2.5ms) e7c688ae-c18d-11e2-8c59-31e27cb2ec0c {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"chess", "created_at"=>"2013-05-20T20:43:19Z"}
|
11497
|
+
hobbies insert (2.9ms) e7e91310-c18d-11e2-8ca0-8916861d979c {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:19Z"}
|
11498
|
+
hobbies insert (2.5ms) e7e9ab68-c18d-11e2-80ca-ef37360434fb {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:19Z"}
|
11499
|
+
hobbies insert (2.6ms) e7ea3132-c18d-11e2-8068-90a4c8b1bfff {"updated_at"=>"2013-05-20T20:43:19Z", "name"=>"boating", "created_at"=>"2013-05-20T20:43:19Z"}
|
11500
|
+
hobbies insert (2.7ms) e7eab9e0-c18d-11e2-839a-d850cbafb49d {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:20Z"}
|
11501
|
+
hobbies insert (2.7ms) e7eb48a6-c18d-11e2-91f3-673da9a3d290 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"swimming", "created_at"=>"2013-05-20T20:43:20Z"}
|
11502
|
+
hobbies insert (3.1ms) e7ebd65e-c18d-11e2-9795-e611dffbc416 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"chess", "created_at"=>"2013-05-20T20:43:20Z"}
|
11503
|
+
hobbies insert (2.9ms) e7ff3866-c18d-11e2-9e9d-39ac72e3d1be {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:20Z"}
|
11504
|
+
hobbies insert (2.4ms) e7ffce5c-c18d-11e2-94fa-3b0fe816fa7a {"updated_at"=>"2013-05-20T20:43:20Z", "created_at"=>"2013-05-20T20:43:20Z"}
|
11505
|
+
hobbies insert (3.0ms) e8083ab0-c18d-11e2-9d67-2ea8f44dbbb3 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:20Z", "complexity"=>1.1}
|
11506
|
+
hobbies insert (3.1ms) e81c3c54-c18d-11e2-86fc-b27b1cf03857 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:20Z", "complexity"=>1.1}
|
11507
|
+
hobbies insert (3.0ms) e82578aa-c18d-11e2-9ced-2f9a8566dc30 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:20Z", "complexity"=>1.1}
|
11508
|
+
hobbies insert (3.0ms) e82ee9e4-c18d-11e2-89a5-2ae2d466542f {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:20Z", "complexity"=>1.1}
|
11509
|
+
hobbies insert (2.8ms) e83a9668-c18d-11e2-9244-0c634c2f2bb3 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:20Z"}
|
11510
|
+
hobbies insert (2.6ms) e83b2aec-c18d-11e2-946b-b64cad9f1d32 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:20Z"}
|
11511
|
+
hobbies insert (2.7ms) e83bb5c0-c18d-11e2-9393-4dbf76393a30 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"boating", "created_at"=>"2013-05-20T20:43:20Z"}
|
11512
|
+
hobbies insert (2.8ms) e83c4210-c18d-11e2-8fa2-9c7091420ff2 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:20Z"}
|
11513
|
+
hobbies insert (2.6ms) e83cd2a2-c18d-11e2-8358-3bf49269e285 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"swimming", "created_at"=>"2013-05-20T20:43:20Z"}
|
11514
|
+
hobbies insert (2.6ms) e83d5d1c-c18d-11e2-81c1-d3d5b869c5cf {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"chess", "created_at"=>"2013-05-20T20:43:20Z"}
|
11515
|
+
hobbies insert (3.1ms) e85154fc-c18d-11e2-8dd1-0bb702aed8f4 {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:20Z", "complexity"=>-1.2}
|
11516
|
+
hobbies insert (3.0ms) e868079c-c18d-11e2-9d7c-1db36bf14b4f {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"horseback riding", "created_at"=>"2013-05-20T20:43:20Z"}
|
11517
|
+
hobbies insert (3.0ms) e87fdf98-c18d-11e2-83d9-d46aec83a8fd {"updated_at"=>"2013-05-20T20:43:20Z", "name"=>"horseback riding", "created_at"=>"2013-05-20T20:43:20Z"}
|
11518
|
+
hobbies insert (3.0ms) e8892f8a-c18d-11e2-8005-c108330a66a7 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.2}
|
11519
|
+
hobbies insert (2.9ms) e8983782-c18d-11e2-8398-772885d0392f {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z"}
|
11520
|
+
hobbies insert (2.9ms) e8a21edc-c18d-11e2-934c-e811070f2bd4 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z"}
|
11521
|
+
hobbies insert (2.6ms) e8a2b7a2-c18d-11e2-9224-948588962c13 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Biking", "created_at"=>"2013-05-20T20:43:21Z"}
|
11522
|
+
hobbies insert (3.0ms) e8b14bfa-c18d-11e2-809c-cf879b4e06fc {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.1}
|
11523
|
+
hobbies insert (3.0ms) e8bd02b0-c18d-11e2-832b-0fa3921f35dd {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.1}
|
11524
|
+
hobbies insert (3.1ms) e8c5a884-c18d-11e2-8763-40a0ee736cde {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.1}
|
11525
|
+
hobbies insert (3.0ms) e8ce1eec-c18d-11e2-8b06-2e1e1e1d95e5 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.1}
|
11526
|
+
hobbies insert (3.0ms) e8dd3b3e-c18d-11e2-94ed-d4f61d7fa651 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"jogging", "created_at"=>"2013-05-20T20:43:21Z", "complexity"=>1.2}
|
11527
|
+
hobbies insert (2.8ms) e8e7476e-c18d-11e2-9f2f-bb0ac3994d60 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"Swimming", "created_at"=>"2013-05-20T20:43:21Z"}
|
11528
|
+
hobbies insert (3.0ms) e8f6d8be-c18d-11e2-8a82-09087585b02e {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:21Z"}
|
11529
|
+
hobbies insert (2.8ms) e9001a00-c18d-11e2-9f31-b3b6234af42b {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:21Z"}
|
11530
|
+
hobbies insert (2.7ms) e900ac36-c18d-11e2-9cce-f9e0393a74c0 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"boxing", "created_at"=>"2013-05-20T20:43:21Z"}
|
11531
|
+
hobbies insert (2.5ms) e90138f4-c18d-11e2-949f-42bad5868cfb {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:21Z"}
|
11532
|
+
hobbies insert (2.6ms) e901c0e4-c18d-11e2-97a4-463c8a671143 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"running", "created_at"=>"2013-05-20T20:43:21Z"}
|
11533
|
+
hobbies insert (2.9ms) e9158b2e-c18d-11e2-849a-335e7b356667 {"updated_at"=>"2013-05-20T20:43:21Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:21Z"}
|
11534
|
+
hobbies insert (2.8ms) e91fae24-c18d-11e2-9b6e-b362d518f742 {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:22Z"}
|
11535
|
+
hobbies insert (2.5ms) e9204014-c18d-11e2-9c91-bbd587347aba {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"swimming", "created_at"=>"2013-05-20T20:43:22Z"}
|
11536
|
+
hobbies insert (2.8ms) e93f3122-c18d-11e2-980b-9c24fa87fc86 {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:22Z"}
|
11537
|
+
hobbies insert (2.7ms) e946f286-c18d-11e2-8b78-afd6f4c8e5b6 {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:22Z"}
|
11538
|
+
hobbies insert (2.8ms) e954307c-c18d-11e2-8c16-f6d777f842a7 {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"hiking", "created_at"=>"2013-05-20T20:43:22Z"}
|
11539
|
+
hobbies insert (2.6ms) e954c62c-c18d-11e2-9e5b-89bb1c84fdfa {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"boxing", "created_at"=>"2013-05-20T20:43:22Z"}
|
11540
|
+
hobbies insert (2.7ms) e9555290-c18d-11e2-9191-c434d19f7ff5 {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"fishing", "created_at"=>"2013-05-20T20:43:22Z"}
|
11541
|
+
hobbies insert (2.6ms) e955df62-c18d-11e2-8399-2e26a1ca2c9c {"updated_at"=>"2013-05-20T20:43:22Z", "name"=>"running", "created_at"=>"2013-05-20T20:43:22Z"}
|
11542
|
+
people insert (3.4ms) e96c4f9a-c18d-11e2-8ec2-325e777425df {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:43:22Z"}
|
11543
|
+
people insert (2.8ms) e96d4d8c-c18d-11e2-82d2-51838fce6684 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:22Z"}
|
11544
|
+
people insert (2.9ms) e96e32ec-c18d-11e2-9ded-a9a681e7b815 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:43:22Z"}
|
11545
|
+
people insert (2.9ms) e96f1752-c18d-11e2-823e-61d518d5def9 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:43:22Z"}
|
11546
|
+
people insert (2.8ms) e96ffda2-c18d-11e2-91e2-3dbc258bb3fc {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:43:22Z"}
|
11547
|
+
people insert (2.8ms) e970df6a-c18d-11e2-91d1-31f7f360fd56 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:22Z"}
|
11548
|
+
people insert (3.0ms) e98bf84a-c18d-11e2-83c7-2ed6589a1fe4 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:43:22Z"}
|
11549
|
+
people insert (2.8ms) e98ce67e-c18d-11e2-8166-a8d03b792a18 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:22Z"}
|
11550
|
+
people insert (2.7ms) e98dc8e6-c18d-11e2-9575-d0737570bfa8 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:43:22Z"}
|
11551
|
+
people insert (2.9ms) e98ea4c8-c18d-11e2-95b5-96766ce4f82e {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:43:22Z"}
|
11552
|
+
people insert (2.7ms) e98f8aa0-c18d-11e2-8aac-640c2682d1aa {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:43:22Z"}
|
11553
|
+
people insert (2.7ms) e9906902-c18d-11e2-9215-d84516dfadad {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:22Z"}
|
11554
|
+
people insert (3.1ms) e9a8b5fc-c18d-11e2-87b3-530ae8bcfa26 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"John", "created_at"=>"2013-05-20T20:43:22Z"}
|
11555
|
+
people insert (2.7ms) e9a9a21e-c18d-11e2-9006-7d8b8824565b {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:22Z"}
|
11556
|
+
people insert (2.6ms) e9aa7f36-c18d-11e2-8035-626b326ef69d {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"J", "name"=>"James", "created_at"=>"2013-05-20T20:43:22Z"}
|
11557
|
+
people insert (2.6ms) e9ab5866-c18d-11e2-8a31-9f644942253c {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathrine", "created_at"=>"2013-05-20T20:43:22Z"}
|
11558
|
+
people insert (2.7ms) e9ac32b8-c18d-11e2-91a1-1d257c5cb425 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Kat", "name"=>"Kathy", "created_at"=>"2013-05-20T20:43:22Z"}
|
11559
|
+
people insert (2.7ms) e9ad0c1a-c18d-11e2-9447-491bbb702d38 {"updated_at"=>"2013-05-20T20:43:22Z", "nickname"=>"Steve", "name"=>"Steven", "created_at"=>"2013-05-20T20:43:22Z"}
|
11560
|
+
people insert (2.9ms) e9c77cee-c18d-11e2-9b56-038a856657dd {"updated_at"=>"2013-05-20T20:43:23Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:23Z"}
|
11561
|
+
people insert (3.1ms) e9d1fb9c-c18d-11e2-9893-dc81ffa57947 {"updated_at"=>"2013-05-20T20:43:23Z", "birthdate"=>"1985-10-19T00:00:00Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:23Z"}
|
11562
|
+
people insert (2.9ms) e9d1fb9c-c18d-11e2-9893-dc81ffa57947 {"updated_at"=>"2013-05-20T20:43:23Z", "birthdate"=>"1980-10-19T00:00:00Z", "nickname"=>"Jason", "name"=>"Jason", "created_at"=>"2013-05-20T20:43:23Z"}
|
11563
|
+
jobs insert (3.3ms) e9e28d5e-c18d-11e2-9809-272c1e2cff16 {"title"=>"Engineer", "updated_at"=>"2013-05-20T20:43:23Z", "created_at"=>"2013-05-20T20:43:23Z"}
|
11564
|
+
boats insert (2.7ms) e9eb209a-c18d-11e2-8340-236e2443eab0 {"updated_at"=>"2013-05-20T20:43:23Z", "created_at"=>"2013-05-20T20:43:23Z"}
|
11565
|
+
people insert (9.7ms) 39872e78-c18e-11e2-9d30-5983ce3e9ad5 {"updated_at"=>"2013-05-20T20:45:36Z", "created_at"=>"2013-05-20T20:45:36Z", "nickname"=>"jason", "name"=>"jason"}
|
11566
|
+
cars insert (3.3ms) 3989a4b4-c18e-11e2-8616-85ab687e5b9a {"updated_at"=>"2013-05-20T20:45:36Z", "created_at"=>"2013-05-20T20:45:36Z", "person_id"=>"39872e78-c18e-11e2-9d30-5983ce3e9ad5", "name"=>"Jeep"}
|
11567
|
+
cars remove (1.7ms) #<DatastaxRails::Identity::UUIDKeyFactory:0xf9b93d0>
|
11568
|
+
people remove (1.2ms) #<DatastaxRails::Identity::UUIDKeyFactory:0xf9b2620>
|
11569
|
+
people insert (3.2ms) 39af2f36-c18e-11e2-8036-382b1496d4cd {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11570
|
+
cars insert (3.2ms) 39afd738-c18e-11e2-92ae-f0d86fc2f276 {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "person_id"=>"39af2f36-c18e-11e2-8036-382b1496d4cd", "name"=>"Jeep"}
|
11571
|
+
people insert (3.3ms) 39c60a3a-c18e-11e2-9b65-3457fe58ff9f {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11572
|
+
cars insert (3.0ms) 39c6b354-c18e-11e2-9018-a1e464788b99 {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "person_id"=>"12345", "name"=>"Jeep"}
|
11573
|
+
people insert (68.8ms) 39ed6526-c18e-11e2-9305-d2af941e7b1f {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "nickname"=>"jason", "name"=>"jason"}
|
11574
|
+
cars insert (4.1ms) 39f83bae-c18e-11e2-88fc-5ea3eff60903 {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "person_id"=>"39ed6526-c18e-11e2-9305-d2af941e7b1f", "name"=>"Jeep"}
|
11575
|
+
people insert (3.5ms) 3a0e7748-c18e-11e2-9da4-bbc56d5e1a20 {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11576
|
+
jobs insert (3.4ms) 3a0fa12c-c18e-11e2-8c44-4c157f71f90e {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "title"=>"Developer"}
|
11577
|
+
people insert (3.4ms) 3a244366-c18e-11e2-9d02-e59ca99244ef {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "nickname"=>"John", "name"=>"John"}
|
11578
|
+
jobs insert (5.0ms) 3a24f554-c18e-11e2-98d1-e80012aa2200 {"updated_at"=>"2013-05-20T20:45:37Z", "created_at"=>"2013-05-20T20:45:37Z", "person_id"=>"3a244366-c18e-11e2-9d02-e59ca99244ef", "title"=>"Developer"}
|
11579
|
+
people insert (3.2ms) 3a3d90e6-c18e-11e2-8234-349e81f35a15 {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11580
|
+
people insert (3.0ms) 3a459b38-c18e-11e2-80c4-c3a67e7a03e5 {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11581
|
+
people insert (0.4ms) 3a50b482-c18e-11e2-8323-e93a4d476d99 {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11582
|
+
people insert (0.4ms) 3a53cca8-c18e-11e2-8e87-e6bb8a1e16b6 {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11583
|
+
people insert (1.2ms) 3a56c854-c18e-11e2-870b-c1fa99cd5d0a {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11584
|
+
people insert (1.1ms) 3a59cb58-c18e-11e2-89ee-e6d5380600f2 {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11585
|
+
people insert (3.1ms) 3a5cd46a-c18e-11e2-9753-9ee3d4edc76f {"updated_at"=>"2013-05-20T20:45:38Z", "created_at"=>"2013-05-20T20:45:38Z", "nickname"=>"Steven", "name"=>"Steven"}
|
11586
|
+
people remove (0.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0xfd511a0>
|
11587
|
+
hobbies insert (3.9ms) 449eeb52-c18e-11e2-8ad0-072d39e3f706 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"a"}
|
11588
|
+
hobbies insert (2.6ms) 449faf6a-c18e-11e2-987a-5f894fefbc4f {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"b"}
|
11589
|
+
hobbies insert (2.6ms) 44a03bec-c18e-11e2-82c7-00b92a00961a {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"c"}
|
11590
|
+
hobbies insert (2.6ms) 44a0c6ca-c18e-11e2-930e-a8249db02f77 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"d"}
|
11591
|
+
hobbies insert (2.6ms) 44a150cc-c18e-11e2-8423-35163d7ef284 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"e"}
|
11592
|
+
hobbies insert (2.6ms) 44a1db50-c18e-11e2-99c5-e6b2ffea92cd {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"f"}
|
11593
|
+
hobbies insert (2.6ms) 44a26692-c18e-11e2-8971-707b85ef11ef {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"g"}
|
11594
|
+
hobbies insert (3.0ms) 44a2f2ce-c18e-11e2-891a-2c807720c015 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"h"}
|
11595
|
+
hobbies insert (2.5ms) 44a38d06-c18e-11e2-82dd-2392dfd64004 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"i"}
|
11596
|
+
hobbies insert (2.5ms) 44a415b4-c18e-11e2-849b-d945e2072110 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"j"}
|
11597
|
+
hobbies insert (2.5ms) 44a49c96-c18e-11e2-8b65-7f07f8d98148 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"k"}
|
11598
|
+
hobbies insert (2.6ms) 44a524a4-c18e-11e2-900c-1322bdf95e11 {"updated_at"=>"2013-05-20T20:45:55Z", "created_at"=>"2013-05-20T20:45:55Z", "name"=>"l"}
|
11599
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11600
|
+
hobbies insert (3.4ms) 45058592-c18e-11e2-8f23-a10c49785ed8 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"a"}
|
11601
|
+
hobbies insert (2.7ms) 45063438-c18e-11e2-9bf3-8e4d0dca4e0f {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"b"}
|
11602
|
+
hobbies insert (2.5ms) 4506c204-c18e-11e2-8a9b-12845c7eaaaf {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"c"}
|
11603
|
+
hobbies insert (2.6ms) 45074ac6-c18e-11e2-9d4f-6992d44be5a4 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"d"}
|
11604
|
+
hobbies insert (2.7ms) 4507d590-c18e-11e2-9b9f-cd037731eea1 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"e"}
|
11605
|
+
hobbies insert (2.5ms) 4508644c-c18e-11e2-97dc-ac9d63d000de {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"f"}
|
11606
|
+
hobbies insert (2.6ms) 4508ecf0-c18e-11e2-8d0d-937c26085c9a {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"g"}
|
11607
|
+
hobbies insert (2.5ms) 45097986-c18e-11e2-9335-6d46f61cbe12 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"h"}
|
11608
|
+
hobbies insert (2.6ms) 450a0234-c18e-11e2-9e2d-49faa4be4e44 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"i"}
|
11609
|
+
hobbies insert (2.5ms) 450a8d30-c18e-11e2-8872-e81d7ddf02e9 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"j"}
|
11610
|
+
hobbies insert (2.6ms) 450b155c-c18e-11e2-9eb9-b5aec0b6f942 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"k"}
|
11611
|
+
hobbies insert (2.9ms) 450ba080-c18e-11e2-8e88-40c38baf73ee {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"l"}
|
11612
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
11613
|
+
boats insert (3.0ms) 4536b45a-c18e-11e2-8449-40f4c1d44a52 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"Spooner"}
|
11614
|
+
boats insert (2.9ms) 453f2b80-c18e-11e2-8af5-d08c27e06044 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"Water Lily"}
|
11615
|
+
boats insert (2.8ms) 454b61c0-c18e-11e2-8adc-095db40272b9 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "name"=>"Dumb: Name"}
|
11616
|
+
hobbies insert (3.3ms) 45606872-c18e-11e2-9290-84379e691c7d {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "complexity"=>1.0, "name"=>"biking"}
|
11617
|
+
hobbies insert (2.7ms) 45611826-c18e-11e2-99e0-41aaae4fa83d {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "complexity"=>4.0, "name"=>"skydiving"}
|
11618
|
+
hobbies remove (1.2ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x10816248>
|
11619
|
+
hobbies insert (3.0ms) 45796048-c18e-11e2-988e-f9d3d47c16e6 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "complexity"=>1.0, "name"=>"biking"}
|
11620
|
+
hobbies insert (3.0ms) 457a01a6-c18e-11e2-8973-983cca66d1c0 {"updated_at"=>"2013-05-20T20:45:56Z", "created_at"=>"2013-05-20T20:45:56Z", "complexity"=>4.0, "name"=>"skydiving"}
|
11621
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x105256b0>
|
11622
|
+
hobbies insert (3.1ms) 458d7be6-c18e-11e2-9011-55a2af0ea9e0 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "complexity"=>1.0, "name"=>"biking"}
|
11623
|
+
hobbies insert (2.8ms) 458e1cea-c18e-11e2-8a97-0a2114d70ca4 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "complexity"=>4.0, "name"=>"skydiving"}
|
11624
|
+
hobbies remove (1.0ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x102fed50>
|
11625
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x102cb6d0>
|
11626
|
+
hobbies insert (2.8ms) 45a24fda-c18e-11e2-896f-cec4182df9b7 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"swimming"}
|
11627
|
+
hobbies insert (2.8ms) 45aa99ba-c18e-11e2-9308-7bed3de5b0f2 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"a"}
|
11628
|
+
hobbies insert (2.5ms) 45ab2c2c-c18e-11e2-8473-bde3645df535 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"b"}
|
11629
|
+
hobbies insert (2.6ms) 45abb340-c18e-11e2-9954-c90b49e054a8 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"c"}
|
11630
|
+
hobbies insert (2.6ms) 45ac3e82-c18e-11e2-93f7-46c47a5f81ec {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"d"}
|
11631
|
+
hobbies insert (2.6ms) 45acc834-c18e-11e2-943d-1e20babb4b12 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"e"}
|
11632
|
+
hobbies insert (2.6ms) 45ad524a-c18e-11e2-9d7b-947e61919e66 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"f"}
|
11633
|
+
hobbies insert (2.6ms) 45addbc0-c18e-11e2-953b-f63c36e8fa3c {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"g"}
|
11634
|
+
hobbies insert (2.5ms) 45ae65d6-c18e-11e2-9234-b9a9042f2051 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"h"}
|
11635
|
+
hobbies insert (2.6ms) 45aeedd0-c18e-11e2-9bef-3a534f36bfc0 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"i"}
|
11636
|
+
hobbies insert (2.6ms) 45af78fe-c18e-11e2-980f-c5b9f97545b9 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"j"}
|
11637
|
+
hobbies insert (2.5ms) 45b00300-c18e-11e2-81ac-ee3bf87373e1 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"k"}
|
11638
|
+
hobbies insert (2.6ms) 45b08bf4-c18e-11e2-9aea-f474f8a8d164 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"l"}
|
11639
|
+
hobbies insert (3.0ms) 45ce95ea-c18e-11e2-868a-809bcc91abdf {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"a"}
|
11640
|
+
hobbies insert (2.5ms) 45cf3176-c18e-11e2-8d9d-0ed6d08854e8 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"b"}
|
11641
|
+
hobbies insert (2.5ms) 45cfb6e6-c18e-11e2-895c-ab3cdce22c66 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"c"}
|
11642
|
+
hobbies insert (2.6ms) 45d03e0e-c18e-11e2-977b-7afb74cba7f4 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"d"}
|
11643
|
+
hobbies insert (2.8ms) 45d0c842-c18e-11e2-8fd9-d101b6fa084a {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"e"}
|
11644
|
+
hobbies insert (2.5ms) 45d15942-c18e-11e2-837b-52f94f3b4a80 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"f"}
|
11645
|
+
hobbies insert (2.5ms) 45d1e088-c18e-11e2-8455-2f0efc1a2f2a {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"g"}
|
11646
|
+
hobbies insert (2.5ms) 45d26594-c18e-11e2-86e8-21aaaec44a2b {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"h"}
|
11647
|
+
hobbies insert (2.6ms) 45d2eb22-c18e-11e2-9f5b-7fad23c46ee6 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"i"}
|
11648
|
+
hobbies insert (2.5ms) 45d37448-c18e-11e2-88df-d6cc436e1451 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"j"}
|
11649
|
+
hobbies insert (2.5ms) 45d3fb7a-c18e-11e2-8fc3-6be0e3fa576f {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"k"}
|
11650
|
+
hobbies insert (2.6ms) 45d480d6-c18e-11e2-8b20-91a5544147c9 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"l"}
|
11651
|
+
hobbies insert (2.9ms) 45f4d9bc-c18e-11e2-8c70-deb9d4830320 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"fishing"}
|
11652
|
+
hobbies insert (2.5ms) 45f570fc-c18e-11e2-8e51-8283f97caad8 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"hiking"}
|
11653
|
+
hobbies insert (2.5ms) 45f5f84c-c18e-11e2-8488-612f7ce2457f {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"boating"}
|
11654
|
+
hobbies insert (2.5ms) 45f67fd8-c18e-11e2-8703-10bb13d6b463 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"jogging"}
|
11655
|
+
hobbies insert (2.6ms) 45f70778-c18e-11e2-8e1c-89d5b32e6ea3 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"swimming"}
|
11656
|
+
hobbies insert (2.5ms) 45f79166-c18e-11e2-9893-53d6cf72ee9d {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"chess"}
|
11657
|
+
hobbies insert (2.8ms) 460d7b16-c18e-11e2-8431-7177ef228f1b {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"fishing"}
|
11658
|
+
hobbies insert (2.6ms) 460e0d56-c18e-11e2-8633-26e1037cd273 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"hiking"}
|
11659
|
+
hobbies insert (2.7ms) 460e97b2-c18e-11e2-93ef-4b5ba31a9204 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"boating"}
|
11660
|
+
hobbies insert (2.6ms) 460f2484-c18e-11e2-8f6e-913d72b2c771 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"jogging"}
|
11661
|
+
hobbies insert (2.5ms) 460fae36-c18e-11e2-9309-f6550e19a44c {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"swimming"}
|
11662
|
+
hobbies insert (2.6ms) 461034be-c18e-11e2-9ee9-0b4c85b532d3 {"updated_at"=>"2013-05-20T20:45:57Z", "created_at"=>"2013-05-20T20:45:57Z", "name"=>"chess"}
|
11663
|
+
hobbies insert (2.9ms) 46255236-c18e-11e2-9fcd-8e7edea524b4 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"Swimming"}
|
11664
|
+
hobbies insert (2.5ms) 4625e854-c18e-11e2-9a26-196c75c468af {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z"}
|
11665
|
+
hobbies insert (2.9ms) 462e45bc-c18e-11e2-8cbe-4d03c86c699e {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11666
|
+
hobbies insert (3.1ms) 4644472c-c18e-11e2-8587-2f99091e68b4 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11667
|
+
hobbies insert (3.0ms) 464ca3d6-c18e-11e2-9d73-ee273d6d7e3e {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11668
|
+
hobbies insert (3.1ms) 4658b0b8-c18e-11e2-9f9a-548653cc7169 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11669
|
+
hobbies insert (2.9ms) 4661496c-c18e-11e2-9da3-06adf81af5d9 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"fishing"}
|
11670
|
+
hobbies insert (2.6ms) 4661df44-c18e-11e2-995b-e24dc963ff9d {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"hiking"}
|
11671
|
+
hobbies insert (2.6ms) 46626a0e-c18e-11e2-920f-d03dfd30d9e3 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"boating"}
|
11672
|
+
hobbies insert (2.7ms) 4662f35c-c18e-11e2-9642-08ac5b4d4a25 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"jogging"}
|
11673
|
+
hobbies insert (2.7ms) 466380d8-c18e-11e2-982c-b74a4e94a23d {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"swimming"}
|
11674
|
+
hobbies insert (2.6ms) 46640ecc-c18e-11e2-9ccc-44e3621af9b6 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"chess"}
|
11675
|
+
hobbies insert (3.1ms) 467761de-c18e-11e2-9ad7-3c9f7d133124 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>-1.2, "name"=>"jogging"}
|
11676
|
+
hobbies insert (2.8ms) 4682a6ca-c18e-11e2-9da5-c98262020145 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"horseback riding"}
|
11677
|
+
hobbies insert (2.9ms) 468cf7b0-c18e-11e2-85a7-8999e8514385 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"horseback riding"}
|
11678
|
+
hobbies insert (2.9ms) 46971f74-c18e-11e2-95dd-1e6da0cbddd4 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "complexity"=>1.2, "name"=>"jogging"}
|
11679
|
+
hobbies insert (2.8ms) 46a11092-c18e-11e2-8306-7f1a9ec5a35a {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"Swimming"}
|
11680
|
+
hobbies insert (2.9ms) 46affcc4-c18e-11e2-950f-022eeed035e1 {"updated_at"=>"2013-05-20T20:45:58Z", "created_at"=>"2013-05-20T20:45:58Z", "name"=>"Swimming"}
|
11681
|
+
hobbies insert (3.1ms) 46b09850-c18e-11e2-87de-f4dfda8dfa93 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"Biking"}
|
11682
|
+
hobbies insert (2.9ms) 46bf729e-c18e-11e2-8b7b-685a6e5919f7 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11683
|
+
hobbies insert (3.1ms) 46c96eb6-c18e-11e2-95c3-8bdd53315194 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11684
|
+
hobbies insert (3.0ms) 46d4b712-c18e-11e2-9e01-55bf9e5b4a19 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11685
|
+
hobbies insert (3.1ms) 46dd4b7a-c18e-11e2-9383-49c7dd27dd96 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "complexity"=>1.1, "name"=>"Swimming"}
|
11686
|
+
hobbies insert (3.0ms) 46e6275e-c18e-11e2-85eb-3532be2ae27b {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "complexity"=>1.2, "name"=>"jogging"}
|
11687
|
+
hobbies insert (2.8ms) 46f4bcec-c18e-11e2-8fef-92451796a106 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"Swimming"}
|
11688
|
+
hobbies insert (2.9ms) 46fe03b0-c18e-11e2-9a82-e74fe543e0fb {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"fishing"}
|
11689
|
+
hobbies insert (2.9ms) 47095bb6-c18e-11e2-82ed-0dbd49b0bd2f {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"hiking"}
|
11690
|
+
hobbies insert (2.6ms) 4709f7b0-c18e-11e2-9dee-d816fe92a30a {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"boxing"}
|
11691
|
+
hobbies insert (2.6ms) 470a834c-c18e-11e2-891f-f02f8fe65a58 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"fishing"}
|
11692
|
+
hobbies insert (2.7ms) 470b0d58-c18e-11e2-8a7b-2e2c952069d4 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"running"}
|
11693
|
+
hobbies insert (3.0ms) 471da5d0-c18e-11e2-82a7-f3b8c58c1715 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"fishing"}
|
11694
|
+
hobbies insert (2.8ms) 4727f95e-c18e-11e2-9e72-376a6295a516 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"hiking"}
|
11695
|
+
hobbies insert (2.5ms) 47288c02-c18e-11e2-8a39-dee3f6ba0325 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"swimming"}
|
11696
|
+
hobbies insert (2.8ms) 47479962-c18e-11e2-9405-7a1b0094b6f4 {"updated_at"=>"2013-05-20T20:45:59Z", "created_at"=>"2013-05-20T20:45:59Z", "name"=>"hiking"}
|
11697
|
+
hobbies insert (2.7ms) 474f0b02-c18e-11e2-852f-783e2a7e4ea9 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "name"=>"hiking"}
|
11698
|
+
hobbies insert (2.9ms) 475e1ee4-c18e-11e2-8e80-fe4ad572f1bf {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "name"=>"hiking"}
|
11699
|
+
hobbies insert (2.7ms) 475eb890-c18e-11e2-9a3e-32f2d85106d8 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "name"=>"boxing"}
|
11700
|
+
hobbies insert (2.5ms) 475f4878-c18e-11e2-81bf-3670cc3e79a0 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "name"=>"fishing"}
|
11701
|
+
hobbies insert (2.6ms) 475fcfa0-c18e-11e2-93b7-7ebbdef380c1 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "name"=>"running"}
|
11702
|
+
people insert (3.1ms) 4774bad2-c18e-11e2-91cf-6089721db6d2 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"John"}
|
11703
|
+
people insert (3.5ms) 4775ae92-c18e-11e2-9bf4-1e5cdab8b4bc {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"Jason"}
|
11704
|
+
people insert (2.7ms) 4776acf2-c18e-11e2-8383-61234ad7dd3f {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"James"}
|
11705
|
+
people insert (3.1ms) 47778af0-c18e-11e2-8538-f560a5feb9e8 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathrine"}
|
11706
|
+
people insert (2.9ms) 477879ba-c18e-11e2-920c-52acf15734f8 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathy"}
|
11707
|
+
people insert (3.4ms) 47795ede-c18e-11e2-843e-40b33c55ddda {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Steve", "name"=>"Steven"}
|
11708
|
+
people insert (3.0ms) 47960a66-c18e-11e2-9708-abc859779a20 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"John"}
|
11709
|
+
people insert (2.8ms) 4796f944-c18e-11e2-812b-3c2f87bfe8ba {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"Jason"}
|
11710
|
+
people insert (2.8ms) 4797dbf2-c18e-11e2-9e6b-f602b7dc0042 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"James"}
|
11711
|
+
people insert (2.8ms) 4798bd7e-c18e-11e2-9226-c747e9323fdd {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathrine"}
|
11712
|
+
people insert (2.7ms) 4799a04a-c18e-11e2-8526-8323158f674d {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathy"}
|
11713
|
+
people insert (3.0ms) 479a7e48-c18e-11e2-8032-22b9dc421c27 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Steve", "name"=>"Steven"}
|
11714
|
+
people insert (3.0ms) 47b738f8-c18e-11e2-9976-9d6daa388afe {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"John"}
|
11715
|
+
people insert (2.7ms) 47b8229a-c18e-11e2-94f3-25c99448a7ef {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"Jason"}
|
11716
|
+
people insert (2.7ms) 47b8fd28-c18e-11e2-8657-0e469ca48b0e {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"J", "name"=>"James"}
|
11717
|
+
people insert (2.6ms) 47b9d9aa-c18e-11e2-894e-235824381dcf {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathrine"}
|
11718
|
+
people insert (2.7ms) 47bab2ee-c18e-11e2-9605-96cef881008e {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Kat", "name"=>"Kathy"}
|
11719
|
+
people insert (2.7ms) 47bb8dea-c18e-11e2-8a09-0d4c5edee499 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Steve", "name"=>"Steven"}
|
11720
|
+
people insert (3.3ms) 47d52ec6-c18e-11e2-95c6-7ab43fb3aa98 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Jason", "name"=>"Jason"}
|
11721
|
+
people insert (3.1ms) 47e06ffc-c18e-11e2-8ed7-2dacf45685d7 {"updated_at"=>"2013-05-20T20:46:00Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Jason", "birthdate"=>"1985-10-19T00:00:00Z", "name"=>"Jason"}
|
11722
|
+
people insert (2.9ms) 47e06ffc-c18e-11e2-8ed7-2dacf45685d7 {"updated_at"=>"2013-05-20T20:46:01Z", "created_at"=>"2013-05-20T20:46:00Z", "nickname"=>"Jason", "birthdate"=>"1980-10-19T00:00:00Z", "name"=>"Jason"}
|
11723
|
+
jobs insert (3.2ms) 47f22f94-c18e-11e2-98d1-f264992781c4 {"updated_at"=>"2013-05-20T20:46:01Z", "created_at"=>"2013-05-20T20:46:01Z", "title"=>"Engineer"}
|
11724
|
+
boats insert (2.6ms) 47fb2824-c18e-11e2-87b2-658511b9fffc {"updated_at"=>"2013-05-20T20:46:01Z", "created_at"=>"2013-05-20T20:46:01Z"}
|
11725
|
+
people insert (9.7ms) e7c4ea52-c198-11e2-853d-5eb46fa786ac {"created_at"=>"2013-05-20T22:02:04Z", "name"=>"Steven", "nickname"=>"Steven", "birthdate"=>"2013-05-20T00:00:00Z", "updated_at"=>"2013-05-20T22:02:04Z"}
|
11726
|
+
people insert (4.5ms) e7c4ea52-c198-11e2-853d-5eb46fa786ac {"created_at"=>"2013-05-20T22:02:04Z", "name"=>"Steven", "nickname"=>"Steven", "birthdate"=>nil, "updated_at"=>"2013-05-20T22:02:04Z"}
|
11727
|
+
people insert (10.1ms) f6950a1c-c198-11e2-9170-7bb066ca1666 {"nickname"=>"Steven", "created_at"=>"2013-05-20T22:02:29Z", "birthdate"=>"2013-05-20T00:00:00Z", "updated_at"=>"2013-05-20T22:02:29Z", "name"=>"Steven"}
|
11728
|
+
people insert (4.9ms) f6950a1c-c198-11e2-9170-7bb066ca1666 {"nickname"=>"Steven", "created_at"=>"2013-05-20T22:02:29Z", "birthdate"=>nil, "updated_at"=>"2013-05-20T22:02:29Z", "name"=>"Steven"}
|
data/spec/support/models.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datastax_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
-
|
11
|
-
version: 1.0.
|
9
|
+
- 19
|
10
|
+
- 0
|
11
|
+
version: 1.0.19.0
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Jason M. Kusar
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2013-05-
|
19
|
+
date: 2013-05-20 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: rails
|