TypeCastOperator.java

1
/*
2
 * Copyright OpenSearch Contributors
3
 * SPDX-License-Identifier: Apache-2.0
4
 */
5
6
7
package org.opensearch.sql.expression.operator.convert;
8
9
import static org.opensearch.sql.data.type.ExprCoreType.BOOLEAN;
10
import static org.opensearch.sql.data.type.ExprCoreType.BYTE;
11
import static org.opensearch.sql.data.type.ExprCoreType.DATE;
12
import static org.opensearch.sql.data.type.ExprCoreType.DATETIME;
13
import static org.opensearch.sql.data.type.ExprCoreType.DOUBLE;
14
import static org.opensearch.sql.data.type.ExprCoreType.FLOAT;
15
import static org.opensearch.sql.data.type.ExprCoreType.INTEGER;
16
import static org.opensearch.sql.data.type.ExprCoreType.LONG;
17
import static org.opensearch.sql.data.type.ExprCoreType.SHORT;
18
import static org.opensearch.sql.data.type.ExprCoreType.STRING;
19
import static org.opensearch.sql.data.type.ExprCoreType.TIME;
20
import static org.opensearch.sql.data.type.ExprCoreType.TIMESTAMP;
21
import static org.opensearch.sql.expression.function.FunctionDSL.impl;
22
import static org.opensearch.sql.expression.function.FunctionDSL.nullMissingHandling;
23
24
import java.util.Arrays;
25
import java.util.stream.Collectors;
26
import java.util.stream.Stream;
27
import lombok.experimental.UtilityClass;
28
import org.opensearch.sql.data.model.ExprBooleanValue;
29
import org.opensearch.sql.data.model.ExprByteValue;
30
import org.opensearch.sql.data.model.ExprDateValue;
31
import org.opensearch.sql.data.model.ExprDatetimeValue;
32
import org.opensearch.sql.data.model.ExprDoubleValue;
33
import org.opensearch.sql.data.model.ExprFloatValue;
34
import org.opensearch.sql.data.model.ExprIntegerValue;
35
import org.opensearch.sql.data.model.ExprLongValue;
36
import org.opensearch.sql.data.model.ExprShortValue;
37
import org.opensearch.sql.data.model.ExprStringValue;
38
import org.opensearch.sql.data.model.ExprTimeValue;
39
import org.opensearch.sql.data.model.ExprTimestampValue;
40
import org.opensearch.sql.expression.function.BuiltinFunctionName;
41
import org.opensearch.sql.expression.function.BuiltinFunctionRepository;
42
import org.opensearch.sql.expression.function.DefaultFunctionResolver;
43
import org.opensearch.sql.expression.function.FunctionDSL;
44
45
@UtilityClass
46
public class TypeCastOperator {
47
  /**
48
   * Register Type Cast Operator.
49
   */
50
  public static void register(BuiltinFunctionRepository repository) {
51 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToString());
52 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToByte());
53 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToShort());
54 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToInt());
55 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToLong());
56 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToFloat());
57 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToDouble());
58 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToBoolean());
59 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToDate());
60 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToTime());
61 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToTimestamp());
62 1 1. register : removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED
    repository.register(castToDatetime());
63
  }
64
65
66
  private static DefaultFunctionResolver castToString() {
67 1 1. castToString : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToString → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_STRING.getName(),
68
        Stream.concat(
69
            Arrays.asList(BYTE, SHORT, INTEGER, LONG, FLOAT, DOUBLE, BOOLEAN, TIME, DATE,
70
                TIMESTAMP, DATETIME).stream()
71 1 1. lambda$castToString$0 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$0 → KILLED
                .map(type -> impl(
72 1 1. lambda$castToString$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$12c7dc48$1 → KILLED
                    nullMissingHandling((v) -> new ExprStringValue(v.value().toString())),
73
                    STRING, type)),
74 1 1. lambda$castToString$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$12c7dc48$2 → KILLED
            Stream.of(impl(nullMissingHandling((v) -> v), STRING, STRING)))
75
            .collect(Collectors.toList())
76
    );
