minor edits

This commit is contained in:
Oliver Kennedy 2019-12-09 23:21:02 -05:00
parent aab72ced0f
commit 6df91da353
Signed by: okennedy
GPG key ID: 3E5F9B3ABD3FDB60

View file

@ -93,7 +93,7 @@
<section> <section>
<h3>Act 1</h3> <h3>Act 1</h3>
<p>Alice wants to analize two unaligned time series.</p> <p>Alice wants to analyze two unaligned time series.</p>
</section> </section>
<section> <section>
@ -559,8 +559,10 @@
</section> </section>
<section> <section>
<section> <section>
<h3>How are caveats propagated?</h3> <h3>Has anyone asked about "where" provenance?</h3>
<p class="fragment">Another brief digression...</p> <p class="fragment">Another brief digression...</p>
</section> </section>
<section> <section>
@ -765,8 +767,9 @@
<div class="fragment"> <div class="fragment">
becomes becomes
<pre><code class="sql"> <pre><code class="sql">
SELECT salary, SELECT AVG(salary),
GROUP_OR(_caveat_field_salary) AS _caveat_field_salary, GROUP_OR(_caveat_field_salary
OR _caveat_row) AS _caveat_field_salary,
FALSE AS _caveat_row FALSE AS _caveat_row
FROM survey_responses FROM survey_responses
</code></pre> </code></pre>
@ -876,13 +879,13 @@
C, D, E C, D, E
FROM R FROM R
SELECT C, D, E FROM data_source SELECT C, D, E FROM data_source WHERE ROWID = i
</code></pre> </code></pre>
<p>becomes</p> <p>becomes</p>
<pre><code class="sql"> <pre><code class="sql">
SELECT 'valid if '& B &' is within tolerances.' SELECT 'valid if '& B &' is within tolerances.'
AS caveat_message AS caveat_message
FROM R FROM R WHERE ROWID = i
</code></pre> </code></pre>
</section> </section>