]> saetta.ns0.it Git - gdadbcopy/commitdiff
Explicitly set date/timestamp data type when not provided by the provider.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 28 Dec 2012 07:52:56 +0000 (08:52 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 28 Dec 2012 07:52:56 +0000 (08:52 +0100)
src/main.c

index 7410ba0edc1a8492e91211b8bec6db31a4614bf8..04f5d1fb72a6963350f3472721f4b06a99d739eb 100644 (file)
@@ -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)