This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch calcite-schema-ddl
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
from 7b22d6eac Refactor testing directories
new 242470282 Improve class name
new 9c958fc93 Add data schema for memory mapped structures
new 19f8856ff Add schema for openstreetmap formats
new dbbeea8d7 Add schema for shapefiles
new e37d95e23 Add RPSL schema and tests
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../baremaps/calcite/BaremapsTableFactory.java | 40 +--
.../baremaps/calcite/data/DataModifiableTable.java | 6 +-
.../org/apache/baremaps/calcite/data/DataRow.java | 2 +-
.../apache/baremaps/calcite/data/DataRowType.java | 4 +-
.../apache/baremaps/calcite/data/DataSchema.java | 313 ++++-----------------
.../data/{DataSchema.java => DataTableSchema.java} | 22 +-
.../calcite/openstreetmap/OpenStreetMapSchema.java | 184 ++++++++++++
.../calcite/openstreetmap/OpenStreetMapTable.java | 19 +-
.../calcite/postgres/PostgresModifiableTable.java | 48 ++--
.../calcite/postgres/PostgresTypeConversion.java | 4 +-
.../apache/baremaps/calcite/rpsl/RpslSchema.java | 155 ++++++++++
.../calcite/shapefile/ShapefileSchema.java | 155 ++++++++++
.../baremaps/calcite/BaremapsDdlExecutorTest.java | 12 +-
.../baremaps/calcite/data/DataSchemaTest.java | 243 ++++++++++++++++
.../openstreetmap/OpenStreetMapSchemaTest.java | 187 ++++++++++++
.../openstreetmap/OpenStreetMapTableTest.java | 4 +-
.../postgres/PostgresModifiableTableTest.java | 4 +-
.../baremaps/calcite/rpsl/RpslSchemaTest.java | 151 ++++++++++
.../baremaps/calcite/rpsl/RpslTableTest.java | 2 +-
.../calcite/shapefile/ShapefileSchemaTest.java | 154 ++++++++++
.../org/apache/baremaps/iploc/IpLocObjectTest.java | 2 +-
...chemaTest.java => TileDataTableSchemaTest.java} | 2 +-
.../baremaps/tilestore/file/FileTileStoreTest.java | 4 +-
.../tilestore/mbtiles/MBTilesStoreTest.java | 4 +-
.../org/apache/baremaps/rpsl/RpslObjectTest.java | 2 +-
.../org/apache/baremaps/rpsl/RpslParserTest.java | 4 +-
baremaps-testing/data/{ripe => rpsl}/sample.txt | 0
.../org/apache/baremaps/testing/TestFiles.java | 4 +-
28 files changed, 1374 insertions(+), 357 deletions(-)
copy
baremaps-calcite/src/main/java/org/apache/baremaps/calcite/data/{DataSchema.java
=> DataTableSchema.java} (93%)
create mode 100644
baremaps-calcite/src/main/java/org/apache/baremaps/calcite/openstreetmap/OpenStreetMapSchema.java
create mode 100644
baremaps-calcite/src/main/java/org/apache/baremaps/calcite/rpsl/RpslSchema.java
create mode 100644
baremaps-calcite/src/main/java/org/apache/baremaps/calcite/shapefile/ShapefileSchema.java
create mode 100644
baremaps-calcite/src/test/java/org/apache/baremaps/calcite/data/DataSchemaTest.java
create mode 100644
baremaps-calcite/src/test/java/org/apache/baremaps/calcite/openstreetmap/OpenStreetMapSchemaTest.java
create mode 100644
baremaps-calcite/src/test/java/org/apache/baremaps/calcite/rpsl/RpslSchemaTest.java
create mode 100644
baremaps-calcite/src/test/java/org/apache/baremaps/calcite/shapefile/ShapefileSchemaTest.java
rename
baremaps-core/src/test/java/org/apache/baremaps/tilestore/{TileDataSchemaTest.java
=> TileDataTableSchemaTest.java} (97%)
rename baremaps-testing/data/{ripe => rpsl}/sample.txt (100%)