datasette
datasette copied to clipboard
Allow column_label to use SQLite functions/expressions
If the value of "label_column" in the Metadata file were not escaped, SQLite functions could be used within it, e.g.
"tables": {
"person": {
"label_column": "CONCAT(first_name, ' ', last_name)"
},
which would also close the old request #1750.