@@ -17,49 +17,49 @@ public enum QueryProcessingStage {
1717 * PARSING stage: PPL/SQL syntax parsing via ANTLR lexer/parser. Errors: Syntax errors, unexpected
1818 * tokens, malformed queries.
1919 */
20- PARSING ("Validating Query Syntax " ),
20+ PARSING ("Validating query syntax " ),
2121
2222 /**
2323 * AST_BUILDING stage: Abstract Syntax Tree construction from parse tree. Errors: Invalid AST
2424 * structure, node creation failures.
2525 */
26- AST_BUILDING ("Building Query Structure " ),
26+ AST_BUILDING ("Assembling the query steps " ),
2727
2828 /**
2929 * ANALYZING stage: Semantic validation and type checking. Errors: Field not found, type
3030 * mismatches, semantic violations.
3131 */
32- ANALYZING ("Checking Query Against Your Data " ),
32+ ANALYZING ("Validating the query's steps " ),
3333
3434 /**
3535 * OPTIMIZING stage: Logical plan optimization with transformation rules. Errors: Optimization
3636 * failures, rule application errors.
3737 */
38- OPTIMIZING ("Optimizing Query " ),
38+ OPTIMIZING ("Optimizing the query " ),
3939
4040 /**
4141 * PLAN_CONVERSION stage: Conversion to Calcite execution plan with system limits. Errors:
4242 * Unsupported operations, plan conversion failures.
4343 */
44- PLAN_CONVERSION ("Preparing Query Execution " ),
44+ PLAN_CONVERSION ("Preparing the query for physical execution " ),
4545
4646 /**
4747 * EXECUTING stage: Query execution via OpenSearch engine. Errors: Execution failures, index
4848 * access errors, resource limits.
4949 */
50- EXECUTING ("Running Query on Cluster " ),
50+ EXECUTING ("Running the query " ),
5151
5252 /**
5353 * RESULT_PROCESSING stage: Result formatting and cursor management. Errors: Result formatting
5454 * failures, cursor errors.
5555 */
56- RESULT_PROCESSING ("Formatting Results " ),
56+ RESULT_PROCESSING ("Processing the query results " ),
5757
5858 /**
5959 * CLUSTER_VALIDATION stage: Prevalidation that cluster is healthy before execution. Errors:
6060 * Cluster unhealthy, nodes unavailable.
6161 */
62- CLUSTER_VALIDATION ("Checking Cluster Health " );
62+ CLUSTER_VALIDATION ("Checking cluster health " );
6363
6464 private final String displayName ;
6565
0 commit comments