quick icon indicating copy to clipboard operation
quick copied to clipboard

column attribute ignored if database column exists with property name

Open elpete opened this issue 4 years ago • 0 comments

This is a bit of a weird edge case that came up during a transition with a client, but still a bug:

If you have a table with two columns:

[alpha] (integer) [beta] (varchar)

and you have a Quick entity with this property:

property name="beta" column="alpha" sqltype="cf_sql_varchar";

Even though you've given it the column specification for alpha, it will return the value of beta.

elpete avatar Mar 30 '20 17:03 elpete