Closed gordthompson closed 4 years ago
get_columns was returning field names with trailing spaces, causing expressions like table_a.c.ID to fail with a KeyError because the field name was 'ID ', not 'ID'. Fixes test failures in "BuggyDomainReflectionTest".
get_columns
table_a.c.ID
'ID '
'ID'
This PR also includes the changes from #1
get_columns
was returning field names with trailing spaces, causing expressions liketable_a.c.ID
to fail with a KeyError because the field name was'ID '
, not'ID'
. Fixes test failures in "BuggyDomainReflectionTest".This PR also includes the changes from #1