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

ShortRepresentation

import type { ShortRepresentation } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Condensed representation of a node and its subtree. Only present for SCALAR PlanNode(s).

interface ShortRepresentation {
description?: string;
subqueries?: {
[key: string]: number;
}
;
}

§Properties

§
description?: string
[src]

A string representation of the expression subtree rooted at this node.

§
subqueries?: {
[key: string]: number;
}
[src]

A mapping of (subquery variable name) -> (subquery node id) for cases where the description string of this node references a SCALAR subquery contained in the expression subtree rooted at this node. The referenced SCALAR subquery may not necessarily be a direct child of this node.