--- 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", "012434681F0EBF296906D6608C54D632" )', '( "md-edit", "value - v1" )', '( "md-remove", "value - remove" )', '( "md-same", "value - same" )', ] [[]] 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 = [ '( 5, 1, 1, blob(edit-v1), "EFE0AE5FD114DE99855BC2838BE97E1D" )', '( 5, 1, 2, blob(), "D41D8CD98F00B204E9800998ECF8427E" )', '( 5, 2, 2, blob(remove), "0F6969D7052DA9261E31DDB6E88C136E" )', '( 6, 1, 4, blob(edit-v1), "EFE0AE5FD114DE99855BC2838BE97E1D" )', ] [[]] 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'''