lab_tech 0.1.0 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,84 @@
1
+ module LabTech
2
+ class Summary
3
+
4
+ class SpeedupLine
5
+ VAL = "█"
6
+ DOT = "·"
7
+
8
+ attr_reader :n, :speedup_factors
9
+
10
+ def initialize(n, speedup_factors)
11
+ @n = n
12
+ @speedup_factors = speedup_factors
13
+ end
14
+
15
+ def to_s
16
+ highlight = ( n == 50 ) # Only 'highlight' (add dots to) the median line
17
+ label = "%3d%%" % n
18
+
19
+ speedup_factor = LabTech::Percentile.call(n, @speedup_factors)
20
+ rel_speedup = "%+.1fx" % speedup_factor
21
+ bar = normalized_bar( speedup_factor, speedup_magnitude, highlight: highlight)
22
+
23
+ speedup_cue = pad_left( rel_speedup, speedup_width )
24
+ speedup_cue += " faster" if speedup_factor > 0
25
+
26
+ "#{label} #{bar} #{speedup_cue}"
27
+ end
28
+
29
+ private
30
+
31
+ def highlight_bar(bar)
32
+ left, right = bar.split(VAL)
33
+
34
+ left = left .gsub(" ", " #{DOT}")
35
+ right = right.reverse.gsub(" ", " #{DOT}").reverse
36
+
37
+ left + VAL + right
38
+ end
39
+
40
+ def normalized_bar(x, magnitude, bar_scale: 25, highlight: false)
41
+ neg, pos = " " * bar_scale, " " * bar_scale
42
+ normalized = ( bar_scale * ( x.abs / magnitude ) ).floor
43
+
44
+ # Select an index that's as close to `normalized` as possible without generating IndexErrors
45
+ # (TODO: actually understand the math involved so I don't have to chop the ends off like an infidel)
46
+ index = normalized.clamp( 0, bar_scale - 1 )
47
+
48
+ case
49
+ when x == 0 ; mid = VAL
50
+ when x < 0 ; mid = DOT ; neg[ index ] = VAL ; neg = neg.reverse
51
+ when x > 0 ; mid = DOT ; pos[ index ] = VAL
52
+ end
53
+
54
+ bar = "[%s%s%s]" % [ neg, mid, pos ]
55
+ bar = highlight_bar(bar) if highlight
56
+ bar
57
+ end
58
+
59
+ def pad_left(s, width)
60
+ n = [ ( width - s.length ), 0 ].max
61
+ [ " " * n , s ].join
62
+ end
63
+
64
+ def speedup_magnitude
65
+ @_speedup_magnitude ||=
66
+ begin
67
+ mag = @speedup_factors.minmax.map(&:to_i).map(&:abs).max.ceil
68
+ mag = 25 if mag.zero?
69
+ mag
70
+ end
71
+ end
72
+
73
+ def speedup_width
74
+ @_speedup_width ||= [
75
+ 1, # sign
76
+ 4, # digits
77
+ 1, # decimal point
78
+ 1, # digit after decimal point
79
+ ].sum
80
+ end
81
+ end
82
+
83
+ end
84
+ end
@@ -0,0 +1,6 @@
1
+ class AddObservationDiff < ActiveRecord::Migration[5.1]
2
+ def change
3
+ # Give us a place to put diffs generated by, e.g., check_please
4
+ add_column "lab_tech_observations", "diff", :text
5
+ end
6
+ end
data/lib/lab_tech.rb CHANGED
@@ -33,8 +33,8 @@ module LabTech
33
33
 
34
34
  yield experiment
35
35
 
36
- test = opts[:run] if opts # TODO: figure out what this line was supposed to be for ¯\_(ツ)_/¯
37
- experiment.run(test)
36
+ candidate_name = opts[:run]
37
+ experiment.run(candidate_name)
38
38
  end
39
39
 
40
40
  ########################################################################
@@ -1,3 +1,3 @@
1
1
  module LabTech
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.5' # about to release? rerun `bundle lock` to update Gemfile.lock
3
3
  end
@@ -34,7 +34,7 @@ Rails.application.configure do
34
34
  config.active_record.migration_error = :page_load
35
35
 
36
36
  # Highlight code that triggered database queries in logs.
37
- config.active_record.verbose_query_logs = true
37
+ # config.active_record.verbose_query_logs = true
38
38
 
39
39
 
40
40
  # Raises error for missing translations
File without changes
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 2019_08_15_192130) do
13
+ ActiveRecord::Schema.define(version: 20210205225332) do
14
14
 
15
15
  create_table "lab_tech_experiments", force: :cascade do |t|
16
16
  t.string "name"
@@ -31,6 +31,7 @@ ActiveRecord::Schema.define(version: 2019_08_15_192130) do
31
31
  t.text "exception_message"
32
32
  t.text "exception_backtrace"
33
33
  t.datetime "created_at"
