← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~zorba-coders/zorba/bug1158975-sxDateTimeStamp into lp:zorba

 

Cezar Andrei has proposed merging lp:~zorba-coders/zorba/bug1158975-sxDateTimeStamp into lp:zorba.

Commit message:
Fix for bug1158975 - query 1: casting from xs:dateTime to xs:dateTimeStamp.

Requested reviews:
  Till Westmann (tillw)
Related bugs:
  Bug #1158975 in Zorba: "errors casting to xs:dateTimeStamp"
  https://bugs.launchpad.net/zorba/+bug/1158975

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1158975-sxDateTimeStamp/+merge/155597

Fix for bug1158975 - query 1: casting from xs:dateTime to xs:dateTimeStamp.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1158975-sxDateTimeStamp/+merge/155597
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/store/naive/simple_item_factory.cpp'
--- src/store/naive/simple_item_factory.cpp	2013-03-17 04:02:46 +0000
+++ src/store/naive/simple_item_factory.cpp	2013-03-26 20:15:27 +0000
@@ -584,7 +584,7 @@
 {
   if( value->hasTimezone() )
   {
-    result = new DateTimeItem(store::XS_DATETIME, value);
+    result = new DateTimeItem(store::XS_DATETIME_STAMP, value);
     return true;
   }
   else


Follow ups