mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 21:31:49 +03:00
e0c960a1b6
They all seem to pass, but good to ensure we test the usecase of empty mbtiles
41 lines
886 B
Plaintext
41 lines
886 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" )']
|
|
|
|
[[]]
|
|
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'''
|