neo4j_statement_execution_step

An execution step in a plan (or profile) for an evaluated statement.

Members

Variables

arguments
neo4j_value_t arguments;

A NEO4J_MAP, containing all the arguments for this step as provided by the server.

db_hits
ulong db_hits;

The number of db_hits (for profiled plans only).

estimated_rows
double estimated_rows;

The estimated number of rows to be handled by this step.

identifiers
const(char*)* identifiers;

An array of identifier names available in this step.

nidentifiers
uint nidentifiers;

The number of identifiers.

nsources
uint nsources;

The number of sources.

operator_type
const(char)* operator_type;

The name of the operator type applied in this execution step.

page_cache_hits
ulong page_cache_hits;

The number of page cache hits (for profiled plans only).

page_cache_misses
ulong page_cache_misses;

The number of page cache misses (for profiled plans only).

rows
ulong rows;

The number of rows handled by this step (for profiled plans only).

sources
neo4j_statement_execution_step** sources;

An array containing the sources for this step.

Meta