Skip to content

Commit 07c6ce2

Browse files
committed
Rename a step description again
Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
1 parent 31a0f6f commit 07c6ce2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

common/src/main/java/org/opensearch/sql/common/error/QueryProcessingStage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public enum QueryProcessingStage {
2929
* ANALYZING stage: Semantic validation and type checking. Errors: Field not found, type
3030
* mismatches, semantic violations.
3131
*/
32-
ANALYZING("Validating the query's steps"),
32+
ANALYZING("Validating the query"),
3333

3434
/**
3535
* OPTIMIZING stage: Logical plan optimization with transformation rules. Errors: Optimization

common/src/test/java/org/opensearch/sql/common/error/ErrorReportTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void testErrorReportJsonMapWithStageInContext() {
6464
@SuppressWarnings("unchecked")
6565
Map<String, Object> context = (Map<String, Object>) json.get("context");
6666
assertEquals("analyzing", context.get("stage"));
67-
assertEquals("Validating the query's steps", context.get("stage_description"));
67+
assertEquals("Validating the query", context.get("stage_description"));
6868
assertEquals("test", context.get("field_name"));
6969
}
7070

0 commit comments

Comments
 (0)