steampipe plugin install chaos

Table: chaos_list_parent_child

Chaos table to test the List calls having parent-child dependencies with all the possible scenarios like errors, panics and delays at both parent and child levels

Examples

List all

select
*
from
chaos_list_parent_child;

Schema for chaos_list_parent_child

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
child_delaybooleanColumn to test delay in child list function
child_fatal_errorbooleanColumn to test the child list function with fatal error
child_fatal_error_after_streamingbooleanColumn to test the the child list function with fatal error after streaming some rows
child_panicbooleanColumn to test panicking the child list function
child_retryable_errorbooleanColumn to test the the child list function with retry in case of non fatal error
child_retryable_error_after_streamingbooleanColumn to test the the child list function with retry in case of non fatal errors occured after streaming a few rows
child_should_ignore_errorbooleanColumn to test the the child list function with Ignorable errors
child_should_ignore_error_after_streamingbooleanColumn to test the the child list function with Ignorable errors occuring after already streaming some rows
idbigintColumn for the ID
parent_delaybooleanColumn to test delay in parent list function
parent_fatal_errorbooleanColumn to test the parent list function with fatal error
parent_fatal_error_after_streamingbooleanColumn to test the the parent list function with fatal error after streaming some rows
parent_panicbooleanColumn to test panicking the parent list function
parent_retryable_errorbooleanColumn to test the the parent list function with retry in case of non fatal error
parent_retryable_error_after_streamingbooleanColumn to test the the parent list function with retry in case of non fatal errors occured after streaming a few rows
parent_should_ignore_errorbooleanColumn to test the the parent list function with Ignorable errors
parent_should_ignore_error_after_streamingbooleanColumn to test the the parent list function with Ignorable errors occuring after already streaming some rows