From: Andrea Zagli Date: Fri, 28 Dec 2012 07:52:56 +0000 (+0100) Subject: Explicitly set date/timestamp data type when not provided by the provider. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=451950652cc9d6c4b5e1624f0ee2d19e93b3de05;p=gdadbcopy Explicitly set date/timestamp data type when not provided by the provider. --- diff --git a/src/main.c b/src/main.c index 7410ba0..04f5d1f 100644 --- a/src/main.c +++ b/src/main.c @@ -354,7 +354,20 @@ read_fields_explicit (Table *table, GdaServerOperation *op, GdaDataModel *dm) }*/ if (mt_column->column_type == NULL) { - mt_column->column_type = g_strdup ("VARCHAR"); + if (mt_column->gtype == G_TYPE_DATE) + { + mt_column->column_type = g_strdup ("DATE"); + } + else if (mt_column->gtype == GDA_TYPE_TIMESTAMP + || mt_column->gtype == G_TYPE_DATE_TIME + || mt_column->gtype == GDA_TYPE_TIME) + { + mt_column->column_type = g_strdup ("TIMESTAMP"); + } + else + { + mt_column->column_type = g_strdup ("VARCHAR"); + } } if (verbose)