deleteRow method
Deletes a single QueryLogEntry.
Implementation
Future<QueryLogEntry> deleteRow(
  _i1.Session session,
  QueryLogEntry row, {
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteRow<QueryLogEntry>(
    row,
    transaction: transaction,
  );
}