34
+ t.text "diff"
34
35
  t.index ["result_id"], name: "index_lab_tech_observations_by_result_id"
35
36
  end
36
37
 
Binary file
@@ -0,0 +1,1026 @@
1
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
2
+  (0.1ms) SELECT sqlite_version(*)
3
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
4
+  (0.9ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
5
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
6
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
7
+  (0.9ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
8
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
9
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
10
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
11
+  (0.1ms)  SELECT sql
12
+ FROM sqlite_master
13
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
14
+ UNION ALL
15
+ SELECT sql
16
+ FROM sqlite_temp_master
17
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
18
+ 
19
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
20
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
21
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
22
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
23
+  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
24
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
25
+  (0.0ms) begin transaction
26
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-03-11 23:25:19.216167"], ["updated_at", "2020-03-11 23:25:19.216167"]]
27
+  (0.6ms) commit transaction
28
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
29
+  (0.0ms) begin transaction
30
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2020-03-11 23:25:19.218834"], ["key", "environment"]]
31
+  (0.5ms) commit transaction
32
+  (1.0ms) SELECT sqlite_version(*)
33
+  (0.0ms) SELECT sqlite_version(*)
34
+  (0.0ms) SELECT sqlite_version(*)
35
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
36
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
37
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
38
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
39
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
40
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
41
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
42
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
43
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
44
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
45
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
46
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
48
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
49
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
50
+ TRANSACTION (0.0ms) begin transaction
51
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 22:46:46.833401"], ["updated_at", "2021-01-26 22:46:46.833401"]]
52
+ TRANSACTION (0.6ms) commit transaction
53
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
54
+ TRANSACTION (0.0ms) begin transaction
55
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 22:46:46.835880"], ["key", "environment"]]
56
+ TRANSACTION (0.6ms) commit transaction
57
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
58
+ TRANSACTION (0.0ms) begin transaction
59
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 22:46:46.844717"], ["updated_at", "2021-01-26 22:46:46.844717"]]
60
+ TRANSACTION (0.5ms) commit transaction
61
+  (1.0ms) SELECT sqlite_version(*)
62
+  (0.0ms) SELECT sqlite_version(*)
63
+  (0.1ms) SELECT sqlite_version(*)
64
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
65
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
66
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
67
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
68
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
69
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
70
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
71
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
72
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
73
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
74
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
75
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
76
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
77
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
78
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
79
+ TRANSACTION (0.0ms) begin transaction
80
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 22:50:32.052698"], ["updated_at", "2021-01-26 22:50:32.052698"]]
81
+ TRANSACTION (0.4ms) commit transaction
82
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
83
+ TRANSACTION (0.0ms) begin transaction
84
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 22:50:32.054733"], ["key", "environment"]]
85
+ TRANSACTION (0.5ms) commit transaction
86
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
87
+ TRANSACTION (0.0ms) begin transaction
88
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 22:50:32.058465"], ["updated_at", "2021-01-26 22:50:32.058465"]]
89
+ TRANSACTION (0.5ms) commit transaction
90
+  (0.9ms) SELECT sqlite_version(*)
91
+  (0.0ms) SELECT sqlite_version(*)
92
+  (0.0ms) SELECT sqlite_version(*)
93
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
94
+  (1.2ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
95
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
96
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
97
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
98
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
99
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
100
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
101
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
102
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
103
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
104
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
105
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
106
+  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
107
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
108
+ TRANSACTION (0.0ms) begin transaction
109
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 22:50:57.476262"], ["updated_at", "2021-01-26 22:50:57.476262"]]
110
+ TRANSACTION (0.7ms) commit transaction
111
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
112
+ TRANSACTION (0.0ms) begin transaction
113
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 22:50:57.479683"], ["key", "environment"]]
114
+ TRANSACTION (0.5ms) commit transaction
115
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
116
+ TRANSACTION (0.0ms) begin transaction
117
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 22:50:57.483764"], ["updated_at", "2021-01-26 22:50:57.483764"]]
118
+ TRANSACTION (0.5ms) commit transaction
119
+  (0.9ms) SELECT sqlite_version(*)
120
+  (0.0ms) SELECT sqlite_version(*)
121
+  (0.0ms) SELECT sqlite_version(*)
122
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
123
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
124
+  (1.0ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
125
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
126
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
127
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
128
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
129
+  (0.9ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
130
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
131
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
132
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
133
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
135
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
136
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
137
+ TRANSACTION (0.0ms) begin transaction
138
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 22:59:06.252842"], ["updated_at", "2021-01-26 22:59:06.252842"]]
139
+ TRANSACTION (0.7ms) commit transaction
140
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
141
+ TRANSACTION (0.0ms) begin transaction
142
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 22:59:06.255565"], ["key", "environment"]]
143
+ TRANSACTION (0.6ms) commit transaction
144
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
145
+ TRANSACTION (0.0ms) begin transaction
146
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 22:59:06.259965"], ["updated_at", "2021-01-26 22:59:06.259965"]]
147
+ TRANSACTION (0.6ms) commit transaction
148
+  (1.1ms) SELECT sqlite_version(*)
149
+  (0.0ms) SELECT sqlite_version(*)
150
+  (0.0ms) SELECT sqlite_version(*)
151
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
152
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
153
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
154
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
155
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
156
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
157
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
158
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
159
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
160
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
161
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
162
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
163
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
164
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
165
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
166
+ TRANSACTION (0.0ms) begin transaction
167
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:00:54.422638"], ["updated_at", "2021-01-26 23:00:54.422638"]]
168
+ TRANSACTION (0.4ms) commit transaction
169
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
170
+ TRANSACTION (0.0ms) begin transaction
171
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:00:54.424840"], ["key", "environment"]]
172
+ TRANSACTION (0.3ms) commit transaction
173
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
174
+ TRANSACTION (0.0ms) begin transaction
175
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:00:54.428287"], ["updated_at", "2021-01-26 23:00:54.428287"]]
176
+ TRANSACTION (0.5ms) commit transaction
177
+  (1.0ms) SELECT sqlite_version(*)
178
+  (0.0ms) SELECT sqlite_version(*)
179
+  (0.0ms) SELECT sqlite_version(*)
180
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
181
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
182
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
183
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
184
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
185
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
186
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
187
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
188
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
189
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
190
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
191
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
192
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
193
+  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
194
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
195
+ TRANSACTION (0.0ms) begin transaction
196
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:02:49.878659"], ["updated_at", "2021-01-26 23:02:49.878659"]]
197
+ TRANSACTION (0.5ms) commit transaction
198
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
199
+ TRANSACTION (0.0ms) begin transaction
200
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:02:49.881130"], ["key", "environment"]]
201
+ TRANSACTION (0.4ms) commit transaction
202
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
203
+ TRANSACTION (0.0ms) begin transaction
204
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:02:49.884626"], ["updated_at", "2021-01-26 23:02:49.884626"]]
205
+ TRANSACTION (0.5ms) commit transaction
206
+  (1.4ms) SELECT sqlite_version(*)
207
+  (0.0ms) SELECT sqlite_version(*)
208
+  (0.0ms) SELECT sqlite_version(*)
209
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
210
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
211
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
212
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
213
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
214
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
215
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
216
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
217
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
218
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
219
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
220
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
221
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
222
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
223
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
224
+ TRANSACTION (0.0ms) begin transaction
225
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:03:28.579311"], ["updated_at", "2021-01-26 23:03:28.579311"]]
226
+ TRANSACTION (0.5ms) commit transaction
227
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
228
+ TRANSACTION (0.0ms) begin transaction
229
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:03:28.581663"], ["key", "environment"]]
230
+ TRANSACTION (0.5ms) commit transaction
231
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
232
+ TRANSACTION (0.0ms) begin transaction
233
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:03:28.585574"], ["updated_at", "2021-01-26 23:03:28.585574"]]
234
+ TRANSACTION (0.6ms) commit transaction
235
+  (0.9ms) SELECT sqlite_version(*)
236
+  (0.0ms) SELECT sqlite_version(*)
237
+  (0.0ms) SELECT sqlite_version(*)
238
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
239
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
240
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
241
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
242
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
243
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
244
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
245
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
246
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
247
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
248
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
249
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
250
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
251
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
252
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
253
+ TRANSACTION (0.0ms) begin transaction
254
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:06:01.337137"], ["updated_at", "2021-01-26 23:06:01.337137"]]
255
+ TRANSACTION (0.5ms) commit transaction
256
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
257
+ TRANSACTION (0.0ms) begin transaction
258
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:06:01.339529"], ["key", "environment"]]
259
+ TRANSACTION (0.5ms) commit transaction
260
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
261
+ TRANSACTION (0.0ms) begin transaction
262
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:06:01.344151"], ["updated_at", "2021-01-26 23:06:01.344151"]]
263
+ TRANSACTION (0.5ms) commit transaction
264
+  (1.0ms) SELECT sqlite_version(*)
265
+  (0.0ms) SELECT sqlite_version(*)
266
+  (0.0ms) SELECT sqlite_version(*)
267
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
268
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
269
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
270
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
271
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
272
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
273
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
274
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
275
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
276
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
277
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
278
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
279
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
280
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
281
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
282
+ TRANSACTION (0.0ms) begin transaction
283
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:07:30.435133"], ["updated_at", "2021-01-26 23:07:30.435133"]]
284
+ TRANSACTION (0.6ms) commit transaction
285
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
286
+ TRANSACTION (0.0ms) begin transaction
287
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:07:30.437651"], ["key", "environment"]]
288
+ TRANSACTION (0.6ms) commit transaction
289
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
290
+ TRANSACTION (0.0ms) begin transaction
291
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:07:30.442029"], ["updated_at", "2021-01-26 23:07:30.442029"]]
292
+ TRANSACTION (0.6ms) commit transaction
293
+  (1.5ms) SELECT sqlite_version(*)
294
+  (0.0ms) SELECT sqlite_version(*)
295
+  (0.0ms) SELECT sqlite_version(*)
296
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
297
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
298
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
299
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
300
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
301
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
302
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
303
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
304
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
305
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
306
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
307
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
308
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
309
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
310
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
311
+ TRANSACTION (0.0ms) begin transaction
312
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:13:40.987958"], ["updated_at", "2021-01-26 23:13:40.987958"]]
313
+ TRANSACTION (0.6ms) commit transaction
314
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
315
+ TRANSACTION (0.0ms) begin transaction
316
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:13:40.990379"], ["key", "environment"]]
317
+ TRANSACTION (0.4ms) commit transaction
318
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
319
+ TRANSACTION (0.0ms) begin transaction
320
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:13:40.994098"], ["updated_at", "2021-01-26 23:13:40.994098"]]
321
+ TRANSACTION (0.5ms) commit transaction
322
+  (1.2ms) SELECT sqlite_version(*)
323
+  (0.0ms) SELECT sqlite_version(*)
324
+  (0.0ms) SELECT sqlite_version(*)
325
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
326
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
327
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
328
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
329
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
330
+  (0.5ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
331
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
332
+  (0.5ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
333
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
334
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
335
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
336
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
337
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
338
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
339
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
340
+ TRANSACTION (0.0ms) begin transaction
341
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:46:21.117585"], ["updated_at", "2021-01-26 23:46:21.117585"]]
342
+ TRANSACTION (0.5ms) commit transaction
343
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
344
+ TRANSACTION (0.0ms) begin transaction
345
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:46:21.119876"], ["key", "environment"]]
346
+ TRANSACTION (0.6ms) commit transaction
347
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
348
+ TRANSACTION (0.0ms) begin transaction
349
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:46:21.123649"], ["updated_at", "2021-01-26 23:46:21.123649"]]
350
+ TRANSACTION (0.5ms) commit transaction
351
+  (0.7ms) SELECT sqlite_version(*)
352
+  (0.0ms) SELECT sqlite_version(*)
353
+  (0.0ms) SELECT sqlite_version(*)
354
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
355
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
356
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
357
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
358
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
359
+  (0.9ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
360
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
361
+  (0.9ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
362
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
363
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
364
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
365
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
366
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
367
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
368
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
369
+ TRANSACTION (0.0ms) begin transaction
370
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:46:29.814590"], ["updated_at", "2021-01-26 23:46:29.814590"]]
371
+ TRANSACTION (0.4ms) commit transaction
372
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
373
+ TRANSACTION (0.0ms) begin transaction
374
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:46:29.816593"], ["key", "environment"]]
375
+ TRANSACTION (0.4ms) commit transaction
376
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
377
+ TRANSACTION (0.0ms) begin transaction
378
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:46:29.819793"], ["updated_at", "2021-01-26 23:46:29.819793"]]
379
+ TRANSACTION (0.3ms) commit transaction
380
+  (0.7ms) SELECT sqlite_version(*)
381
+  (0.0ms) SELECT sqlite_version(*)
382
+  (0.0ms) SELECT sqlite_version(*)
383
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
384
+  (1.3ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
385
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
386
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
387
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
388
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
389
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
390
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
391
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
392
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
393
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
394
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
395
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
396
+  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
397
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
398
+ TRANSACTION (0.0ms) begin transaction
399
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:47:18.843686"], ["updated_at", "2021-01-26 23:47:18.843686"]]
400
+ TRANSACTION (0.7ms) commit transaction
401
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
402
+ TRANSACTION (0.0ms) begin transaction
403
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:47:18.845916"], ["key", "environment"]]
404
+ TRANSACTION (0.5ms) commit transaction
405
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
406
+ TRANSACTION (0.0ms) begin transaction
407
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:47:18.849309"], ["updated_at", "2021-01-26 23:47:18.849309"]]
408
+ TRANSACTION (0.6ms) commit transaction
409
+  (0.8ms) SELECT sqlite_version(*)
410
+  (0.0ms) SELECT sqlite_version(*)
411
+  (0.0ms) SELECT sqlite_version(*)
412
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
413
+  (1.7ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
414
+  (0.9ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
415
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
416
+  (0.9ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
417
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
418
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
419
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
420
+  (0.9ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
421
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
422
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
423
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
424
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
425
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
426
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
427
+ TRANSACTION (0.0ms) begin transaction
428
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:47:36.404616"], ["updated_at", "2021-01-26 23:47:36.404616"]]
429
+ TRANSACTION (0.7ms) commit transaction
430
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
431
+ TRANSACTION (0.0ms) begin transaction
432
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:47:36.407184"], ["key", "environment"]]
433
+ TRANSACTION (0.8ms) commit transaction
434
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
435
+ TRANSACTION (0.0ms) begin transaction
436
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:47:36.411640"], ["updated_at", "2021-01-26 23:47:36.411640"]]
437
+ TRANSACTION (0.6ms) commit transaction
438
+  (0.7ms) SELECT sqlite_version(*)
439
+  (0.0ms) SELECT sqlite_version(*)
440
+  (0.0ms) SELECT sqlite_version(*)
441
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
442
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
443
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
444
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
445
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
446
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
447
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
448
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
449
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
450
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
451
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
452
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
453
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
454
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
455
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
456
+ TRANSACTION (0.0ms) begin transaction
457
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-26 23:47:46.008119"], ["updated_at", "2021-01-26 23:47:46.008119"]]
458
+ TRANSACTION (0.4ms) commit transaction
459
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
460
+ TRANSACTION (0.0ms) begin transaction
461
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-26 23:47:46.009989"], ["key", "environment"]]
462
+ TRANSACTION (0.3ms) commit transaction
463
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
464
+ TRANSACTION (0.0ms) begin transaction
465
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-26 23:47:46.013064"], ["updated_at", "2021-01-26 23:47:46.013064"]]
466
+ TRANSACTION (0.3ms) commit transaction
467
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
468
+  (0.1ms) SELECT sqlite_version(*)
469
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
470
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
471
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
472
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
473
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
474
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
475
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
476
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
477
+  (0.1ms)  SELECT sql
478
+ FROM sqlite_master
479
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
480
+ UNION ALL
481
+ SELECT sql
482
+ FROM sqlite_temp_master
483
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
484
+ 
485
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
486
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
487
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
488
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
489
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
491
+  (0.0ms) begin transaction
492
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:02:24.633061"], ["updated_at", "2021-01-27 00:02:24.633061"]]
493
+  (0.6ms) commit transaction
494
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
495
+  (0.0ms) begin transaction
496
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:02:24.636043"], ["key", "environment"]]
497
+  (0.7ms) commit transaction
498
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
499
+  (0.0ms) SELECT sqlite_version(*)
500
+  (1.2ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
501
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
502
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
503
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
504
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
505
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
506
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
507
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
508
+  (0.1ms)  SELECT sql
509
+ FROM sqlite_master
510
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
511
+ UNION ALL
512
+ SELECT sql
513
+ FROM sqlite_temp_master
514
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
515
+ 
516
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
517
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
518
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
519
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
520
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
521
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
522
+  (0.0ms) begin transaction
523
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:03:27.318528"], ["updated_at", "2021-01-27 00:03:27.318528"]]
524
+  (0.5ms) commit transaction
525
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
526
+  (0.0ms) begin transaction
527
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:03:27.320826"], ["key", "environment"]]
528
+  (0.5ms) commit transaction
529
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
530
+  (0.1ms) SELECT sqlite_version(*)
531
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
532
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
533
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
534
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
535
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
536
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
537
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
538
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
539
+  (0.1ms)  SELECT sql
540
+ FROM sqlite_master
541
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
542
+ UNION ALL
543
+ SELECT sql
544
+ FROM sqlite_temp_master
545
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
546
+ 
547
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
548
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
549
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
550
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
551
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
552
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
553
+  (0.0ms) begin transaction
554
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:05:03.553153"], ["updated_at", "2021-01-27 00:05:03.553153"]]
555
+  (10.3ms) commit transaction
556
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
557
+  (0.0ms) begin transaction
558
+ SQL (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:05:03.566335"], ["key", "environment"]]
559
+  (0.7ms) commit transaction
560
+ DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer`
561
+ set to false is deprecated. SQLite databases have used 't' and 'f' to serialize
562
+ boolean values and must have old data converted to 1 and 0 (its native boolean
563
+ serialization) before setting this flag to true. Conversion can be accomplished
564
+ by setting up a rake task which runs
565
+
566
+ ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1)
567
+ ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0)
568
+
569
+ for all models and all boolean columns, after which the flag must be set to
570
+ true by adding the following to your application.rb file:
571
+
572
+ Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
573
+ (called from load at /Users/sam/work/lab_tech/vendor/cache/ruby/2.6.0/bin/rake:23)
574
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
575
+  (0.1ms) SELECT sqlite_version(*)
576
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
577
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
578
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
579
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
580
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
581
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
582
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
583
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
584
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
585
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
586
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
587
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
588
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
589
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
590
+  (0.0ms) begin transaction
591
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:06:14.474931"], ["updated_at", "2021-01-27 00:06:14.474931"]]
592
+  (0.6ms) commit transaction
593
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
594
+  (0.0ms) begin transaction
595
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:06:14.478066"], ["key", "environment"]]
596
+  (0.5ms) commit transaction
597
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
598
+  (0.1ms) SELECT sqlite_version(*)
599
+  (1.4ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
600
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
601
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
602
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
603
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
604
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
605
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
606
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
607
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
608
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
609
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
610
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
611
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
612
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
613
+  (0.0ms) begin transaction
614
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:07:11.884798"], ["updated_at", "2021-01-27 00:07:11.884798"]]
615
+  (0.6ms) commit transaction
616
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
617
+  (0.0ms) begin transaction
618
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:07:11.887518"], ["key", "environment"]]
619
+  (0.5ms) commit transaction
620
+  (0.8ms) SELECT sqlite_version(*)
621
+  (0.0ms) SELECT sqlite_version(*)
622
+  (0.0ms) SELECT sqlite_version(*)
623
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
624
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
625
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
626
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
627
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
628
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
629
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
630
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
631
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
632
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
633
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
634
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
635
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
636
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
637
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
638
+  (0.0ms) begin transaction
639
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:10:49.733765"], ["updated_at", "2021-01-27 00:10:49.733765"]]
640
+  (0.6ms) commit transaction
641
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
642
+  (0.0ms) begin transaction
643
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:10:49.735608"], ["key", "environment"]]
644
+  (0.4ms) commit transaction
645
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
646
+  (0.0ms) begin transaction
647
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 00:10:49.737085"], ["updated_at", "2021-01-27 00:10:49.737085"]]
648
+  (0.4ms) commit transaction
649
+  (0.9ms) SELECT sqlite_version(*)
650
+  (0.0ms) SELECT sqlite_version(*)
651
+  (0.0ms) SELECT sqlite_version(*)
652
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
653
+  (8.9ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
654
+  (1.0ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
655
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
656
+  (1.0ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
657
+  (1.0ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
658
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
659
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
660
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
661
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
662
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
663
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
664
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
665
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
666
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
667
+  (0.0ms) begin transaction
668
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:12:38.449804"], ["updated_at", "2021-01-27 00:12:38.449804"]]
669
+  (0.5ms) commit transaction
670
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
671
+  (0.0ms) begin transaction
672
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:12:38.451853"], ["key", "environment"]]
673
+  (0.5ms) commit transaction
674
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
675
+  (0.0ms) begin transaction
676
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 00:12:38.453704"], ["updated_at", "2021-01-27 00:12:38.453704"]]
677
+  (0.5ms) commit transaction
678
+  (0.8ms) SELECT sqlite_version(*)
679
+  (0.0ms) SELECT sqlite_version(*)
680
+  (0.0ms) SELECT sqlite_version(*)
681
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
682
+  (1.0ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
683
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
684
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
685
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
686
+  (0.9ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
687
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
688
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
689
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
690
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
691
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
692
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
693
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
694
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
695
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
696
+ TRANSACTION (0.0ms) begin transaction
697
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 00:14:19.025910"], ["updated_at", "2021-01-27 00:14:19.025910"]]
698
+ TRANSACTION (0.5ms) commit transaction
699
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
700
+ TRANSACTION (0.0ms) begin transaction
701
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 00:14:19.028078"], ["key", "environment"]]
702
+ TRANSACTION (0.4ms) commit transaction
703
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
704
+ TRANSACTION (0.0ms) begin transaction
705
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 00:14:19.029846"], ["updated_at", "2021-01-27 00:14:19.029846"]]
706
+ TRANSACTION (0.5ms) commit transaction
707
+  (1.1ms) SELECT sqlite_version(*)
708
+  (0.0ms) SELECT sqlite_version(*)
709
+  (0.0ms) SELECT sqlite_version(*)
710
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
711
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
712
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
713
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
714
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
715
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
716
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
717
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
718
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
719
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
720
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
721
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
722
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
723
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
724
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
725
+  (0.0ms) begin transaction
726
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 17:33:59.559749"], ["updated_at", "2021-01-27 17:33:59.559749"]]
727
+  (0.5ms) commit transaction
728
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
729
+  (0.0ms) begin transaction
730
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 17:33:59.561624"], ["key", "environment"]]
731
+  (0.5ms) commit transaction
732
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
733
+  (0.0ms) begin transaction
734
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 17:33:59.563233"], ["updated_at", "2021-01-27 17:33:59.563233"]]
735
+  (0.5ms) commit transaction
736
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
737
+  (0.1ms) SELECT sqlite_version(*)
738
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
739
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
740
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
741
+  (0.8ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
742
+  (0.7ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
743
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
744
+  (0.8ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
745
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
746
+  (0.1ms)  SELECT sql
747
+ FROM sqlite_master
748
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
749
+ UNION ALL
750
+ SELECT sql
751
+ FROM sqlite_temp_master
752
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
753
+ 
754
+  (0.9ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
755
+  (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
756
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
757
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
758
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
759
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
760
+  (0.0ms) begin transaction
761
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 17:37:39.788013"], ["updated_at", "2021-01-27 17:37:39.788013"]]
762
+  (0.6ms) commit transaction
763
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
764
+  (0.0ms) begin transaction
765
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 17:37:39.790846"], ["key", "environment"]]
766
+  (0.6ms) commit transaction
767
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
768
+  (0.1ms) SELECT sqlite_version(*)
769
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
770
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
771
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
772
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
773
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
774
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
775
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
776
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
777
+  (0.1ms)  SELECT sql
778
+ FROM sqlite_master
779
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
780
+ UNION ALL
781
+ SELECT sql
782
+ FROM sqlite_temp_master
783
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
784
+ 
785
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
786
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
787
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
788
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
789
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
790
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
791
+  (0.0ms) begin transaction
792
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 17:44:00.845345"], ["updated_at", "2021-01-27 17:44:00.845345"]]
793
+  (0.7ms) commit transaction
794
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
795
+  (0.0ms) begin transaction
796
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 17:44:00.848634"], ["key", "environment"]]
797
+  (0.7ms) commit transaction
798
+  (0.8ms) SELECT sqlite_version(*)
799
+  (0.1ms) SELECT sqlite_version(*)
800
+  (0.0ms) SELECT sqlite_version(*)
801
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
802
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
803
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
804
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
805
+  (0.5ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
806
+  (0.5ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
807
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
808
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
809
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
810
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
811
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
812
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
813
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
814
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
815
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
816
+  (0.0ms) begin transaction
817
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 17:44:26.835966"], ["updated_at", "2021-01-27 17:44:26.835966"]]
818
+  (0.4ms) commit transaction
819
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
820
+  (0.0ms) begin transaction
821
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 17:44:26.837584"], ["key", "environment"]]
822
+  (0.3ms) commit transaction
823
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
824
+  (0.0ms) begin transaction
825
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 17:44:26.840655"], ["updated_at", "2021-01-27 17:44:26.840655"]]
826
+  (0.4ms) commit transaction
827
+  (0.8ms) SELECT sqlite_version(*)
828
+  (0.0ms) SELECT sqlite_version(*)
829
+  (0.0ms) SELECT sqlite_version(*)
830
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
831
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
832
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
833
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
834
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
835
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
836
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
837
+  (0.5ms) CREATE TABLE "lab_tech_results" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 0 NOT NULL, "raised_error" boolean DEFAULT 0 NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 0 NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
838
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
839
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
840
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
841
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
842
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
843
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
844
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
845
+  (0.0ms) begin transaction
846
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-01-27 17:44:34.446041"], ["updated_at", "2021-01-27 17:44:34.446041"]]
847
+  (0.6ms) commit transaction
848
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
849
+  (0.0ms) begin transaction
850
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-01-27 17:44:34.448003"], ["key", "environment"]]
851
+  (0.3ms) commit transaction
852
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
853
+  (0.0ms) begin transaction
854
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "e0356d9ef0176dfbce4ee2405841ba0b66219186"], ["created_at", "2021-01-27 17:44:34.450628"], ["updated_at", "2021-01-27 17:44:34.450628"]]
855
+  (0.3ms) commit transaction
856
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
857
+  (0.1ms) SELECT sqlite_version(*)
858
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
859
+  (0.5ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
860
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
861
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime)
862
+  (0.5ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
863
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
864
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
865
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
866
+  (0.1ms)  SELECT sql
867
+ FROM sqlite_master
868
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
869
+ UNION ALL
870
+ SELECT sql
871
+ FROM sqlite_temp_master
872
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
873
+ 
874
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
875
+  (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
876
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
877
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190815192130)
878
+  (0.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
879
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
880
+  (0.0ms) begin transaction
881
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-02-05 22:54:30.001550"], ["updated_at", "2021-02-05 22:54:30.001550"]]
882
+  (0.6ms) commit transaction
883
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
884
+  (0.0ms) begin transaction
885
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-02-05 22:54:30.004173"], ["key", "environment"]]
886
+  (0.5ms) commit transaction
887
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
888
+  (0.1ms) SELECT sqlite_version(*)
889
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
890
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
891
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
892
+  (0.9ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime, "diff" text)
893
+  (0.8ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
894
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
895
+  (0.7ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
896
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
897
+  (0.1ms)  SELECT sql
898
+ FROM sqlite_master
899
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
900
+ UNION ALL
901
+ SELECT sql
902
+ FROM sqlite_temp_master
903
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
904
+ 
905
+  (0.7ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
906
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
907
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
908
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20210205225332)
909
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES
910
+ (20190815192130);
911
+
912
+ 
913
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
914
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
915
+  (0.0ms) begin transaction
916
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-02-05 22:57:19.173156"], ["updated_at", "2021-02-05 22:57:19.173156"]]
917
+  (0.6ms) commit transaction
918
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
919
+  (0.0ms) begin transaction
920
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-02-05 22:57:19.175851"], ["key", "environment"]]
921
+  (0.5ms) commit transaction
922
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
923
+  (0.1ms) SELECT sqlite_version(*)
924
+  (0.8ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
925
+  (0.7ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
926
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
927
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime, "diff" text)
928
+  (0.9ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
929
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
930
+  (1.0ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
931
+  (0.9ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
932
+  (0.1ms)  SELECT sql
933
+ FROM sqlite_master
934
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
935
+ UNION ALL
936
+ SELECT sql
937
+ FROM sqlite_temp_master
938
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
939
+ 
940
+  (0.8ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
941
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
942
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
943
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20210205225332)
944
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES
945
+ (20190815192130);
946
+
947
+ 
948
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
949
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
950
+  (0.0ms) begin transaction
951
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-02-05 23:01:50.725891"], ["updated_at", "2021-02-05 23:01:50.725891"]]
952
+  (0.5ms) commit transaction
953
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
954
+  (0.0ms) begin transaction
955
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-02-05 23:01:50.728518"], ["key", "environment"]]
956
+  (0.4ms) commit transaction
957
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
958
+  (0.1ms) SELECT sqlite_version(*)
959
+  (0.9ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
960
+  (0.8ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
961
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
962
+  (0.7ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime, "diff" text)
963
+  (0.6ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
964
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
965
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
966
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
967
+  (0.1ms)  SELECT sql
968
+ FROM sqlite_master
969
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
970
+ UNION ALL
971
+ SELECT sql
972
+ FROM sqlite_temp_master
973
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
974
+ 
975
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
976
+  (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
977
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
978
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20210205225332)
979
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES
980
+ (20190815192130);
981
+
982
+ 
983
+  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
984
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
985
+  (0.0ms) begin transaction
986
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-02-08 19:30:33.143163"], ["updated_at", "2021-02-08 19:30:33.143163"]]
987
+  (0.5ms) commit transaction
988
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
989
+  (0.0ms) begin transaction
990
+ SQL (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-02-08 19:30:33.146344"], ["key", "environment"]]
991
+  (0.5ms) commit transaction
992
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_experiments"
993
+  (0.0ms) SELECT sqlite_version(*)
994
+  (1.1ms) CREATE TABLE "lab_tech_experiments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "percent_enabled" integer DEFAULT 0 NOT NULL, "equivalent_count" integer DEFAULT 0 NOT NULL, "timed_out_count" integer DEFAULT 0 NOT NULL, "other_error_count" integer DEFAULT 0 NOT NULL)
995
+  (0.6ms) CREATE UNIQUE INDEX "index_lab_tech_experiments_by_name" ON "lab_tech_experiments" ("name")
996
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_observations"
997
+  (0.6ms) CREATE TABLE "lab_tech_observations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "result_id" integer NOT NULL, "name" varchar(100), "duration" float(24), "value" text(4294967295), "sql" text, "exception_class" varchar, "exception_message" text, "exception_backtrace" text, "created_at" datetime, "diff" text)
998
+  (0.5ms) CREATE INDEX "index_lab_tech_observations_by_result_id" ON "lab_tech_observations" ("result_id")
999
+  (0.1ms) DROP TABLE IF EXISTS "lab_tech_results"
1000
+  (0.6ms) CREATE TABLE "lab_tech_results" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "experiment_id" integer NOT NULL, "context" text, "equivalent" boolean DEFAULT 'f' NOT NULL, "raised_error" boolean DEFAULT 'f' NOT NULL, "time_delta" float(24), "speedup_factor" float(24), "created_at" datetime, "timed_out" boolean DEFAULT 'f' NOT NULL, "control_duration" float(24), "candidate_duration" float(24))
1001
+  (0.6ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_equivalent" ON "lab_tech_results" ("experiment_id", "equivalent")
1002
+  (0.1ms)  SELECT sql
1003
+ FROM sqlite_master
1004
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
1005
+ UNION ALL
1006
+ SELECT sql
1007
+ FROM sqlite_temp_master
1008
+ WHERE name='index_lab_tech_results_by_exp_id_and_equivalent' AND type='index'
1009
+ 
1010
+  (0.5ms) CREATE INDEX "index_lab_tech_results_by_exp_id_and_raised" ON "lab_tech_results" ("experiment_id", "raised_error")
1011
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
1012
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1013
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20210205225332)
1014
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES
1015
+ (20190815192130);
1016
+
1017
+ 
1018
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1019
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
1020
+  (0.0ms) begin transaction
1021
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-02-08 19:38:19.414585"], ["updated_at", "2021-02-08 19:38:19.414585"]]
1022
+  (0.8ms) commit transaction
1023
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
1024
+  (0.0ms) begin transaction
1025
+ SQL (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-02-08 19:38:19.417545"], ["key", "environment"]]
1026
+  (0.6ms) commit transaction