This is an automated email from the ASF dual-hosted git repository.

bchapuis pushed a change to branch pmtiles
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git


    omit 4522a44d Replace the Directories record by a class
    omit e6f1fd58 Format code
    omit 7651343b Implement run length and tile deduplication
    omit d4cbcef0 Correctly set header and metadata
    omit 56c8ef8f Add a minimalistic tile writer
    omit 72fa22cf Refactor package and introduce a PMTilesReader class
    omit d5100208 Fix unit tests
    omit 697daeff Port additional methods and tests
    omit db8c2d80 Format code
    omit 600cc49b Implement header serialization and deserialization
    omit e0c8c4e8 Add pmtiles functions
     add 647a2734 Improve postgres tilestore (#792)
     new 8c2a2460 Add pmtiles functions
     new ade0fab5 Implement header serialization and deserialization
     new 48c14d8c Format code
     new 7000b2be Port additional methods and tests
     new b11c6c92 Fix unit tests
     new 8c780a06 Refactor package and introduce a PMTilesReader class
     new 5ad26c9c Add a minimalistic tile writer
     new 41af3186 Correctly set header and metadata
     new d4505239 Implement run length and tile deduplication
     new b2f99a34 Replace the Directories record by a class
     new 2bf080d6 Minor improvements

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   (4522a44d)
            \
             N -- N -- N   refs/heads/pmtiles (2bf080d6)

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:
 baremaps-core/pom.xml                              |   4 -
 .../org/apache/baremaps/iploc/IpLocRepository.java |   1 -
 .../baremaps/stream/PartitionedSpliterator.java    |  16 +-
 .../org/apache/baremaps/stream/StreamUtils.java    |   3 +-
 .../OsmTags.java => tilestore/TileEntry.java}      |  28 +-
 .../org/apache/baremaps/tilestore/TileStore.java   |  41 +++
 .../baremaps/tilestore/mbtiles/MBTilesStore.java   |  43 ++-
 .../apache/baremaps/tilestore/pmtiles/PMTiles.java |   9 +-
 .../baremaps/tilestore/pmtiles/PMTilesStore.java   |  18 ++
 .../baremaps/tilestore/pmtiles/PMTilesWriter.java  |  25 +-
 .../baremaps/tilestore/pmtiles/TileType.java       |  12 +-
 .../baremaps/tilestore/postgres/PostgresGroup.java | 111 -------
 .../baremaps/tilestore/postgres/PostgresQuery.java | 130 ---------
 .../tilestore/postgres/PostgresQueryGenerator.java |   8 +-
 .../tilestore/postgres/PostgresTileStore.java      | 318 +++++++++------------
 .../org/apache/baremaps/utils/PostgresUtils.java   |  11 +-
 .../org/apache/baremaps/utils/SqliteUtils.java     |   2 +-
 .../baremaps/workflow/tasks/ExportVectorTiles.java |  34 ++-
 .../stream/PartitionedSpliteratorTest.java         |  20 +-
 .../apache/baremaps/stream/StreamUtilsTest.java    |   4 +-
 .../baremaps/tilestore/pmtiles/PMTilesTest.java    |   4 +-
 .../tilestore/postgres/JSQLParserTest.java         |  64 -----
 .../postgres/PostgresQueryGeneratorTest.java       |   3 +-
 .../postgres/PostgresQueryParserTest.java          | 107 -------
 .../tilestore/postgres/PostgresTileStoreTest.java  |  50 ++--
 pom.xml                                            |   6 -
 26 files changed, 344 insertions(+), 728 deletions(-)
 copy baremaps-core/src/main/java/org/apache/baremaps/{geocoderosm/OsmTags.java 
=> tilestore/TileEntry.java} (66%)
 delete mode 100644 
baremaps-core/src/main/java/org/apache/baremaps/tilestore/postgres/PostgresGroup.java
 delete mode 100644 
baremaps-core/src/main/java/org/apache/baremaps/tilestore/postgres/PostgresQuery.java
 delete mode 100644 
baremaps-core/src/test/java/org/apache/baremaps/tilestore/postgres/JSQLParserTest.java
 delete mode 100644 
baremaps-core/src/test/java/org/apache/baremaps/tilestore/postgres/PostgresQueryParserTest.java

Reply via email to