[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - connectivity/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Jan 22 04:44:51 UTC 2019


 connectivity/source/drivers/mysqlc/mysqlc_general.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 78335b8848ed95c978b9c23639ec7711fec1c1b8
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu Jan 17 09:11:02 2019 +0100
Commit:     Adolfo Jayme Barrientos <fitojb at ubuntu.com>
CommitDate: Tue Jan 22 05:44:29 2019 +0100

    tdf#122516: fix timestamp in MariaDb/mysql
    
    Change-Id: I9740e265c7f4c607bf871c5f12df149355ce6a61
    Reviewed-on: https://gerrit.libreoffice.org/66497
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>

diff --git a/connectivity/source/drivers/mysqlc/mysqlc_general.cxx b/connectivity/source/drivers/mysqlc/mysqlc_general.cxx
index aa0b0a9e4e5a..f5b20cb55715 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_general.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_general.cxx
@@ -210,7 +210,7 @@ sal_Int32 mysqlStrToOOOType(const OUString& sType)
         return css::sdbc::DataType::TIME;
     if (sType.equalsIgnoreAsciiCase("date"))
         return css::sdbc::DataType::DATE;
-    if (sType.equalsIgnoreAsciiCase("datetime"))
+    if (sType.equalsIgnoreAsciiCase("datetime") || sType.equalsIgnoreAsciiCase("timestamp"))
         return css::sdbc::DataType::TIMESTAMP;
     if (sType.equalsIgnoreAsciiCase("decimal"))
         return css::sdbc::DataType::DECIMAL;


More information about the Libreoffice-commits mailing list