{
  "db_name": "PostgreSQL",
  "query": "\nSELECT\n    account.account_id,\n    pending_transaction_hash\nFROM\n    account\n    JOIN transaction ON account.pending_transaction_hash = transaction.transaction_hash\nWHERE\n    pending_transaction_hash IS NOT NULL\nORDER BY\n    transaction.created_at ASC\nLIMIT\n    $1\n",
  "describe": {
    "columns": [
      {
        "ordinal": 0,
        "name": "account_id",
        "type_info": "Varchar"
      },
      {
        "ordinal": 1,
        "name": "pending_transaction_hash",
        "type_info": "Varchar"
      }
    ],
    "parameters": {
      "Left": [
        "Int8"
      ]
    },
    "nullable": [
      false,
      true
    ]
  },
  "hash": "a0e40a9b0b6554b9815f36c5d91707807a61fb076ed0216c6bf76f7f6de9be34"
}
