Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes

import type { GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

UTF-8 encoding. Sorted mode: - All values are supported. - Code point order is preserved. Distinct mode: all values are supported. Compatible with: - BigQuery TEXT encoding - HBase Bytes.toBytes - Java String#getBytes(StandardCharsets.UTF_8)

interface GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes {
nullEscapeChar?: string;
}

§Properties

§
nullEscapeChar?: string
[src]

Single-character escape sequence used to support NULL values. If set, allows NULL values to be encoded as the empty string "". The actual empty string, or any value where every character equals null_escape_char, has one more null_escape_char appended. If null_escape_char is set and does not equal the ASCII null character 0x00, then the encoding will not support sorted mode. .