You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Author Name: Mike Taves (Mike Taves)
Original Redmine Issue: 12346
Affected QGIS version: 2.8.1
A PostGIS layer cannot be properly classified according to a boolean column for the categorized style.
For example, consider the example table:
create table qgistest (id serial, geom geometry, enabled boolean);
insert into qgistest (geom, enabled) values ('POINT(1 2)', true);
insert into qgistest (geom, enabled) values ('POINT(3 4)', false);
Add the layer to QGIS, and in the Layer Properties, change the Style to "Categorized", change Column to "enabled", and click "Classify". The results show 1 symbol without Value or Legend.
The expected result is to have at least two symbols with t and f values, which is the result by saving this layer to a Shapefile and repeating the above steps.
This is possibly related to #20484 where it may have been fixed. I don't have a trunk version, so I cannot test to see if this issue is fixed.
The text was updated successfully, but these errors were encountered:
Author Name: Mike Taves (Mike Taves)
Original Redmine Issue: 12346
Affected QGIS version: 2.8.1
A PostGIS layer cannot be properly classified according to a boolean column for the categorized style.
For example, consider the example table:
Add the layer to QGIS, and in the Layer Properties, change the Style to "Categorized", change Column to "enabled", and click "Classify". The results show 1 symbol without Value or Legend.
The expected result is to have at least two symbols with
t
andf
values, which is the result by saving this layer to a Shapefile and repeating the above steps.This is possibly related to #20484 where it may have been fixed. I don't have a trunk version, so I cannot test to see if this issue is fixed.
The text was updated successfully, but these errors were encountered: