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
33 lines
608 B
Plaintext
33 lines
608 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 = []
|
|
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'tiles'
|
|
sql = '''
|
|
CREATE TABLE tiles (
|
|
zoom_level integer NOT NULL,
|
|
tile_column integer NOT NULL,
|
|
tile_row integer NOT NULL,
|
|
tile_data blob,
|
|
PRIMARY KEY(zoom_level, tile_column, tile_row))'''
|
|
values = []
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'metadata'
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'tiles'
|