This is an automated email from the ASF dual-hosted git repository.
mihaibudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new d98a184db3 Correct misspelling of 'longtitude'
d98a184db3 is described below
commit d98a184db35c13f82fb143cc705fc3a005182c6b
Author: Mihai Budiu <[email protected]>
AuthorDate: Tue Jul 14 14:47:53 2026 -0700
Correct misspelling of 'longtitude'
Signed-off-by: Mihai Budiu <[email protected]>
---
.../org/apache/calcite/test/schemata/bookstore/BookstoreSchema.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/testkit/src/main/java/org/apache/calcite/test/schemata/bookstore/BookstoreSchema.java
b/testkit/src/main/java/org/apache/calcite/test/schemata/bookstore/BookstoreSchema.java
index daf038e9d3..84c334c48b 100644
---
a/testkit/src/main/java/org/apache/calcite/test/schemata/bookstore/BookstoreSchema.java
+++
b/testkit/src/main/java/org/apache/calcite/test/schemata/bookstore/BookstoreSchema.java
@@ -104,11 +104,11 @@ public Place(@Nullable Coordinate coords, String city,
String country) {
/** Coordinate. */
public static class Coordinate {
public final BigDecimal latitude;
- public final BigDecimal longtitude;
+ public final BigDecimal longitude;
- public Coordinate(BigDecimal latitude, BigDecimal longtitude) {
+ public Coordinate(BigDecimal latitude, BigDecimal longitude) {
this.latitude = latitude;
- this.longtitude = longtitude;
+ this.longitude = longitude;
}
}