[Libreoffice-commits] core.git: connectivity/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Jan 17 19:50:20 UTC 2019
connectivity/source/drivers/mysqlc/mysqlc_general.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5d1a654a14696e181b49f18ea4d685d78fb1a516
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu Jan 17 09:11:02 2019 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Jan 17 20:49:54 2019 +0100
tdf#122516: fix timestamp in MariaDb/mysql
Change-Id: I9740e265c7f4c607bf871c5f12df149355ce6a61
Reviewed-on: https://gerrit.libreoffice.org/66495
Reviewed-by: Lionel Elie Mamane <lionel at mamane.lu>
Tested-by: Jenkins
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_general.cxx b/connectivity/source/drivers/mysqlc/mysqlc_general.cxx
index 5827b4bd35b9..56b92afd2245 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