[Zorba-coders] [Merge] lp:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-08 Thread noreply
The proposal to merge lp:~paul-lucas/zorba/bug-928340 into lp:zorba has been 
updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-08 Thread Zorba Build Bot
Validation queue job bug-928340-2012-02-09T04-26-58.8Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-928340-2012-02-09T04-26-58.8Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-08 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/bug-928340 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-07 Thread William Candillon
Review: Approve

It works as expected.
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-07 Thread Paul J. Lucas
Review: Approve


-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
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:~paul-lucas/zorba/bug-928340 into lp:zorba

2012-02-07 Thread Paul J. Lucas
Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/bug-928340 into 
lp:zorba.

Requested reviews:
  Paul J. Lucas (paul-lucas)
  William Candillon (wcandillon)
Related bugs:
  Bug #928340 in Zorba: "Full-Text Assertion failed"
  https://bugs.launchpad.net/zorba/+bug/928340

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924

Simple fix.
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-928340/+merge/91924
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/runtime/full_text/apply.cpp'
--- src/runtime/full_text/apply.cpp	2011-10-21 01:51:42 +
+++ src/runtime/full_text/apply.cpp	2012-02-07 21:47:20 +
@@ -1219,7 +1219,8 @@
   internal::Thesaurus::ptr thesaurus(
 dynamic_cast( rsrc.release() )
   );
-  ZORBA_ASSERT( thesaurus );
+  if ( !thesaurus )
+throw XQUERY_EXCEPTION( err::FTST0018, ERROR_PARAMS( uri ) );
 
   internal::Thesaurus::iterator::ptr tresult(
 thesaurus->lookup(

-- 
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