Skip to content

Instantly share code, notes, and snippets.

@c-lliope
Created June 23, 2018 07:05
Show Gist options
  • Save c-lliope/a157a73431a40704c6d280a0f3836680 to your computer and use it in GitHub Desktop.
Save c-lliope/a157a73431a40704c6d280a0f3836680 to your computer and use it in GitHub Desktop.
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n "}
 (7.6ms) 
select * from samples
where status = 'Received'
and partno in (select distinct partno from specification)

 (10.7ms) 
select * from samples
where status = 'Released'

Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Completed'\n "}
Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 81ms (Views: 8.8ms | ActiveRecord: 7.6ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:42 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from specification\n "}
Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 74ms (Views: 10.8ms | ActiveRecord: 10.7ms)
 (23.1ms) 
select * from samples
where status = 'Received'

 (23.7ms) 
select * from samples
where status = 'Completed'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 25ms (Views: 0.4ms | ActiveRecord: 23.7ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where partno not in (select distinct partno from specification)\n "}
 (22.5ms) 
select * from specification

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 27ms (Views: 0.7ms | ActiveRecord: 22.5ms)
 (6.5ms) 
select * from samples
where partno not in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 6.5ms)
Rendering text template
Rendered text template (0.2ms)
Completed 200 OK in 66ms (Views: 16.2ms | ActiveRecord: 23.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:52 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"ActiveDirectory", "code"=>"\n ldapsearch -H ldaps://TODO:TODO -D \"TODO\" -y bind_dn_password.txt -b \"TODO\" \"TODO\" sAMAccountName\n "}
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"accupacDatabase", "code"=>"\n select\n qjobid as 'id',\n parts.partno as 'part',\n descLong as 'item',\n customer.custname as 'customer' from qjob\n\n inner join parts on qjob.partno = parts.partno\n inner join customer on customer.custno = LEFT(parts.partno, 4)\n\n where qjobid = 'Q603540'\n or workorderno = 'Q603540'\n "}
Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n insert into samples\n (id, partNo, item, customer, status, received_by, received_at)\n values (\n 'Q603540',\n '0123123456',\n 'Shaving Cream',\n 'PharmaGuys',\n 'Received',\n 'G Wright',\n (TIMESTAMP '2018-06-23T07:01:58.392Z')\n )\n "}
 (3.2ms) 
insert into samples
(id, partNo, item, customer, status, received_by, received_at)
values (
'Q603540',
'0123123456',
'Shaving Cream',
'PharmaGuys',
'Received',
'G Wright',
(TIMESTAMP '2018-06-23T07:01:58.392Z')
)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 3.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where partno not in (select distinct partno from specification)\n "}
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n "}
 (0.5ms) 
select * from samples
where status = 'Received'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.5ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from specification\n "}
 (17.5ms) 
