This commit is contained in:
Dan Tasse
2026-08-25 16:39:56 -04:00
parent ac2956c1e2
commit e7633686f6
4 changed files with 16 additions and 12 deletions
+4 -3
View File
@@ -1296,9 +1296,10 @@ The following keys are treated specially, by convention, and should be
used when appropriate:
- `lancedb:description`: for a human-readable description of a field.
- `lancedb:tag:(tag_name)`: for a user-defined key-value tag.
- `lancedb:logical_column`: for a column grouping; e.g. `feature_v1` and
`feature_v2` might be in the same logical_column.
- `lancedb:tag:<name>`: for a user-defined key-value tag, where the suffix
names the tag category; e.g. `lancedb:tag:model: "clip"`.
- `lancedb:logical-column`: for a column grouping; e.g. `feature_v1` and
`feature_v2` might be in the same logical column.
- `lancedb:status`: for status options (`production`, `candidate`,
`deprecated`, `archived`) to designate the current life cycle state of
this column.
+4 -3
View File
@@ -633,9 +633,10 @@ export abstract class Table {
* used when appropriate:
*
* - `lancedb:description`: for a human-readable description of a field.
* - `lancedb:tag:(tag_name)`: for a user-defined key-value tag.
* - `lancedb:logical_column`: for a column grouping; e.g. `feature_v1` and
* `feature_v2` might be in the same logical_column.
* - `lancedb:tag:<name>`: for a user-defined key-value tag, where the suffix
* names the tag category; e.g. `lancedb:tag:model: "clip"`.
* - `lancedb:logical-column`: for a column grouping; e.g. `feature_v1` and
* `feature_v2` might be in the same logical column.
* - `lancedb:status`: for status options (`production`, `candidate`,
* `deprecated`, `archived`) to designate the current life cycle state of
* this column.
+4 -3
View File
@@ -2131,9 +2131,10 @@ class Table(ABC):
be used when appropriate:
- "lancedb:description": for a human-readable description of a field.
- "lancedb:tag:(tag_name)" for a user-defined key-value tag.
- "lancedb:logical_column" for a column grouping; e.g. "feature_v1"
and "feature_v2" might be in the same logical_column.
- ``"lancedb:tag:<name>"`` for a user-defined key-value tag, where the
suffix names the tag category; e.g. "lancedb:tag:model": "clip".
- "lancedb:logical-column" for a column grouping; e.g. "feature_v1"
and "feature_v2" might be in the same logical column.
- "lancedb:status" for status options ("production", "candidate",
"deprecated", "archived") to designate the current life cycle
state of this column.
+4 -3
View File
@@ -1762,9 +1762,10 @@ impl Table {
/// used when appropriate:
///
/// - `lancedb:description`: for a human-readable description of a field.
/// - `lancedb:tag:(tag_name)`: for a user-defined key-value tag.
/// - `lancedb:logical_column`: for a column grouping; e.g. `feature_v1` and
/// `feature_v2` might be in the same logical_column.
/// - `lancedb:tag:<name>`: for a user-defined key-value tag, where the suffix
/// names the tag category; e.g. `lancedb:tag:model: "clip"`.
/// - `lancedb:logical-column`: for a column grouping; e.g. `feature_v1` and
/// `feature_v2` might be in the same logical column.
/// - `lancedb:status`: for status options (`production`, `candidate`,
/// `deprecated`, `archived`) to designate the current life cycle state of
/// this column.