Skip to content

Commit

Permalink
v.out.ogr: export datetime attributes as datetime type (OSGeo#184)
Browse files Browse the repository at this point in the history
export datetime attributes as datetime type
  • Loading branch information
metzm authored and neteler committed Nov 8, 2019
1 parent 4b74af1 commit 52f5a93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vector/v.out.ogr/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 52f5a93

Please sign in to comment.