Connection between fields in classes without descriptions not working

0 votes
asked Feb 14, 2017 in Bug by anonymous

@startuml

!define table(x) class x << (T,#FFAAAA) >>

 
table(Settings) {
  Table for all settings.
  ==
  <u>userId</u> int(11)
   int(10) -- A comment
  field1 int(10)
  field2 varchar(128)
}
 
table(Mitarbeiter) {
Table Mitarbeiter
==
+ field3
+ field4
}
 
Settings::field1 -> Mitarbeiter::field3
@enduml
 
 
However if you give the connection between the two fields a name:
Settings::field1 -> Mitarbeiter::field3 : test
 
I hope this helps you fix these bugs.

1 Answer

0 votes
answered Feb 15, 2017 by plantuml (295,000 points)
Hi,

Thanks for your examples  : it really help to fix the issue.

Unfortunately, there seems to be an issue within GraphViz. We've been able to build a beta that turns around this issue in some cases. Your examples are working fine with it, but other may probably fail. Do not hesitate to post again when you'll have some other crashes.

Here is the beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Regards,
...