Skip to content

Commit

Permalink
fix for #16
Browse files Browse the repository at this point in the history
  • Loading branch information
deobald committed Aug 22, 2024
1 parent 24baddb commit b6f9340
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ <h2 id="system-time"><a class="header" href="#system-time">System Time</a></h2>
System Time is encoded in a special column, which is normally invisible to most queries,
named <code>system_time</code> (lower case).
Because <code>system_time</code> is invisible by default, it must be retrieved explicitly:</p>
<pre><code class="language-sql">SELECTT *, system_time FROM products;
<pre><code class="language-sql">SELECT *, system_time FROM products;
</code></pre>
<h3 id="as-of-time-travel"><a class="header" href="#as-of-time-travel">AS OF (Time Travel)</a></h3>
<p>Endb permits time-traveling queries with the SQL:2011-compatible
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sql/time_queries.html
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ <h2 id="system-time"><a class="header" href="#system-time">System Time</a></h2>
System Time is encoded in a special column, which is normally invisible to most queries,
named <code>system_time</code> (lower case).
Because <code>system_time</code> is invisible by default, it must be retrieved explicitly:</p>
<pre><code class="language-sql">SELECTT *, system_time FROM products;
<pre><code class="language-sql">SELECT *, system_time FROM products;
</code></pre>
<h3 id="as-of-time-travel"><a class="header" href="#as-of-time-travel">AS OF (Time Travel)</a></h3>
<p>Endb permits time-traveling queries with the SQL:2011-compatible
Expand Down
2 changes: 1 addition & 1 deletion src/sql/time_queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ named `system_time` (lower case).
Because `system_time` is invisible by default, it must be retrieved explicitly:

```sql
SELECTT *, system_time FROM products;
SELECT *, system_time FROM products;
```

### AS OF (Time Travel)
Expand Down

0 comments on commit b6f9340

Please sign in to comment.