| Bug #7120 | CREATE TABLE geom (g GEOMETRY); generates Error No 1178 | ||
|---|---|---|---|
| Submitted: | 9 Dec 2004 4:21 | Modified: | 9 Dec 2004 10:05 |
| Reporter: | Roger Merritt | Email Updates: | |
| Status: | Not a Bug | Impact on me: | |
| Category: | MySQL Query Browser | Severity: | S2 (Serious) |
| Version: | 1.1.2 | OS: | Windows (Windows 2000) |
| Assigned to: | CPU Architecture: | Any | |
[9 Dec 2004 4:21]
Roger Merritt
[9 Dec 2004 10:05]
Hartmut Holzgraefe
GEOMETRY is only supported by the MyISAM table handler so far, i asume you have installed MySQL selecting "transactional tables"? You can either change the default table engine to MyISAM or specificly request MyISAM for GIS related tables: CREATE TABLE geom (g GEOMETRY) ENGINE=MyISAM;
[9 Dec 2004 20:30]
Roger Merritt
thanks for the quick reply, that fixed the problem - perhaps that Creating_spatial_columns.html should be updated to reflect/remind users of this situation.
