Sync content...
diff --git a/content/docs/0.9.2/aql/primer.html b/content/docs/0.9.2/aql/primer.html
index 1ff056c..894b68b 100644
--- a/content/docs/0.9.2/aql/primer.html
+++ b/content/docs/0.9.2/aql/primer.html
@@ -1,13 +1,13 @@
<!DOCTYPE html>
<!--
- | Generated by Apache Maven Doxia at 2017-08-25
+ | Generated by Apache Maven Doxia at 2017-09-14
| Rendered using Apache Maven Fluido Skin 1.3.0
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="Date-Revision-yyyymmdd" content="20170825" />
+ <meta name="Date-Revision-yyyymmdd" content="20170914" />
<meta http-equiv="Content-Language" content="en" />
<title>AsterixDB – AsterixDB 101: An ADM and AQL Primer</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
@@ -48,11 +48,11 @@
<ul class="breadcrumb">
- <li id="publishDate">Last Published: 2017-08-25</li>
+ <li id="publishDate">Last Published: 2017-09-14</li>
- <li id="projectVersion" class="pull-right">Version: 0.9.3-SNAPSHOT</li>
+ <li id="projectVersion" class="pull-right">Version: 0.9.2</li>
<li class="divider pull-right">|</li>
@@ -885,34 +885,6 @@
{ "chirp": { "chirpId": "8", "user": { "screenName": "NathanGiesen@211", "lang": "en", "friendsCount": 39339, "statusesCount": 473, "name": "Nathan Giesen", "followersCount": 49416 }, "senderLocation": point("46.05,93.34"), "sendTime": datetime("2005-10-14T10:10:00.000Z"), "referredTopics": {{ "product-z", "shortcut-menu" }}, "messageText": " like product-z the shortcut-menu is awesome:)" }, "similarChirps": [ {{ "ccast", "shortcut-menu" }}, {{ "product-z", "customization" }} ] }
</pre></div></div></div>
<div class="section">
-<h3><a name="Inserting_New_Data"></a>Inserting New Data</h3>
-<p>In addition to loading and querying data, AsterixDB supports incremental additions to datasets via the AQL <i>insert</i> statement.</p>
-<p>The following example adds a new chirp by user “<a class="externalLink" href="mailto:NathanGiesen@211">NathanGiesen@211</a>” to the ChirpMessages dataset. (An astute reader may notice that this chirp was issued a half an hour after his last chirp, so his counts have all gone up in the interim, although he appears not to have moved in the last half hour.)</p>
-
-<div class="source">
-<div class="source">
-<pre> use dataverse TinySocial;
-
- insert into dataset ChirpMessages
- (
- {"chirpId": "13",
- "user":
- {"screenName": "NathanGiesen@211",
- "lang": "en",
- "friendsCount": 39345,
- "statusesCount": 479,
- "name": "Nathan Giesen",
- "followersCount": 49420
- },
- "senderLocation": point("47.44,80.65"),
- "sendTime": datetime("2008-04-26T10:10:35"),
- "referredTopics": {{"chirping"}},
- "messageText": "chirpy chirp, my fellow chirpers!"
- }
- );
-</pre></div></div>
-<p>In general, the data to be inserted may be specified using any valid AQL query expression. The insertion of a single object instance, as in this example, is just a special case where the query expression happens to be a object constructor involving only constants.</p></div>
-<div class="section">
<h3><a name="Deleting_Existing_Data"></a>Deleting Existing Data</h3>
<p>In addition to inserting new data, AsterixDB supports deletion from datasets via the AQL <i>delete</i> statement. The statement supports “searched delete” semantics, and its <i>where</i> clause can involve any valid XQuery expression.</p>
<p>The following example deletes the chirp that we just added from user "<a class="externalLink" href="mailto:NathanGiesen@211"">NathanGiesen@211"</a>. (Easy come, easy go. :-))</p>