77
  }
78
79
  private static DefaultFunctionResolver castToByte() {
80 1 1. castToByte : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToByte → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_BYTE.getName(),
81
        impl(nullMissingHandling(
82 1 1. lambda$castToByte$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$1 → KILLED
            (v) -> new ExprByteValue(Byte.valueOf(v.stringValue()))), BYTE, STRING),
83
        impl(nullMissingHandling(
84 1 1. lambda$castToByte$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$2 → KILLED
            (v) -> new ExprByteValue(v.byteValue())), BYTE, DOUBLE),
85
        impl(nullMissingHandling(
86 2 1. lambda$castToByte$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToByte$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$3 → KILLED
            (v) -> new ExprByteValue(v.booleanValue() ? 1 : 0)), BYTE, BOOLEAN)
87
    );
88
  }
89
90
  private static DefaultFunctionResolver castToShort() {
91 1 1. castToShort : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToShort → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_SHORT.getName(),
92
        impl(nullMissingHandling(
93 1 1. lambda$castToShort$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$1 → KILLED
            (v) -> new ExprShortValue(Short.valueOf(v.stringValue()))), SHORT, STRING),
94
        impl(nullMissingHandling(
95 1 1. lambda$castToShort$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$2 → KILLED
            (v) -> new ExprShortValue(v.shortValue())), SHORT, DOUBLE),
96
        impl(nullMissingHandling(
97 2 1. lambda$castToShort$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToShort$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$3 → KILLED
            (v) -> new ExprShortValue(v.booleanValue() ? 1 : 0)), SHORT, BOOLEAN)
98
    );
99
  }
100
101
  private static DefaultFunctionResolver castToInt() {
102 1 1. castToInt : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToInt → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_INT.getName(),
103
        impl(nullMissingHandling(
104 1 1. lambda$castToInt$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$1 → KILLED
            (v) -> new ExprIntegerValue(Integer.valueOf(v.stringValue()))), INTEGER, STRING),
105
        impl(nullMissingHandling(
106 1 1. lambda$castToInt$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$2 → KILLED
            (v) -> new ExprIntegerValue(v.integerValue())), INTEGER, DOUBLE),
107
        impl(nullMissingHandling(
108 2 1. lambda$castToInt$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToInt$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$3 → KILLED
            (v) -> new ExprIntegerValue(v.booleanValue() ? 1 : 0)), INTEGER, BOOLEAN)
109
    );
110
  }
111
112
  private static DefaultFunctionResolver castToLong() {
113 1 1. castToLong : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToLong → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_LONG.getName(),
114
        impl(nullMissingHandling(
115 1 1. lambda$castToLong$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$1 → KILLED
            (v) -> new ExprLongValue(Long.valueOf(v.stringValue()))), LONG, STRING),
116
        impl(nullMissingHandling(
117 1 1. lambda$castToLong$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$2 → KILLED
            (v) -> new ExprLongValue(v.longValue())), LONG, DOUBLE),
118
        impl(nullMissingHandling(
119 2 1. lambda$castToLong$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToLong$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$3 → KILLED
            (v) -> new ExprLongValue(v.booleanValue() ? 1L : 0L)), LONG, BOOLEAN)
120
    );
121
  }
122
123
  private static DefaultFunctionResolver castToFloat() {
124 1 1. castToFloat : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToFloat → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_FLOAT.getName(),
125
        impl(nullMissingHandling(
126 1 1. lambda$castToFloat$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$1 → KILLED
            (v) -> new ExprFloatValue(Float.valueOf(v.stringValue()))), FLOAT, STRING),
127
        impl(nullMissingHandling(
128 1 1. lambda$castToFloat$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$2 → KILLED
            (v) -> new ExprFloatValue(v.floatValue())), FLOAT, DOUBLE),
129
        impl(nullMissingHandling(
130 2 1. lambda$castToFloat$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToFloat$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$3 → KILLED
            (v) -> new ExprFloatValue(v.booleanValue() ? 1f : 0f)), FLOAT, BOOLEAN)
131
    );