select * from samples
where partno not in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 20ms (Views: 1.1ms | ActiveRecord: 17.5ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Completed'\n "}
 (21.2ms) 
select * from samples
where status = 'Released'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 22ms (Views: 0.4ms | ActiveRecord: 21.2ms)
 (22.5ms) 
select * from specification

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 24ms (Views: 0.4ms | ActiveRecord: 22.5ms)
 (25.8ms) 
select * from samples
where status = 'Received'
and partno in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 27ms (Views: 0.4ms | ActiveRecord: 25.8ms)
 (43.3ms) 
select * from samples
where status = 'Completed'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 45ms (Views: 1.0ms | ActiveRecord: 43.3ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (12.2ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 12.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (12.7ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 12.7ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (6.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 6.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (6.8ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 6.8ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (1.2ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 1.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:58 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (2.4ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 2.4ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"accupacDatabase", "code"=>"\n select\n qjobid as 'id',\n parts.partno as 'part',\n descLong as 'item',\n customer.custname as 'customer' from qjob\n\n inner join parts on qjob.partno = parts.partno\n inner join customer on customer.custno = LEFT(parts.partno, 4)\n\n where qjobid = 'Q603740'\n or workorderno = 'Q603740'\n "}
Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n insert into samples\n (id, partNo, item, customer, status, received_by, received_at)\n values (\n 'Q603740',\n '0123234567',\n 'Anti-Cavity Toothpaste',\n 'Dental Tech',\n 'Received',\n 'G Wright',\n (TIMESTAMP '2018-06-23T07:02:06.165Z')\n )\n "}
 (2.0ms) 
insert into samples
(id, partNo, item, customer, status, received_by, received_at)
values (
'Q603740',
'0123234567',
'Anti-Cavity Toothpaste',
'Dental Tech',
'Received',
'G Wright',
(TIMESTAMP '2018-06-23T07:02:06.165Z')
)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 2.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n "}
 (1.4ms) 
select * from samples
where status = 'Received'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 1.4ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "}
 (2.6ms) 
select * from samples
where status = 'Received'
and partno in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 2.6ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Completed'\n "}
 (2.8ms) 
select * from samples
where status = 'Completed'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 2.8ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where partno not in (select distinct partno from specification)\n "}
 (0.6ms) 
select * from samples
where partno not in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.6ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from specification\n "}
 (4.0ms) 
select * from specification

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 4.0ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "}
 (1.9ms) 
select * from samples
where status = 'Released'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 1.9ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
 (19.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
 (18.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 18.1ms)
Completed 200 OK in 21ms (Views: 0.8ms | ActiveRecord: 19.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
 (14.0ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 14.0ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
 (11.4ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 11.4ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
 (4.7ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 4.7ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (2.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 2.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (1.2ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 1.2ms)
 (1.6ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 1.6ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (2.3ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 2.3ms)
 (6.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 6.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (2.7ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 2.7ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:06 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603740'\n "}
 (0.9ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603740'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.9ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:11 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (5.4ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 5.4ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:19 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"judge", "code"=>"\n result = 'Characteristic'\n result.downcase == \"characteristic\"\n "}
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:19 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n insert into results\n (sample_id, test_name, result, pass, entered_by, entered_at)\n values (\n 'Q603540',\n 'Odor',\n 'Characteristic',\n true,\n 'G Wright',\n (TIMESTAMP '2018-06-23T07:02:19.081Z')\n )\n "}
 (5.2ms) 
insert into results
(sample_id, test_name, result, pass, entered_by, entered_at)
values (
'Q603540',
'Odor',
'Characteristic',
true,
'G Wright',
(TIMESTAMP '2018-06-23T07:02:19.081Z')
)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 5.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:19 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (4.3ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 4.3ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:22 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"judge", "code"=>"\n result = '6.7'\n result.to_f >= 6 && result.to_f <= 7\n "}
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:22 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n insert into results\n (sample_id, test_name, result, pass, entered_by, entered_at)\n values (\n 'Q603540',\n 'pH',\n '6.7',\n true,\n 'G Wright',\n (TIMESTAMP '2018-06-23T07:02:22.151Z')\n )\n "}
 (2.2ms) 
insert into results
(sample_id, test_name, result, pass, entered_by, entered_at)
values (
'Q603540',
'pH',
'6.7',
true,
'G Wright',
(TIMESTAMP '2018-06-23T07:02:22.151Z')
)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 2.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:22 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (6.2ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 6.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"judge", "code"=>"\n result = 'Greyish'\n result.match?(/white/i)\n "}
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n insert into results\n (sample_id, test_name, result, pass, entered_by, entered_at)\n values (\n 'Q603540',\n 'Appearance',\n 'Greyish',\n false,\n 'G Wright',\n (TIMESTAMP '2018-06-23T07:02:26.551Z')\n )\n "}
 (3.2ms) 
insert into results
(sample_id, test_name, result, pass, entered_by, entered_at)
values (
'Q603540',
'Appearance',
'Greyish',
false,
'G Wright',
(TIMESTAMP '2018-06-23T07:02:26.551Z')
)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 3.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (0.8ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.8ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n update samples set status = 'Completed'\n where id = 'Q603540'\n "}
 (11.4ms) 
update samples set status = 'Completed'
where id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 11.4ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n "}
 (1.0ms) 
select * from samples
where status = 'Received'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 1.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "}
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
 (6.3ms) 
select * from samples
where status = 'Received'
and partno in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 6.3ms)
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Completed'\n "}
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
 (10.8ms) 
select * from samples
where status = 'Released'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 10.8ms)
 (11.6ms) 
select * from samples
where status = 'Completed'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 11.6ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where partno not in (select distinct partno from specification)\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from specification\n "}
 (1.0ms) 
select * from samples
where partno not in (select distinct partno from specification)

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 1.0ms)
 (0.9ms) 
select * from specification

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.9ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:26 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (1.2ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 1.2ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:28 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (4.5ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 4.5ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n update samples set\n status = 'Released',\n released_by = 'G Wright',\n released_at = (TIMESTAMP '2018-06-23T07:02:33.028Z')\n where id = 'Q603540'\n "}
 (6.9ms) 
update samples set
status = 'Released',
released_by = 'G Wright',
released_at = (TIMESTAMP '2018-06-23T07:02:33.028Z')
where id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 10ms (Views: 1.5ms | ActiveRecord: 6.9ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n "}
 (1.3ms) 
select * from samples
where status = 'Received'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.3ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "}
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
 (13.4ms) 
select * from samples
where status = 'Received'
and partno in (select distinct partno from specification)

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 13.4ms)
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where partno not in (select distinct partno from specification)\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Completed'\n "}
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select * from specification\n "}
 (0.5ms) 
select * from specification

 (5.6ms) 
select * from samples
where status = 'Completed'

 (15.6ms) 
select * from samples
where status = 'Released'

Rendering text template
Rendering text template
Rendering text template
Rendered text template (0.6ms)
Rendered text template (0.1ms)
Rendered text template (0.1ms)
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.5ms)
Completed 200 OK in 19ms (Views: 11.6ms | ActiveRecord: 5.6ms)
Completed 200 OK in 29ms (Views: 11.5ms | ActiveRecord: 15.6ms)
 (15.0ms) 
select * from samples
where partno not in (select distinct partno from specification)

Rendering text template
Rendered text template (0.2ms)
Completed 200 OK in 37ms (Views: 4.2ms | ActiveRecord: 15.0ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (0.8ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.8ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (4.1ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 8ms (Views: 1.8ms | ActiveRecord: 4.1ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (12.5ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.1ms)
Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 12.5ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:33 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (0.7ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.7ms)
Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:02:35 -0400
Processing by CodeController#evaluate as */*
Parameters: {"system"=>"slim", "code"=>"\n select\n specification.test_name,\n specification.test_method,\n specification.criteria,\n specification.judgement,\n results.result,\n results.pass,\n results.entered_at,\n results.entered_by\n\n from samples\n left outer join specification\n on specification.partno = samples.partno\n left outer join results\n on specification.test_name = results.test_name\n and results.sample_id = samples.id\n where samples.id = 'Q603540'\n "}
 (0.9ms) 
select
specification.test_name,
specification.test_method,
specification.criteria,
specification.judgement,
results.result,
results.pass,
results.entered_at,
results.entered_by
from samples
left outer join specification
on specification.partno = samples.partno
left outer join results
on specification.test_name = results.test_name
and results.sample_id = samples.id
where samples.id = 'Q603540'

Rendering text template
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.9ms)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment