[Zorba-coders] [Merge] lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba

2012-06-20 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba has 
been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/markos-scratch2-2012-06-20T06-57-03.786Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba

2012-06-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job markos-scratch2-2012-06-20T06-57-03.786Z is finished.
  The final status was:

  

  No tests were run - build or configure step must have failed.

  Not commiting changes.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba

2012-06-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/markos-scratch2 into lp:zorba has 
been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch2/+merge/08
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 872850] Re: Serialization of Tumbling Window For fails

2012-06-20 Thread Markos Zaharioudakis
I looks like this bug has been fixed already. Not sure in what release.

** Changed in: zorba
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/872850

Title:
  Serialization of Tumbling Window For fails

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Hello

  The serialization of a tumbling window for is broken. The assertion at
  src/zorbaserialization/class_serializer.h:399 doesn't pass. The
  problem can be reproduced by extending the plan_serialization unit
  test with the following diff:

  
  === modified file 'test/unit/guestbook.xq'
  --- test/unit/guestbook.xq2011-08-12 16:07:57 +
  +++ test/unit/guestbook.xq2011-10-12 13:06:44 +
  @@ -37,6 +37,14 @@
 return  1
   };
   
  +declare function guestbook:window() {
  +  let $x := 1 to 1000
  +  for tumbling window $w in $x  
  +  start at $s when fn:true()
  +  end at $e when $e - $s eq 51
  +  return window{ $w }/window 
  +};
  +
   declare %ann:sequential function guestbook:init() {
 ddl:create($guestbook:entries);
   };

  === modified file 'test/unit/guestbook_main.xq'
  --- test/unit/guestbook_main.xq   2011-08-05 02:21:55 +
  +++ test/unit/guestbook_main.xq   2011-10-12 12:58:13 +
  @@ -18,4 +18,4 @@
   
   import module namespace refl = 
http://www.zorba-xquery.com/modules/reflection;;
   
  -guestbook:init(), refl:eval(guestbook:list())
  +guestbook:init(), refl:eval(guestbook:list()), 
refl:eval(guestbook:window())

  
  the test result is:

  ctest -R plan_seri -V
  UpdateCTestConfiguration  from :/home/dagraf/zorba/build/DartConfiguration.tcl
  Parse Config file:/home/dagraf/zorba/build/DartConfiguration.tcl
   Add coverage exclude regular expressions.
   Add coverage exclude: mapm.*
  UpdateCTestConfiguration  from :/home/dagraf/zorba/build/DartConfiguration.tcl
  Parse Config file:/home/dagraf/zorba/build/DartConfiguration.tcl
  Test project /home/dagraf/zorba/build
  Constructing a list of tests
  Done constructing a list of tests
  Checking test dependency graph...
  test 2041
  Start 2041: test/unit/plan_serializer

  2041: Test command: /home/dagraf/zorba/build/test/unit/UnitTests 
plan_serializer
  2041: Test timeout computed to be: 1500
  2041: //home/dagraf/zorba/build/test/unit/guestbook.xq:27,25: Zorba static 
warning [zwarn:ZWST0003]: guestbook:list: function declared sequential, but 
has non-sequential body; raised at 
/home/dagraf/zorba/sandbox/src/compiler/translator/translator.cpp:3399
  2041: UnitTests: /home/dagraf/zorba/sandbox/src/zorbatypes/rchandle.h:111: 
virtual void 
zorba::SimpleRCObject::serialize_internal(zorba::serialization::Archiver): 
Assertion `strstr(typeid(*this).name(), SimpleRCObject)' failed.
  1/1 Test #2041: test/unit/plan_serializer ***Exception: SegFault  
0.08 sec

  0% tests passed, 1 tests failed out of 1

  Total Test time (real) =   0.17 sec

  The following tests FAILED:
2041 - test/unit/plan_serializer (SEGFAULT)
  Errors while running CTest

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/872850/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 922504] Re: Endless Loop in Ordpath generation - Assertion?

2012-06-20 Thread Markos Zaharioudakis
Ghislain, I am transferring this bug to you. You have done some work
with ordpath before and you can coordinate better with David about what
he needs exactly. But if you need any help from me, don't hesitate to
ask. Thanks.

** Changed in: zorba
 Assignee: Markos Zaharioudakis (markos-za) = Ghislain Fourny (gislenius)

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/922504

Title:
  Endless Loop in Ordpath generation - Assertion?

Status in Zorba - The XQuery Processor:
  New

Bug description:
  A customer form 28msec was able to produce an endless loop in
  OrdPath::getLocalBitLength. Basically, the variable lastByte was set
  to 0 in line 360 - the while loop never stops.

  Unfortunately, I was not able to figure out under which circumstances
  this behavior happens. But would it be possible to add an Assertion to
  catch this failure? Moreover, it would be very nice to print some
  information in case of assertions. E.g. the value of the current
  Ordpath. Otherwise, it is almost impossible to reproduce an assertion.

  I already talk to Matthias concerning printing some additional
  information. He thinks it could be added to the stack print. He will
  get in touch with you to discuss if it can be done without performance
  regressions.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/922504/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1012413] Re: commit Federico's module

2012-06-20 Thread Chris Hillery
Back to Markos; I guess I mis-heard the intent to move this to Matthias.

** Changed in: zorba
 Assignee: Matthias Brantner (matthias-brantner) = Markos Zaharioudakis 
(markos-za)

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1012413

Title:
  commit Federico's module

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Work is done. We need the merge.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1012413/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1015468] [NEW] wrong uri resolution with fn:resolve-uri()

2012-06-20 Thread Dennis Knochenwefel
Public bug reported:

the following query:

  resolve-uri(#id,file:///test.xml)

returns:

  file:///?#id

1. the question mark doesn't look right
2. I might be wrong, but I think the correct result should be 
file:///test.xml#id

** Affects: zorba
 Importance: Medium
 Assignee: Chris Hillery (ceejatec)
 Status: New


** Tags: function-library incorrect-result

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1015468

Title:
  wrong uri resolution with fn:resolve-uri()

Status in Zorba - The XQuery Processor:
  New

Bug description:
  the following query:

resolve-uri(#id,file:///test.xml)

  returns:

file:///?#id

  1. the question mark doesn't look right
  2. I might be wrong, but I think the correct result should be 
file:///test.xml#id

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1015468/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug871481 into lp:zorba

2012-06-20 Thread Cezar Andrei
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug871481/+merge/14
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1015560] [NEW] segmentation fault when using fetch and parse in one flwor

2012-06-20 Thread David Graf
Public bug reported:

Zorba destroys input stream produced by fetch:content too early if
optimization is on.

example query:

import module namespace fetch = http://www.zorba-xquery.com/modules/fetch;;
   
import module namespace parse-xml = http://www.zorba-xquery.com/modules/xml;;  
import schema namespace opt = http://www.zorba-xquery.com/modules/xml-options;;

   
  let $xmlcontent := fetch:content(file.xml)  
   
  let $contents := parse-xml:parse( 
   
$xmlcontent,
   
opt:options   
   
  opt:parse-external-parsed-entity /  
   
/opt:options) 
   
  return $contents   

file:xml:
any random xml file

executions:
$ ~/zorba/build/bin/zorba -q test.xq -f --optimization-level O0
?xml version=1.0 encoding=UTF-8?
a/
$ ~/zorba/build/bin/zorba -q test.xq -f --optimization-level O1
?xml version=1.0 encoding=UTF-8?
Segmentation fault (core dumped)

** Affects: zorba
 Importance: Undecided
 Assignee: Matthias Brantner (matthias-brantner)
 Status: New

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1015560

Title:
  segmentation fault when using fetch and parse in one flwor

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Zorba destroys input stream produced by fetch:content too early if
  optimization is on.

  example query:

  import module namespace fetch = http://www.zorba-xquery.com/modules/fetch;;  
 
  import module namespace parse-xml = 
http://www.zorba-xquery.com/modules/xml;;  
  import schema namespace opt = 
http://www.zorba-xquery.com/modules/xml-options;;

 
let $xmlcontent := fetch:content(file.xml)
 
let $contents := parse-xml:parse(   
 
  $xmlcontent,  
 
  opt:options 
 
opt:parse-external-parsed-entity /
 
  /opt:options)   
 
return $contents   

  file:xml:
  any random xml file

  executions:
  $ ~/zorba/build/bin/zorba -q test.xq -f --optimization-level O0
  ?xml version=1.0 encoding=UTF-8?
  a/
  $ ~/zorba/build/bin/zorba -q test.xq -f --optimization-level O1
  ?xml version=1.0 encoding=UTF-8?
  Segmentation fault (core dumped)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1015560/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1015580] [NEW] Add base64_streambuf / replace inefficient base64 code

2012-06-20 Thread Paul J. Lucas
Public bug reported:

Add a base64_streambuf so that reading or writing base64-encoded data is
easy. Also replace the horribly inefficient base64 code.

** Affects: zorba
 Importance: Medium
 Assignee: Paul J. Lucas (paul-lucas)
 Status: In Progress


** Tags: task

** Branch linked: lp:~zorba-coders/zorba/feature-base64_streambuf

** Changed in: zorba
   Status: New = In Progress

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1015580

Title:
  Add base64_streambuf / replace inefficient base64 code

Status in Zorba - The XQuery Processor:
  In Progress

Bug description:
  Add a base64_streambuf so that reading or writing base64-encoded data
  is easy. Also replace the horribly inefficient base64 code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1015580/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1015618] [NEW] Memory Heap error on Windows

2012-06-20 Thread Rodolfo Ochoa
Public bug reported:

When I run a query with a namespace added from StaticContext and used in
the query, like in this example:


#include zorba/zorba.h

int main(int argc, char* argv[])
{
  void* lStore = zorba::StoreManager::getStore();
  zorba::Zorba* lZorba = zorba::Zorba::getInstance(lStore);

  zorba::StaticContext_t lContext = lZorba-createStaticContext();
  lContext-addNamespace(foo, http://www.foo.com;);

  zorba::XQuery_t lQuery = lZorba-compileQuery(foo:e/, lContext);
  lQuery-execute(std::cout);

  lQuery-free();
  lContext-free();

  lZorba-shutdown();
  zorba::StoreManager::shutdownStore(lStore);
 return 0;
}


When the program finishes in debug mode I get the error:
Debug error:
HEAP CORRUPTION DETECTED: before Normal block (#103257) at 0x0275D170
CRT detected that the application wrote to memory before start of heap buffer.

This is the call stack:
   msvcr100d.dll!_free_dbg_nolock(void * pUserData, int nBlockUse)  Line 
 1353 + 0x3b bytes C++
msvcr100d.dll!_free_dbg(void * pUserData, int nBlockUse)  Line 1265 + 
0xd bytes C++
msvcr100d.dll!operator delete(void * pUserData)  Line 54 + 0x10 bytes   
C++

zorba_simplestore.dll!std::allocatorstd::_Container_proxy::deallocate(std::_Container_proxy
 * _Ptr, unsigned int __formal)  Line 182 + 0x9 bytes  C++
zorba_simplestore.dll!std::_String_valchar,std::allocatorchar 
::~_String_valchar,std::allocatorchar ()  Line 481C++

zorba_simplestore.dll!std::basic_stringchar,std::char_traitschar,std::allocatorchar
 ::~basic_stringchar,std::char_traitschar,std::allocatorchar ()  Line 
754 + 0xf bytesC++

zorba_simplestore.dll!zorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD::~SIMPLE_HASHOUT_FIELD()
  + 0x16 bytes   C++

zorba_simplestore.dll!zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 
*::~HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *()  Line 85 + 0xb bytes   C++

zorba_simplestore.dll!zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *::`scalar deleting destructor'()  + 0x16 bytesC++

zorba_simplestore.dll!std::_Destroyzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Ptr)  Line 64C++

zorba_simplestore.dll!std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
::destroy(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Ptr)  Line 213 + 0x9 bytes C++

zorba_simplestore.dll!std::_Dest_valstd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
,zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
(std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Alval, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Pdest)  Line 288  C++

zorba_simplestore.dll!std::_Destroy_rangestd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *  
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _First, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Last, 
std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Al, std::_Nonscalar_ptr_iterator_tag __formal)  Line 97 + 0xd bytes
 C++

zorba_simplestore.dll!std::_Destroy_rangestd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *  
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _First, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Last, 
std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Al)  Line 88 + 0x29 bytes   C++

zorba_simplestore.dll!std::vectorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 
*,std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *  
::_Destroy(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _First, 

[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/jsoniq-2012-06-20T15-29-08.711Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/unregister-delete-or-destroy into lp:zorba

2012-06-20 Thread Ghislain Fourny
The proposal to merge lp:~zorba-coders/zorba/unregister-delete-or-destroy into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
-- 
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1. Got: 5 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/jsoniq into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/unregister-delete-or-destroy into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/unregister-delete-or-destroy-2012-06-20T16-08-59.225Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread Markos Zaharioudakis
Review: Approve

I didn't really understand the reasoning for this change. I guess it's a 
sausalito thing. But it's ok with the simplestore, so i approve.

-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Ghislain Fourny
The proposal to merge lp:~zorba-coders/zorba/jsoniq into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue job jsoniq-2012-06-20T15-29-08.711Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/unregister-delete-or-destroy into lp:zorba

2012-06-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/unregister-delete-or-destroy into 
lp:zorba failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job unregister-delete-or-destroy-2012-06-20T16-08-59.225Z
  is finished.  The final status was:

  

  87 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/unregister-delete-or-destroy into lp:zorba

2012-06-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/unregister-delete-or-destroy into 
lp:zorba has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
-- 
https://code.launchpad.net/~zorba-coders/zorba/unregister-delete-or-destroy/+merge/100814
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/jsoniq-2012-06-20T16-43-08.491Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue job jsoniq-2012-06-20T16-43-08.491Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1. Got: 5 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jsoniq into lp:zorba

2012-06-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/jsoniq into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq/+merge/92171
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/jsoniq into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-971782 into lp:zorba

2012-06-20 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-971782/+merge/100788
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/builtin-qnames-in-pool-fix-2012-06-20T17-51-51.668Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~nbrinza/zorba/error-messages into lp:zorba

2012-06-20 Thread Matthias Brantner
Review: Needs Fixing

This branch has some conflicts with the current trunk. Also, if I merge the 
trunk, I get the following compile error:

/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y: In member 
function ‘virtual int zorba::xquery_parser::parse()’:
/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y:2653:94: 
error: ‘class zorba::VarInDecl’ has no member named ‘get_name’
/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y:2679:75: 
error: ‘class zorba::VarInDecl’ has no member named ‘get_name’
-- 
https://code.launchpad.net/~nbrinza/zorba/error-messages/+merge/107899
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue job builtin-qnames-in-pool-fix-2012-06-20T17-51-51.668Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into lp:zorba

2012-06-20 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/builtin-qnames-in-pool-fix into 
lp:zorba has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
-- 
https://code.launchpad.net/~zorba-coders/zorba/builtin-qnames-in-pool-fix/+merge/110805
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 867357] Re: Improved parser error message

2012-06-20 Thread Matthias Brantner
This branch has some conflicts with the current trunk. Also, if I merge
the trunk, I get the following compile error:

/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y: In member 
function ‘virtual int zorba::xquery_parser::parse()’:
/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y:2653:94: 
error: ‘class zorba::VarInDecl’ has no member named ‘get_name’
/home/mbrantner/zorba/sandbox/src/compiler/parser/xquery_parser.y:2679:75: 
error: ‘class zorba::VarInDecl’ has no member named ‘get_name’

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/867357

Title:
  Improved parser error message

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Provide an improved error message for a syntax error reported by the
  parser:

  Given:

 for sm1 in $x/match

  I get:

   line 23, column 7: [XPST0003] syntax error, unexpected 'QName',
  expecting end of file

  A better error message would be:

   unexpected QName (missing '$'?)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/867357/+subscriptions

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~nbrinza/zorba/bugs into lp:zorba

2012-06-20 Thread Matthias Brantner
Review: Needs Information

What's the status of this? It needs merge with the trunk? Also, do the 6 tests 
that were failing work now?
-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/105315
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/feature-transient_maps into lp:zorba

2012-06-20 Thread Till Westmann
The proposal to merge lp:~zorba-coders/zorba/feature-transient_maps into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/feature-transient_maps/+merge/106287
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-transient_maps/+merge/106287
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/feature-transient_maps into lp:zorba

2012-06-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/feature-transient_maps-2012-06-20T18-41-00.67Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-transient_maps/+merge/106287
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Bug 1015618] Re: Memory Heap error on Windows

