mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
de6b681d74
Limit what gets copied from one mbtiles to another. Closes #1069
77 lines
1.7 KiB
Plaintext
77 lines
1.7 KiB
Plaintext
---
|
|
source: mbtiles/tests/copy.rs
|
|
expression: actual_value
|
|
---
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'images'
|
|
sql = '''
|
|
CREATE TABLE images (
|
|
tile_id text NOT NULL PRIMARY KEY,
|
|
tile_data blob)'''
|
|
values = []
|
|
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'map'
|
|
sql = '''
|
|
CREATE TABLE map (
|
|
zoom_level integer NOT NULL,
|
|
tile_column integer NOT NULL,
|
|
tile_row integer NOT NULL,
|
|
tile_id text,
|
|
PRIMARY KEY(zoom_level, tile_column, tile_row))'''
|
|
values = []
|
|
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'metadata'
|
|
sql = '''
|
|
CREATE TABLE metadata (
|
|
name text NOT NULL PRIMARY KEY,
|
|
value text)'''
|
|
values = [
|
|
'( "agg_tiles_hash", "9ED9178D7025276336C783C2B54D6258" )',
|
|
'( "md-edit", "value - v1" )',
|
|
'( "md-remove", "value - remove" )',
|
|
'( "md-same", "value - same" )',
|
|
]
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'images'
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'map'
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'metadata'
|
|
|
|
[[]]
|
|
type = 'view'
|
|
tbl_name = 'tiles'
|
|
sql = '''
|
|
CREATE VIEW tiles AS
|
|
SELECT map.zoom_level AS zoom_level,
|
|
map.tile_column AS tile_column,
|
|
map.tile_row AS tile_row,
|
|
images.tile_data AS tile_data
|
|
FROM map
|
|
JOIN images ON images.tile_id = map.tile_id'''
|
|
|
|
[[]]
|
|
type = 'view'
|
|
tbl_name = 'tiles_with_hash'
|
|
sql = '''
|
|
CREATE VIEW tiles_with_hash AS
|
|
SELECT
|
|
map.zoom_level AS zoom_level,
|
|
map.tile_column AS tile_column,
|
|
map.tile_row AS tile_row,
|
|
images.tile_data AS tile_data,
|
|
images.tile_id AS tile_hash
|
|
FROM map
|
|
JOIN images ON images.tile_id = map.tile_id'''
|