Author: justi9
Date: 2008-10-02 13:57:41 -0400 (Thu, 02 Oct 2008)
New Revision: 2579
Modified:
mgmt/trunk/mint/python/mint/schemaparser.py
Log:
Add int32 to the types
Modified: mgmt/trunk/mint/python/mint/schemaparser.py
===================================================================
--- mgmt/trunk/mint/python/mint/schemaparser.py 2008-10-02 15:07:59 UTC (rev 2578)
+++ mgmt/trunk/mint/python/mint/schemaparser.py 2008-10-02 17:57:41 UTC (rev 2579)
@@ -19,6 +19,7 @@
self.dataTypesMap = dict()
self.dataTypesMap["objId"] = "ForeignKey"
self.dataTypesMap["uuid"] = "BLOBCol"
+ self.dataTypesMap["int32"] = "IntCol"
self.dataTypesMap["uint8"] = self.dataTypesMap["hilo8"] =
self.dataTypesMap["count8"] = self.dataTypesMap["mma8"] =
"SmallIntCol"
self.dataTypesMap["uint16"] = self.dataTypesMap["hilo16"] =
self.dataTypesMap["count16"] = self.dataTypesMap["mma16"] =
"SmallIntCol"
self.dataTypesMap["uint32"] = self.dataTypesMap["hilo32"] =
self.dataTypesMap["count32"] = self.dataTypesMap["mma32"] =
self.dataTypesMap["atomic32"] = "IntCol"