Skip to content

SHOW VARIABLES

Synopsis

1
SHOW VARIABLES;

Description

Shows all currently defined variables.

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
ksql> DEFINE replicas = '3';
ksql> DEFINE format = 'AVRO';
ksql> DEFINE topicName = '''my_topic''';
ksql> SHOW VARIABLES;

 Variable Name | Value      
----------------------------
 replicas      | 3
 format        | AVRO         
 topicName     | 'my_topic' 
----------------------------

Last update: 2021-03-03