Skip to content

Commit 93960ee

Browse files
committed
Fix compilation issues in calcite module
1 parent 2555b3f commit 93960ee

30 files changed

+156
-171
lines changed

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/BaremapsDdlExecutor.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/BaremapsDdlExecutor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2;
18+
package org.apache.baremaps.calcite;
1919

2020
import static com.google.common.base.Preconditions.checkArgument;
2121
import static java.util.Objects.requireNonNull;
@@ -26,8 +26,8 @@
2626
import java.sql.PreparedStatement;
2727
import java.sql.SQLException;
2828
import java.util.*;
29-
import org.apache.baremaps.calcite2.data.DataMaterializedView;
30-
import org.apache.baremaps.calcite2.data.DataModifiableTable;
29+
import org.apache.baremaps.calcite.data.DataMaterializedView;
30+
import org.apache.baremaps.calcite.data.DataModifiableTable;
3131
import org.apache.calcite.adapter.java.JavaTypeFactory;
3232
import org.apache.calcite.adapter.jdbc.JdbcSchema;
3333
import org.apache.calcite.avatica.AvaticaUtils;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/BaremapsTableFactory.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/BaremapsTableFactory.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2;
18+
package org.apache.baremaps.calcite;
1919

2020
import java.io.ByteArrayInputStream;
2121
import java.io.File;
@@ -27,16 +27,16 @@
2727
import java.nio.file.Path;
2828
import java.nio.file.Paths;
2929
import java.util.Map;
30-
import org.apache.baremaps.calcite2.csv.CsvTable;
31-
import org.apache.baremaps.calcite2.data.DataModifiableTable;
32-
import org.apache.baremaps.calcite2.data.DataRow;
33-
import org.apache.baremaps.calcite2.data.DataRowType;
34-
import org.apache.baremaps.calcite2.data.DataSchema;
35-
import org.apache.baremaps.calcite2.flatgeobuf.FlatGeoBufTable;
36-
import org.apache.baremaps.calcite2.geoparquet.GeoParquetTable;
37-
import org.apache.baremaps.calcite2.openstreetmap.OpenStreetMapTable;
38-
import org.apache.baremaps.calcite2.rpsl.RpslTable;
39-
import org.apache.baremaps.calcite2.shapefile.ShapefileTable;
30+
import org.apache.baremaps.calcite.csv.CsvTable;
31+
import org.apache.baremaps.calcite.data.DataModifiableTable;
32+
import org.apache.baremaps.calcite.data.DataRow;
33+
import org.apache.baremaps.calcite.data.DataRowType;
34+
import org.apache.baremaps.calcite.data.DataSchema;
35+
import org.apache.baremaps.calcite.flatgeobuf.FlatGeoBufTable;
36+
import org.apache.baremaps.calcite.geoparquet.GeoParquetTable;
37+
import org.apache.baremaps.calcite.openstreetmap.OpenStreetMapTable;
38+
import org.apache.baremaps.calcite.rpsl.RpslTable;
39+
import org.apache.baremaps.calcite.shapefile.ShapefileTable;
4040
import org.apache.baremaps.data.collection.AppendOnlyLog;
4141
import org.apache.baremaps.data.collection.DataCollection;
4242
import org.apache.baremaps.data.memory.Memory;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/csv/CsvTable.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/csv/CsvTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.csv;
18+
package org.apache.baremaps.calcite.csv;
1919

2020
import com.fasterxml.jackson.databind.MappingIterator;
2121
import com.fasterxml.jackson.dataformat.csv.CsvMapper;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/data/DataColumn.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/DataColumn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import java.io.Serializable;
2121
import org.apache.calcite.rel.type.RelDataType;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/data/DataColumnFixed.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/DataColumnFixed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import java.util.Objects;
2121
import org.apache.calcite.rel.type.RelDataType;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/data/DataColumnNested.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/DataColumnNested.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import java.util.ArrayList;
2121
import java.util.List;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020

2121
import org.apache.calcite.materialize.MaterializationKey;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import static java.util.Objects.requireNonNull;
2121

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/data/DataRow.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/DataRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import java.util.List;
2121
import java.util.Objects;

baremaps-calcite/src/main/java/org/apache/baremaps/calcite2/data/DataRowType.java renamed to baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/DataRowType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.baremaps.calcite2.data;
18+
package org.apache.baremaps.calcite.data;
1919

2020
import java.nio.ByteBuffer;
2121
import java.util.ArrayList;

0 commit comments

Comments
 (0)