mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
16 lines
420 B
Plaintext
16 lines
420 B
Plaintext
{
|
|
"name": "map_to_hstore",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Merge map elements into a hstore-formatted string.",
|
|
"arguments": [{
|
|
"arg": "map",
|
|
"description": "the input map"
|
|
}],
|
|
"examples": [{
|
|
"expression": "map_to_hstore(map('1','one','2','two'))",
|
|
"returns": "'\"1\"=>\"one\"','\"2\"=>\"two\"'"
|
|
}],
|
|
"tags": ["formatted", "hstore", "elements", "map", "merge"]
|
|
}
|