You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Simon Dew (Code Review)" <do...@asterixdb.incubator.apache.org> on 2018/11/14 12:11:17 UTC

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Simon Dew has uploaded a new change for review.

  https://asterix-gerrit.ics.uci.edu/3028

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................

[NO ISSUE] Fix Markdown errors in Data Model documentation

Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
---
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
5 files changed, 7 insertions(+), 7 deletions(-)


  git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/28/3028/1

diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
index 7ed4e34..92b0374 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
@@ -20,7 +20,7 @@
 
 ## <a id="DerivedTypes">Derived Types</a> ##
 
-### <a id="DerivedTypesObject">Object</a>###
+### <a id="DerivedTypesObject">Object</a> ###
 An `object` contains a set of fields, where each field is described by its name and type. An object type may be defined as either open or closed. Open objects (instances of open object types) are permitted to contain fields that are not part of the type definition, while closed objects do not permit their instances to carry extra fields. An example type definition for an object is:
 
         create type SoldierType as open {
@@ -38,7 +38,7 @@
 
 The first instance has all of the type's prescribed content. The second instance is missing the name field, which is fine because it is optional (due to the ?). The third instance has an extra field; that is fine because the type definition specifies that it is open (which is also true by default, if open is not specified). To more tightly control object content, specifying closed instead of open in the type definition for SoldierType would have made the third example instance an invalid instance of the type.
 
-### <a id="DerivedTypesArray">Array</a>###
+### <a id="DerivedTypesArray">Array</a> ###
 An `array` is a container that holds a fixed number of values. Array constructors are denoted by brackets: "[...]".
 
 An example would be
@@ -47,7 +47,7 @@
         ["alice", 123, "bob", null]
 
 
-### <a id="DerivedTypesMultiset">Multiset</a>###
+### <a id="DerivedTypesMultiset">Multiset</a> ###
 A `multiset` is a generalization of the concept of a set that, unlike a set, allows multiple instances of the multiset's elements.
  Multiset constructors are denoted by two opening curly braces followed by data and two closing curly braces, like "{{...}}".
 
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
index 74bab7f..cc66a3f 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
@@ -39,7 +39,7 @@
     * [Duration/Year_month_duration/Day_time_duration](#PrimitiveTypesDuration)
     * [Interval](#PrimitiveTypesInterval)
     * [UUID](#PrimitiveTypesUUID)
-* [Incomplete Information Types] (#IncompleteInformationTypes)
+* [Incomplete Information Types](#IncompleteInformationTypes)
     * [Null](#IncompleteInformationTypesNull)
     * [Missing](#IncompleteInformationTypesMissing)
 * [Derived Types](#DerivedTypes)
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
index da88ea0..c65ed85 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
@@ -17,7 +17,7 @@
  ! under the License.
  !-->
 
-## <a id="IncompleteInformationTypes">Incomplete Information Types</a>##
+## <a id="IncompleteInformationTypes">Incomplete Information Types</a> ##
 
 ### <a id="IncompleteInformationTypesNull">Null</a> ###
 `null` is a special value that is often used to represent an unknown value.
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
index 8f9b28e..4c0b2e0 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
@@ -17,7 +17,7 @@
  ! under the License.
  !-->
 
-## <a id="PrimitiveTypes">Primitive Types</a>##
+## <a id="PrimitiveTypes">Primitive Types</a> ##
 
 ### <a id="PrimitiveTypesBoolean">Boolean</a> ###
 `boolean` data type can have one of the two values: _*true*_ or _*false*_.
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
index 51aaed3..dc35381 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
@@ -114,7 +114,7 @@
         { "v1": line("10.1234,1.11 0.102,-11.22"), "v2": line("0.1234,-1.0E-10 0.105,-1.02") }
 
 
-### <a id="PrimitiveTypesRectangle">Rectangle</a>###
+### <a id="PrimitiveTypesRectangle">Rectangle</a> ###
 `rectangle` consists of two points that represent the _*bottom left*_ and _*upper right*_ corners of a rectangle.
 
  * Example:

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-sonar/8675/ (7/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-cancellation-test/4727/ (5/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1: Contrib+1

BAD Compatibility Tests Successful

https://asterix-jenkins.ics.uci.edu/job/asterixbad-compat/3790/ : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

BAD Compatibility Tests Started https://asterix-jenkins.ics.uci.edu/job/asterixbad-compat/3790/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-stabilization-f69489-compat/157/ (10/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-ensure-ancestor/2737/ (9/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Dmitry Lychagin (Code Review)" <do...@asterixdb.incubator.apache.org>.
Dmitry Lychagin has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1: Code-Review+2

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Dmitry Lychagin <dm...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: Till Westmann <ti...@apache.org>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/hyracks-gerrit/4638/ (2/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Anon. E. Moose (Code Review)" <do...@asterixdb.incubator.apache.org>.
Anon. E. Moose #1000171 has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1: Contrib+1

Analytics Compatibility Tests Successful
https://goo.gl/ta5eFX : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-notopic/10208/ (1/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Anon. E. Moose (Code Review)" <do...@asterixdb.incubator.apache.org>.
Anon. E. Moose #1000171 has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Analytics Compatibility Compilation Successful
https://goo.gl/pU5RwU : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-verify-no-installer-app/5068/ (12/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-source-format/4693/ (3/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Integration Tests Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-integration-tests/7553/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-source-assemblies/4948/ (4/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1: Integration-Tests+1

Integration Tests Successful

https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-integration-tests/7553/ : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Dmitry Lychagin (Code Review)" <do...@asterixdb.incubator.apache.org>.
Dmitry Lychagin has submitted this change and it was merged.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


[NO ISSUE] Fix Markdown errors in Data Model documentation

Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Reviewed-on: https://asterix-gerrit.ics.uci.edu/3028
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Contrib: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Dmitry Lychagin <dm...@couchbase.com>
---
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
M asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
5 files changed, 7 insertions(+), 7 deletions(-)

Approvals:
  Anon. E. Moose #1000171: 
  Jenkins: Verified; No violations found; ; Verified
  Dmitry Lychagin: Looks good to me, approved



diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
index 7ed4e34..92b0374 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_composite.md
@@ -20,7 +20,7 @@
 
 ## <a id="DerivedTypes">Derived Types</a> ##
 
-### <a id="DerivedTypesObject">Object</a>###
+### <a id="DerivedTypesObject">Object</a> ###
 An `object` contains a set of fields, where each field is described by its name and type. An object type may be defined as either open or closed. Open objects (instances of open object types) are permitted to contain fields that are not part of the type definition, while closed objects do not permit their instances to carry extra fields. An example type definition for an object is:
 
         create type SoldierType as open {
@@ -38,7 +38,7 @@
 
 The first instance has all of the type's prescribed content. The second instance is missing the name field, which is fine because it is optional (due to the ?). The third instance has an extra field; that is fine because the type definition specifies that it is open (which is also true by default, if open is not specified). To more tightly control object content, specifying closed instead of open in the type definition for SoldierType would have made the third example instance an invalid instance of the type.
 
-### <a id="DerivedTypesArray">Array</a>###
+### <a id="DerivedTypesArray">Array</a> ###
 An `array` is a container that holds a fixed number of values. Array constructors are denoted by brackets: "[...]".
 
 An example would be
@@ -47,7 +47,7 @@
         ["alice", 123, "bob", null]
 
 
-### <a id="DerivedTypesMultiset">Multiset</a>###
+### <a id="DerivedTypesMultiset">Multiset</a> ###
 A `multiset` is a generalization of the concept of a set that, unlike a set, allows multiple instances of the multiset's elements.
  Multiset constructors are denoted by two opening curly braces followed by data and two closing curly braces, like "{{...}}".
 
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
index 74bab7f..cc66a3f 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_header.md
@@ -39,7 +39,7 @@
     * [Duration/Year_month_duration/Day_time_duration](#PrimitiveTypesDuration)
     * [Interval](#PrimitiveTypesInterval)
     * [UUID](#PrimitiveTypesUUID)
-* [Incomplete Information Types] (#IncompleteInformationTypes)
+* [Incomplete Information Types](#IncompleteInformationTypes)
     * [Null](#IncompleteInformationTypesNull)
     * [Missing](#IncompleteInformationTypesMissing)
 * [Derived Types](#DerivedTypes)
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
index da88ea0..c65ed85 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_incomplete.md
@@ -17,7 +17,7 @@
  ! under the License.
  !-->
 
-## <a id="IncompleteInformationTypes">Incomplete Information Types</a>##
+## <a id="IncompleteInformationTypes">Incomplete Information Types</a> ##
 
 ### <a id="IncompleteInformationTypesNull">Null</a> ###
 `null` is a special value that is often used to represent an unknown value.
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
index 8f9b28e..4c0b2e0 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_common.md
@@ -17,7 +17,7 @@
  ! under the License.
  !-->
 
-## <a id="PrimitiveTypes">Primitive Types</a>##
+## <a id="PrimitiveTypes">Primitive Types</a> ##
 
 ### <a id="PrimitiveTypesBoolean">Boolean</a> ###
 `boolean` data type can have one of the two values: _*true*_ or _*false*_.
diff --git a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
index 51aaed3..dc35381 100644
--- a/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
+++ b/asterixdb/asterix-doc/src/main/markdown/datamodel/datamodel_primitive_delta.md
@@ -114,7 +114,7 @@
         { "v1": line("10.1234,1.11 0.102,-11.22"), "v2": line("0.1234,-1.0E-10 0.105,-1.02") }
 
 
-### <a id="PrimitiveTypesRectangle">Rectangle</a>###
+### <a id="PrimitiveTypesRectangle">Rectangle</a> ###
 `rectangle` consists of two points that represent the _*bottom left*_ and _*upper right*_ corners of a rectangle.
 
  * Example:

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Dmitry Lychagin <dm...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: Till Westmann <ti...@apache.org>

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-verify-asterix-app/5113/ (11/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-asterix-app-openjdk11/159/ (13/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Anon. E. Moose #1000171
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-asterix-app-sql-execution/4729/ (6/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: [NO ISSUE] Fix Markdown errors in Data Model documentation

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: [NO ISSUE] Fix Markdown errors in Data Model documentation
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-verify-storage/5297/ (8/13)

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/3028
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iec17bc31981b83e996ec6628392eb045f703bb36
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Simon Dew <Si...@couchbase.com>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No