{ "db_name": "PostgreSQL", "query": "\n SELECT p.post_id, p.author_id, u.username AS author, u.full_name,\n p.title, p.content, p.published_at, last_modified\n FROM posts p\n LEFT JOIN users u ON p.author_id = u.user_id\n WHERE p.post_id = $1\n ", "describe": { "columns": [ { "ordinal": 0, "name": "post_id", "type_info": "Uuid" }, { "ordinal": 1, "name": "author_id", "type_info": "Uuid" }, { "ordinal": 2, "name": "author", "type_info": "Text" }, { "ordinal": 3, "name": "full_name", "type_info": "Text" }, { "ordinal": 4, "name": "title", "type_info": "Text" }, { "ordinal": 5, "name": "content", "type_info": "Text" }, { "ordinal": 6, "name": "published_at", "type_info": "Timestamptz" }, { "ordinal": 7, "name": "last_modified", "type_info": "Timestamptz" } ], "parameters": { "Left": [ "Uuid" ] }, "nullable": [ false, false, false, true, false, false, false, true ] }, "hash": "059162eba48cf5f519d0d8b6ce63575ced91941b8c55c986b8c5591c7d9b09e4" }