Browse Source

v.out.ogr: export datetime attributes as datetime type (#184)

export datetime attributes as datetime type
Markus Metz 5 years ago
parent
commit
13b4d447dd
1 changed files with 4 additions and 0 deletions
  1. 4 0
      vector/v.out.ogr/main.c

+ 4 - 0
vector/v.out.ogr/main.c

@@ -723,7 +723,11 @@ int main(int argc, char *argv[])
 		    ogr_ftype = OFTString;
 		    break;
 		case DB_C_TYPE_DATETIME:
+#if GDAL_VERSION_NUM >= 1320
+		    ogr_ftype = OFTDateTime;
+#else
 		    ogr_ftype = OFTString;
+#endif
 		    break;
 		}
 		G_debug(2, "ogr_ftype = %d", ogr_ftype);