132
  }
133
134
  private static DefaultFunctionResolver castToDouble() {
135 1 1. castToDouble : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDouble → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_DOUBLE.getName(),
136
        impl(nullMissingHandling(
137 1 1. lambda$castToDouble$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$1 → KILLED
            (v) -> new ExprDoubleValue(Double.valueOf(v.stringValue()))), DOUBLE, STRING),
138
        impl(nullMissingHandling(
139 1 1. lambda$castToDouble$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$2 → KILLED
            (v) -> new ExprDoubleValue(v.doubleValue())), DOUBLE, DOUBLE),
140
        impl(nullMissingHandling(
141 2 1. lambda$castToDouble$12c7dc48$3 : negated conditional → KILLED
2. lambda$castToDouble$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$3 → KILLED
            (v) -> new ExprDoubleValue(v.booleanValue() ? 1D : 0D)), DOUBLE, BOOLEAN)
142
    );
143
  }
144
145
  private static DefaultFunctionResolver castToBoolean() {
146 1 1. castToBoolean : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToBoolean → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_BOOLEAN.getName(),
147
        impl(nullMissingHandling(
148 1 1. lambda$castToBoolean$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$1 → KILLED
            (v) -> ExprBooleanValue.of(Boolean.valueOf(v.stringValue()))), BOOLEAN, STRING),
149
        impl(nullMissingHandling(
150 2 1. lambda$castToBoolean$12c7dc48$2 : negated conditional → KILLED
2. lambda$castToBoolean$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$2 → KILLED
            (v) -> ExprBooleanValue.of(v.doubleValue() != 0)), BOOLEAN, DOUBLE),
151 1 1. lambda$castToBoolean$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$3 → KILLED
        impl(nullMissingHandling((v) -> v), BOOLEAN, BOOLEAN)
152
    );
153
  }
154
155
  private static DefaultFunctionResolver castToDate() {
156 1 1. castToDate : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDate → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_DATE.getName(),
157
        impl(nullMissingHandling(
158 1 1. lambda$castToDate$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$1 → KILLED
            (v) -> new ExprDateValue(v.stringValue())), DATE, STRING),
159
        impl(nullMissingHandling(
160 1 1. lambda$castToDate$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$2 → KILLED
            (v) -> new ExprDateValue(v.dateValue())), DATE, DATETIME),
161
        impl(nullMissingHandling(
162 1 1. lambda$castToDate$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$3 → KILLED
            (v) -> new ExprDateValue(v.dateValue())), DATE, TIMESTAMP),
163 1 1. lambda$castToDate$12c7dc48$4 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$4 → KILLED
        impl(nullMissingHandling((v) -> v), DATE, DATE)
164
    );
165
  }
166
167
  private static DefaultFunctionResolver castToTime() {
168 1 1. castToTime : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToTime → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_TIME.getName(),
169
        impl(nullMissingHandling(
170 1 1. lambda$castToTime$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$1 → KILLED
            (v) -> new ExprTimeValue(v.stringValue())), TIME, STRING),
171
        impl(nullMissingHandling(
172 1 1. lambda$castToTime$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$2 → KILLED
            (v) -> new ExprTimeValue(v.timeValue())), TIME, DATETIME),
173
        impl(nullMissingHandling(
174 1 1. lambda$castToTime$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$3 → KILLED
            (v) -> new ExprTimeValue(v.timeValue())), TIME, TIMESTAMP),
175 1 1. lambda$castToTime$12c7dc48$4 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$4 → KILLED
        impl(nullMissingHandling((v) -> v), TIME, TIME)
176
    );
177
  }
