mirror of
https://github.com/maplibre/martin.git
synced 2024-12-26 00:12:46 +03:00
db094400bb
If a diff between two mbtiles is empty, `agg_tiles_hash_after_apply` must still be generated. It was not before because two identical tilesets would have the same `agg_tiles_hash`, thus skipping the generation of `agg_tiles_hash_after_apply`
44 lines
971 B
Plaintext
44 lines
971 B
Plaintext
---
|
|
source: mbtiles/tests/copy.rs
|
|
expression: actual_value
|
|
---
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'metadata'
|
|
sql = '''
|
|
CREATE TABLE metadata (
|
|
name text NOT NULL PRIMARY KEY,
|
|
value text)'''
|
|
values = [
|
|
'( "agg_tiles_hash", "D41D8CD98F00B204E9800998ECF8427E" )',
|
|
'( "agg_tiles_hash_after_apply", "9ED9178D7025276336C783C2B54D6258" )',
|
|
]
|
|
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'tiles_with_hash'
|
|
sql = '''
|
|
CREATE TABLE tiles_with_hash (
|
|
zoom_level integer NOT NULL,
|
|
tile_column integer NOT NULL,
|
|
tile_row integer NOT NULL,
|
|
tile_data blob,
|
|
tile_hash text,
|
|
PRIMARY KEY(zoom_level, tile_column, tile_row))'''
|
|
values = []
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'metadata'
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'tiles_with_hash'
|
|
|
|
[[]]
|
|
type = 'view'
|
|
tbl_name = 'tiles'
|
|
sql = '''
|
|
CREATE VIEW tiles AS
|
|
SELECT zoom_level, tile_column, tile_row, tile_data FROM tiles_with_hash'''
|