This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch calcite
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
omit b3e19e8c Revert some changes made during the refactoring by mistake
omit e8005c17 Add array data types
omit f356a5a7 Fix tests
omit 45d3e11e Make all the attributes final
omit 7cdfc88f Add support for spatial types
omit 863feb75 Refactor the collection package
omit 3dafaddc Connect calcite to collections
omit af2eff87 Format code
omit e94bb2d4 Move the store abstraction to the collection package
omit b138761b Prepare the Table and Store abstractions and remove
collection tasks
omit 738c1bb8 Add calcite dependency
add 89c1c6df Add new cli command to edit styles locally (#704)
add 0912b6ce Correct typo in configuration (#708)
add 8c093e2b Fix: Uncomment ocean tileset (#710)
add e82917b8 Fix export command (#694)
new 54400aac Add calcite dependency
new e1f18b12 Prepare the Table and Store abstractions and remove
collection tasks
new d5b356b2 Move the store abstraction to the collection package
new caa7b705 Format code
new 8e8f60b6 Connect calcite to collections
new e794863c Refactor the collection package
new d9f2cb5a Add support for spatial types
new 7ccf7ff1 Make all the attributes final
new cfd206b1 Fix tests
new 6694c56e Add array data types
new 9c53739c Revert some changes made during the refactoring by mistake
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b3e19e8c)
\
N -- N -- N refs/heads/calcite (9c53739c)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 11 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:
...basemap-dev.run.xml => basemap-mbtiles.run.xml} | 4 +-
.run/openstreetmap-export.run.xml | 2 +-
.../baremaps/benchmarks/MBTilesBenchmark.java | 96 ++++++++++++++++++++++
baremaps-cli/pom.xml | 4 +-
.../main/java/org/apache/baremaps/cli/map/Dev.java | 5 +-
.../baremaps/cli/map/{Serve.java => MBTiles.java} | 30 +++----
.../main/java/org/apache/baremaps/cli/map/Map.java | 4 +-
.../java/org/apache/baremaps/cli/map/Serve.java | 7 +-
.../cli/map/{Dev.java => StyleCommand.java} | 55 +++----------
.../org/apache/baremaps/cli/ogcapi/OgcApi.java | 4 +-
.../org/apache/baremaps/tilestore/TileStore.java | 30 +++++++
.../mbtiles/{MBTiles.java => MBTilesStore.java} | 28 ++++++-
.../tilestore/postgres/PostgresTileStore.java | 2 +
.../{postgres => utils}/PostgresUtils.java | 15 ++--
.../org/apache/baremaps/utils/SqliteUtils.java | 37 +++++++++
.../apache/baremaps/workflow/WorkflowContext.java | 4 +-
.../baremaps/workflow/tasks/ExportVectorTiles.java | 34 +++-----
.../postgres/PostgresRepositoryTest.java | 2 +-
.../repository/BlockImporterTest.java | 4 +-
.../postgres/metadata/PostgresMetadataTest.java | 2 +-
.../{MBTilesTest.java => MBTilesStoreTest.java} | 15 ++--
.../org/apache/baremaps/ogcapi/OgcApiTest.java | 4 +-
.../org/apache/baremaps/server/ChangeResource.java | 5 +-
basemap/tileset.js | 2 +-
24 files changed, 273 insertions(+), 122 deletions(-)
copy .run/{basemap-dev.run.xml => basemap-mbtiles.run.xml} (66%)
create mode 100644
baremaps-benchmark/src/main/java/org/apache/baremaps/benchmarks/MBTilesBenchmark.java
copy baremaps-cli/src/main/java/org/apache/baremaps/cli/map/{Serve.java =>
MBTiles.java} (81%)
copy baremaps-cli/src/main/java/org/apache/baremaps/cli/map/{Dev.java =>
StyleCommand.java} (62%)
rename
baremaps-core/src/main/java/org/apache/baremaps/tilestore/mbtiles/{MBTiles.java
=> MBTilesStore.java} (86%)
rename baremaps-core/src/main/java/org/apache/baremaps/{postgres =>
utils}/PostgresUtils.java (81%)
rename
baremaps-core/src/test/java/org/apache/baremaps/tilestore/mbtiles/{MBTilesTest.java
=> MBTilesStoreTest.java} (83%)