2012-06-20 Thread Rodolfo Ochoa
** Changed in: zorba
 Assignee: (unassigned) = Markos Zaharioudakis (markos-za)

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1015618

Title:
  Memory Heap error on Windows

Status in Zorba - The XQuery Processor:
  New

Bug description:
  When I run a query with a namespace added from StaticContext and used
  in the query, like in this example:

  
  #include zorba/zorba.h

  int main(int argc, char* argv[])
  {
void* lStore = zorba::StoreManager::getStore();
zorba::Zorba* lZorba = zorba::Zorba::getInstance(lStore);

zorba::StaticContext_t lContext = lZorba-createStaticContext();
lContext-addNamespace(foo, http://www.foo.com;);

zorba::XQuery_t lQuery = lZorba-compileQuery(foo:e/, lContext);
lQuery-execute(std::cout);

lQuery-free();
lContext-free();

lZorba-shutdown();
zorba::StoreManager::shutdownStore(lStore);
   return 0;
  }


  
  When the program finishes in debug mode I get the error:
  Debug error:
  HEAP CORRUPTION DETECTED: before Normal block (#103257) at 0x0275D170
  CRT detected that the application wrote to memory before start of heap buffer.

  This is the call stack:
   msvcr100d.dll!_free_dbg_nolock(void * pUserData, int nBlockUse)  Line 
1353 + 0x3b bytes C++
msvcr100d.dll!_free_dbg(void * pUserData, int nBlockUse)  Line 1265 + 
0xd bytes C++
msvcr100d.dll!operator delete(void * pUserData)  Line 54 + 0x10 bytes   
C++

zorba_simplestore.dll!std::allocatorstd::_Container_proxy::deallocate(std::_Container_proxy
 * _Ptr, unsigned int __formal)  Line 182 + 0x9 bytes  C++
zorba_simplestore.dll!std::_String_valchar,std::allocatorchar 
::~_String_valchar,std::allocatorchar ()  Line 481C++

zorba_simplestore.dll!std::basic_stringchar,std::char_traitschar,std::allocatorchar
 ::~basic_stringchar,std::char_traitschar,std::allocatorchar ()  Line 
754 + 0xf bytesC++

zorba_simplestore.dll!zorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD::~SIMPLE_HASHOUT_FIELD()
  + 0x16 bytes   C++

zorba_simplestore.dll!zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 
*::~HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *()  Line 85 + 0xb bytes   C++

zorba_simplestore.dll!zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *::`scalar deleting destructor'()  + 0x16 bytesC++

zorba_simplestore.dll!std::_Destroyzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Ptr)  Line 64C++

zorba_simplestore.dll!std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
::destroy(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Ptr)  Line 213 + 0x9 bytes C++

zorba_simplestore.dll!std::_Dest_valstd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
,zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * 
(std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Alval, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Pdest)  Line 288  C++

zorba_simplestore.dll!std::_Destroy_rangestd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *  
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _First, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Last, 
std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Al, std::_Nonscalar_ptr_iterator_tag __formal)  Line 97 + 0xd bytes
 C++

zorba_simplestore.dll!std::_Destroy_rangestd::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *  
(zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _First, 
zorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 * * _Last, 
std::allocatorzorba::HashEntryzorba::serialization::Archiver::SIMPLE_HASHOUT_FIELD,zorba::serialization::archive_field
 *   _Al)  Line 88 + 0x29 bytes   C++