Allow the user to send a SELECT statement to interact with the prepared statements view (SHOW PREPARED).
Example
SELECT * FROM show_prepared() ORDER BY memory_used;
This we want to support:
- selecting specific columns
- selecting all columns
- ordering by 1 or more columns (
ORDER BY clause)
- filtering by 1 or more columns (
WHERE clause)
Build this as a generic "query engine" inside admin and apply to SHOW PREPARED. Follow up issues will be to apply it to all other views.
Allow the user to send a
SELECTstatement to interact with the prepared statements view (SHOW PREPARED).Example
This we want to support:
ORDER BYclause)WHEREclause)Build this as a generic "query engine" inside admin and apply to
SHOW PREPARED. Follow up issues will be to apply it to all other views.