[GRASS-SVN] r34926 - grass/branches/develbranch_6/vector/v.out.ascii
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Dec 18 05:50:55 EST 2008
Author: martinl
Date: 2008-12-18 05:50:55 -0500 (Thu, 18 Dec 2008)
New Revision: 34926
Modified:
grass/branches/develbranch_6/vector/v.out.ascii/b2a.c
Log:
v.out.ascii: olumn names are case sensitive
Modified: grass/branches/develbranch_6/vector/v.out.ascii/b2a.c
===================================================================
--- grass/branches/develbranch_6/vector/v.out.ascii/b2a.c 2008-12-17 21:29:54 UTC (rev 34925)
+++ grass/branches/develbranch_6/vector/v.out.ascii/b2a.c 2008-12-18 10:50:55 UTC (rev 34926)
@@ -218,6 +218,9 @@
case DB_C_TYPE_DATETIME: {
break;
}
+ case -1:
+ G_fatal_error(_("Column <%s> not found in table <%s>"),
+ columns[i], Fi->table);
default: G_fatal_error(_("Column <%s>: unsupported data type"),
columns[i]);
}
More information about the grass-commit
mailing list