package cmd
// RunSQL handles the "sql" subcommand
//
// JSON output schema:
//
// {
// "rows": [{"column_name": value, ...}, ...], // Query result rows
// "row_count": int, // Number of rows returned
// "columns": [ // Column metadata
// {"name": string, "type": string}
// ],
// "limited": bool, // Whether results were truncated due to row limit
// "query_executed": string // The actual query executed (with LIMIT applied)
// }