interface BigtableValueRange
Since 0.2.0

An exact byte range a cell value must fall in.

Used only in its degenerate start === end form, which is an exact byte match. The SDK's string form ({ value: 'a.*b' }) is a regex — measured, it matched both a.*b and axxb — so this adapter never uses it and has no escaping to get wrong.

Properties

readonly
start: string

The inclusive lower bound.

readonly
end: string

The inclusive upper bound.

Usage

import { type BigtableValueRange } from "database-plugin/src/index.ts";