mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
144e10ff20
This is mostly a noop, just updating to the new way of storing cached queries and a few other changes per https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md#070---2023-06-30 Note that this uses some of the code from #729 (thanks @upsicleclown !) A minor unrelated change - a reformat of `martin/release.toml`
33 lines
636 B
JSON
33 lines
636 B
JSON
{
|
|
"db_name": "SQLite",
|
|
"query": "SELECT tile_column, tile_row, tile_data FROM tiles WHERE zoom_level = ? LIMIT 1",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"name": "tile_column",
|
|
"ordinal": 0,
|
|
"type_info": "Int64"
|
|
},
|
|
{
|
|
"name": "tile_row",
|
|
"ordinal": 1,
|
|
"type_info": "Int64"
|
|
},
|
|
{
|
|
"name": "tile_data",
|
|
"ordinal": 2,
|
|
"type_info": "Blob"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Right": 1
|
|
},
|
|
"nullable": [
|
|
true,
|
|
true,
|
|
true
|
|
]
|
|
},
|
|
"hash": "5b298df51dccbf0d8a22433a99febc59c27dbf204d09a9c1fb0b3bf9aaad284b"
|
|
}
|