178
179
  private static DefaultFunctionResolver castToTimestamp() {
180 1 1. castToTimestamp : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToTimestamp → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_TIMESTAMP.getName(),
181
        impl(nullMissingHandling(
182 1 1. lambda$castToTimestamp$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$1 → KILLED
            (v) -> new ExprTimestampValue(v.stringValue())), TIMESTAMP, STRING),
183
        impl(nullMissingHandling(
184 1 1. lambda$castToTimestamp$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$2 → KILLED
            (v) -> new ExprTimestampValue(v.timestampValue())), TIMESTAMP, DATETIME),
185 1 1. lambda$castToTimestamp$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$3 → KILLED
        impl(nullMissingHandling((v) -> v), TIMESTAMP, TIMESTAMP)
186
    );
187
  }
188
189
  private static DefaultFunctionResolver castToDatetime() {
190 1 1. castToDatetime : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDatetime → KILLED
    return FunctionDSL.define(BuiltinFunctionName.CAST_TO_DATETIME.getName(),
191
        impl(nullMissingHandling(
192 1 1. lambda$castToDatetime$12c7dc48$1 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$1 → KILLED
            (v) -> new ExprDatetimeValue(v.stringValue())), DATETIME, STRING),
193
        impl(nullMissingHandling(
194 1 1. lambda$castToDatetime$12c7dc48$2 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$2 → KILLED
            (v) -> new ExprDatetimeValue(v.datetimeValue())), DATETIME, TIMESTAMP),
195
        impl(nullMissingHandling(
196 1 1. lambda$castToDatetime$12c7dc48$3 : replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$3 → KILLED
            (v) -> new ExprDatetimeValue(v.datetimeValue())), DATETIME, DATE)
197
    );
198
  }
199
}

Mutations

51

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToString(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#8]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

52

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToByte(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#4]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

53

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToShort(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#3]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

54

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToIntException()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

55

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

56

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToFloatException()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

57

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToDoubleException()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

58

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToBoolean()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

59

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDate()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

60

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTime()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

61

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTimestamp()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

62

1.1
Location : register
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDatetime()]
removed call to org/opensearch/sql/expression/function/BuiltinFunctionRepository::register → KILLED

67

1.1
Location : castToString
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToString → KILLED

71

1.1
Location : lambda$castToString$0
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$0 → KILLED

72

1.1
Location : lambda$castToString$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToString(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#2]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$12c7dc48$1 → KILLED

74

1.1
Location : lambda$castToString$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToString(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#7]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToString$12c7dc48$2 → KILLED

80

1.1
Location : castToByte
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToByte → KILLED

82

1.1
Location : lambda$castToByte$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToByte()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$1 → KILLED

84

1.1
Location : lambda$castToByte$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToByte(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#3]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$2 → KILLED

86

1.1
Location : lambda$castToByte$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToByte()]
negated conditional → KILLED

2.2
Location : lambda$castToByte$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToByte()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToByte$12c7dc48$3 → KILLED

91

1.1
Location : castToShort
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToShort → KILLED

93

1.1
Location : lambda$castToShort$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToShort()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$1 → KILLED

95

1.1
Location : lambda$castToShort$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToShort(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#6]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$2 → KILLED

97

1.1
Location : lambda$castToShort$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToShort()]
negated conditional → KILLED

2.2
Location : lambda$castToShort$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToShort()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToShort$12c7dc48$3 → KILLED

102

1.1
Location : castToInt
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToInt → KILLED

104

1.1
Location : lambda$castToInt$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToInt()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$1 → KILLED

106

1.1
Location : lambda$castToInt$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToInt(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#2]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$2 → KILLED

108

1.1
Location : lambda$castToInt$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToInt()]
negated conditional → KILLED

2.2
Location : lambda$castToInt$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToInt()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToInt$12c7dc48$3 → KILLED

113

1.1
Location : castToLong
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToLong → KILLED

115

1.1
Location : lambda$castToLong$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLong()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$1 → KILLED

117

1.1
Location : lambda$castToLong$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToLong(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#2]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$2 → KILLED

119

1.1
Location : lambda$castToLong$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToLong()]
negated conditional → KILLED

2.2
Location : lambda$castToLong$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToLong()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToLong$12c7dc48$3 → KILLED

124

1.1
Location : castToFloat
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToFloat → KILLED

126

1.1
Location : lambda$castToFloat$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToFloat()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$1 → KILLED

128

1.1
Location : lambda$castToFloat$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToFloat(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#4]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$2 → KILLED

130

1.1
Location : lambda$castToFloat$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToFloat()]
negated conditional → KILLED

2.2
Location : lambda$castToFloat$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToFloat()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToFloat$12c7dc48$3 → KILLED

135

1.1
Location : castToDouble
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDouble → KILLED

137

1.1
Location : lambda$castToDouble$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToDouble()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$1 → KILLED

139

1.1
Location : lambda$castToDouble$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToDouble(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#2]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$2 → KILLED

141

1.1
Location : lambda$castToDouble$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToDouble()]
negated conditional → KILLED

2.2
Location : lambda$castToDouble$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToDouble()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDouble$12c7dc48$3 → KILLED

146

1.1
Location : castToBoolean
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToBoolean → KILLED

148

1.1
Location : lambda$castToBoolean$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToBoolean()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$1 → KILLED

150

1.1
Location : lambda$castToBoolean$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToBoolean(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#6]
negated conditional → KILLED

2.2
Location : lambda$castToBoolean$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[test-template:castToBoolean(org.opensearch.sql.data.model.ExprValue)]/[test-template-invocation:#6]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$2 → KILLED

151

1.1
Location : lambda$castToBoolean$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castBooleanToBoolean()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToBoolean$12c7dc48$3 → KILLED

156

1.1
Location : castToDate
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDate → KILLED

158

1.1
Location : lambda$castToDate$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDate()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$1 → KILLED

160

1.1
Location : lambda$castToDate$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDate()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$2 → KILLED

162

1.1
Location : lambda$castToDate$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDate()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$3 → KILLED

163

1.1
Location : lambda$castToDate$12c7dc48$4
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDate()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDate$12c7dc48$4 → KILLED

168

1.1
Location : castToTime
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToTime → KILLED

170

1.1
Location : lambda$castToTime$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$1 → KILLED

172

1.1
Location : lambda$castToTime$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$2 → KILLED

174

1.1
Location : lambda$castToTime$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$3 → KILLED

175

1.1
Location : lambda$castToTime$12c7dc48$4
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTime$12c7dc48$4 → KILLED

180

1.1
Location : castToTimestamp
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToTimestamp → KILLED

182

1.1
Location : lambda$castToTimestamp$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTimestamp()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$1 → KILLED

184

1.1
Location : lambda$castToTimestamp$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTimestamp()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$2 → KILLED

185

1.1
Location : lambda$castToTimestamp$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToTimestamp()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToTimestamp$12c7dc48$3 → KILLED

190

1.1
Location : castToDatetime
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castStringToLongException()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::castToDatetime → KILLED

192

1.1
Location : lambda$castToDatetime$12c7dc48$1
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDatetime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$1 → KILLED

194

1.1
Location : lambda$castToDatetime$12c7dc48$2
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDatetime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$2 → KILLED

196

1.1
Location : lambda$castToDatetime$12c7dc48$3
Killed by : org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest.[engine:junit-jupiter]/[class:org.opensearch.sql.expression.operator.convert.TypeCastOperatorTest]/[method:castToDatetime()]
replaced return value with null for org/opensearch/sql/expression/operator/convert/TypeCastOperator::lambda$castToDatetime$12c7dc48$3 → KILLED

Active mutators

Tests examined


Report generated by PIT 1.9.0