Skip to content

Commit 91559f0

Browse files
committed
spelling: input
1 parent d3f1fe4 commit 91559f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/analysis/analyzer/Verifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Collection<Failure> verify(LogicalPlan plan) {
169169
if (!ua.customMessage()) {
170170
boolean useQualifier = ua.qualifier() != null;
171171
List<String> potentialMatches = new ArrayList<>();
172-
for (Attribute a : p.intputSet()) {
172+
for (Attribute a : p.inputSet()) {
173173
String nameCandidate = useQualifier ? a.qualifiedName() : a.name();
174174
// add only primitives (object types would only result in another error)
175175
if ((a.dataType() != DataType.UNSUPPORTED) && a.dataType().isPrimitive()) {

x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/plan/QueryPlan.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public AttributeSet outputSet() {
4141
return lazyOutputSet;
4242
}
4343

44-
public AttributeSet intputSet() {
44+
public AttributeSet inputSet() {
4545
if (lazyInputSet == null) {
4646
List<Attribute> attrs = new ArrayList<>();
4747
for (PlanType child : children()) {

x-pack/qa/smoke-test-watcher-with-security/src/test/java/org/elasticsearch/smoketest/SmokeTestWatcherWithSecurityIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public void testSearchInputHasPermissions() throws Exception {
149149
builder.startObject("condition").startObject("compare").startObject("ctx.payload.hits.total").field("gte", 1)
150150
.endObject().endObject().endObject();
151151
builder.startObject("actions").startObject("logging").startObject("logging")
152-
.field("text", "successfully ran " + watchId + "to test for search inpput").endObject().endObject().endObject();
152+
.field("text", "successfully ran " + watchId + "to test for search input").endObject().endObject().endObject();
153153
builder.endObject();
154154

155155
indexWatch(watchId, builder);

0 commit comments

Comments
 (0)