[cols="1,1,2"]
|===
|Serverless (Vector) databases |Serverless (Non-Vector) databases |Description
|Document or row
|Row
|A contiguous piece of data, having one or more properties (values), that is stored in a collection or table in a database.
Documents belong to collections, and document properties are stored in _fields_.
Rows belong to tables, and row properties are stored in _columns_.
|Field or column
|Column
|The individual values, properties, or attributes that make up a complete document or row of data.
For example, a table containing purchase history for an online store might include values like `name`, `address`, `customer_id`, `purchase_date`, and `order_id` in each row.
Properties can be stored as various data types, like text, numbers, arrays, dates, booleans, and vectors.
|===
[cols="1,1,2a"]
|===
|Serverless (Vector) databases |Serverless (Non-Vector) databases |Description
|Document or row
|Row
|A contiguous piece of data, having one or more properties (values), that is stored in a collection or table in a database.
Documents belong to collections, and document properties are stored in _fields_.
Rows belong to tables, and row properties are stored in _columns_.
|Field or column
|Column
|The individual values, properties, or attributes that make up a complete document or row of data.
For example, a table containing purchase history for an online store might include values like `name`, `address`, `customer_id`, `purchase_date`, and `order_id` in each row.
Properties can be stored as various data types, like text, numbers, arrays, dates, booleans, and vectors.
|===
Applying the AsciiDoc style operator (
a), either to an individual cell or a whole column, affects the spacing between paragraphs (and perhaps more; see #111).Steps to reproduce the bug
Add the following syntax example to an adoc file:
AsciiDoc syntax example
The syntax example contains two near-identical tables. The only difference is that the second table has the AsciiDoc
aoperator applied to the cells in the 3rd column.Generated HTML
Without
a:With
a:You can see in the HTML that in cells without the
aoperator applied, paragraphs are generated like so:Whereas in cells with the
aoperator applied, elements are generated as divs: