[Zorba-coders] [Merge] lp:~zorba-coders/zorba/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module.

Commit message:
Modify JDBC tests to use distinct databases, so they may be run in parallel.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.
=== modified file 'test/Queries/01-creatingDB.xq'
--- test/Queries/01-creatingDB.xq	2013-01-10 02:09:49 +
+++ test/Queries/01-creatingDB.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
 
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School01` /*!40100 DEFAULT CHARACTER SET latin1 */;);
   
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School01`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/02-select.xq'
--- test/Queries/02-select.xq	2013-01-10 19:42:27 +
+++ test/Queries/02-select.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School02` /*!40100 DEFAULT CHARACTER SET latin1 */;);
   
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School02`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/03-connect-options.xq'
--- test/Queries/03-connect-options.xq	2013-01-10 19:42:27 +
+++ test/Queries/03-connect-options.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School03` /*!40100 DEFAULT CHARACTER SET latin1 */;);
 
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School03`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/04-set-null.xq'
--- test/Queries/04-set-null.xq	2013-01-10 19:42:27 +
+++ test/Queries/04-set-null.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School04` /*!40100 DEFAULT CHARACTER SET latin1 */;);
 
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School04`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/05-result-set.xq'
--- test/Queries/05-result-set.xq	2013-01-10 19:42:27 +
+++ test/Queries/05-result-set.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School05` /*!40100 DEFAULT CHARACTER SET latin1 */;);
 
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School05`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/06-prepare.xq'
--- test/Queries/06-prepare.xq	2013-01-10 19:42:27 +
+++ test/Queries/06-prepare.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School06` /*!40100 DEFAULT CHARACTER SET latin1 */;);
 
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School06`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/07-prepare.xq'
--- test/Queries/07-prepare.xq	2013-01-10 19:42:27 +
+++ test/Queries/07-prepare.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   
-jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School` /*!40100 DEFAULT CHARACTER SET latin1 */;);
+jdbc:execute-update($connection, CREATE DATABASE /*!32312 IF NOT EXISTS*/`School07` /*!40100 DEFAULT CHARACTER SET latin1 */;);
 
-jdbc:execute-update($connection, USE `School`;);
+jdbc:execute-update($connection, USE `School07`;);
 
 (: Table structures :)
 

=== modified file 'test/Queries/08-deletingDB.xq'
--- test/Queries/08-deletingDB.xq	2013-01-10 19:42:27 +
+++ test/Queries/08-deletingDB.xq	2013-02-08 10:20:27 +
@@ -5,9 +5,9 @@
   user : root,
   password : });
   

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module has been updated.

Commit Message changed to:

Modify JDBC tests to use distinct databases, so they may be run in parallel.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/oracle-ctest-j8 into 
lp:zorba/oracle-nosql-db-module has been updated.

Commit Message changed to:

Modified tests to use distinct major keys, so they may be run in parallel.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/oracle-ctest-j8 into 
lp:zorba/oracle-nosql-db-module.

Commit message:
Modified tests to use distinct major keys, so they may be run in parallel.

Requested reviews:
  Cezar Andrei (cezar-andrei)
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.
=== modified file 'test/ExpQueryResults/oracle-nosql-db/all-binary.xml.res'
--- test/ExpQueryResults/oracle-nosql-db/all-binary.xml.res	2012-12-18 19:21:31 +
+++ test/ExpQueryResults/oracle-nosql-db/all-binary.xml.res	2013-02-08 10:30:28 +
@@ -1,1 +1,1 @@
-{ db : true, put1 version : true, get1 : VmFsdWUgZm9yIE1rZXkxYS9Na2V5MWItbWs=, get1 value as string : Value for Mkey1a/Mkey1b-mk, put2 : true, get2 : VmFsdWUgZm9yIGtleTI=, get2 value as string : Value for key2, del2 : true, get2 again : null }
+{ db : true, put1 version : true, get1 : VmFsdWUgZm9yIGEtYmtleTFhL2EtYmtleTFiLW1r, get1 value as string : Value for a-bkey1a/a-bkey1b-mk, put2 : true, get2 : VmFsdWUgZm9yIGtleTI=, get2 value as string : Value for key2, del2 : true, get2 again : null }

=== modified file 'test/ExpQueryResults/oracle-nosql-db/all-text.xml.res'
--- test/ExpQueryResults/oracle-nosql-db/all-text.xml.res	2012-12-18 19:21:31 +
+++ test/ExpQueryResults/oracle-nosql-db/all-text.xml.res	2013-02-08 10:30:28 +
@@ -1,1 +1,1 @@
-{ db : true, put1 version : true, get1 : Value for Mkey1a/Mkey1b-mk, put2 : true, get2 : Value for key2, del2 : true, get2 again : null }
+{ db : true, put1 version : true, get1 : Value for a-tkey1a/a-tkey1b-mk, put2 : true, get2 : Value for key2, del2 : true, get2 again : null }

=== modified file 'test/Queries/oracle-nosql-db/all-binary.xq'
--- test/Queries/oracle-nosql-db/all-binary.xq	2013-01-09 17:56:22 +
+++ test/Queries/oracle-nosql-db/all-binary.xq	2013-02-08 10:30:28 +
@@ -10,17 +10,17 @@
   variable $db := nosql:connect( $opt);
   
   variable $key1 := {
-major: [Mkey1a, Mkey1b], 
+major: [a-bkey1a, a-bkey1b], 
 minor:[mk]
   };
   
   variable $key2 := { 
-major: [Mkey2a, Mkey2b]
+major: [a-bkey2a, a-bkey2b]
 , 
 minor:[null] 
   };
   
-  variable $val1 as xs:base64Binary := base64:encode(Value for Mkey1a/Mkey1b-mk);  
+  variable $val1 as xs:base64Binary := base64:encode(Value for a-bkey1a/a-bkey1b-mk);  
   variable $ts1 := nosql:put-binary($db, $key1, $val1 );
   variable $valueVer1 := nosql:get-binary($db, $key1);
   

=== modified file 'test/Queries/oracle-nosql-db/all-text.xq'
--- test/Queries/oracle-nosql-db/all-text.xq	2013-01-09 17:56:22 +
+++ test/Queries/oracle-nosql-db/all-text.xq	2013-02-08 10:30:28 +
@@ -10,18 +10,18 @@
   variable $db := nosql:connect( $opt);
   
   variable $key1 := {
-major: [Mkey1a, Mkey1b], 
+major: [a-tkey1a, a-tkey1b], 
 minor:[mk]
   };
   
   variable $key2 := { 
-major: [Mkey2a, Mkey2b]
+major: [a-tkey2a, a-tkey2b]
 , 
 minor:[null] 
   };
   
   
-  variable $ts1 := nosql:put-text($db, $key1, Value for Mkey1a/Mkey1b-mk );
+  variable $ts1 := nosql:put-text($db, $key1, Value for a-tkey1a/a-tkey1b-mk );
   variable $valueVer1 := nosql:get-text($db, $key1);
   
   

=== modified file 'test/Queries/oracle-nosql-db/delete.xq'
--- test/Queries/oracle-nosql-db/delete.xq	2013-01-09 17:56:22 +
+++ test/Queries/oracle-nosql-db/delete.xq	2013-02-08 10:30:28 +
@@ -10,11 +10,11 @@
   variable $db := nosql:connect( $opt);
   
   variable $key1 := {
-major: [Mkey2, Mkey21], 
+major: [deletekey2, deletekey21], 
 minor:[mk2]
   };
   
-  variable $ts := nosql:put-text($db, $key1, Value for Mkey2/Mkey21-mk2 );
+  variable $ts := nosql:put-text($db, $key1, Value for deletekey2/deletekey21-mk2 );
   variable $valueVersion := nosql:get-text($db, $key1);
   variable $delRes := nosql:remove($db, $key1);
 

=== modified file 'test/Queries/oracle-nosql-db/get.xq'
--- test/Queries/oracle-nosql-db/get.xq	2013-01-09 17:56:22 +
+++ test/Queries/oracle-nosql-db/get.xq	2013-02-08 10:30:28 +
@@ -10,11 +10,11 @@
   variable $db := nosql:connect( $opt);
   
   variable $key1 := {
-major: [Mkey2, Mkey21], 
+major: [getkey2, getkey21], 
 minor:[mk2]
   };
   
-  variable $v := Value for Mkey2/Mkey21-mk2;
+  variable $v := Value for getkey2/getkey21-mk2;
   
   variable $ts := nosql:put-text($db, $key1, $v  );
   variable $valueVersion := nosql:get-text($db, $key1);

=== modified file 'test/Queries/oracle-nosql-db/multiDeletePrefix.xq'
--- test/Queries/oracle-nosql-db/multiDeletePrefix.xq	2013-01-09 17:56:22 +
+++ test/Queries/oracle-nosql-db/multiDeletePrefix.xq	2013-02-08 10:30:28 +
@@ -10,27 +10,27 @@
   variable $db := 

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Rodolfo Ochoa
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/jdbc-ctest-j8-2013-02-08T11-04-11.563Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:275 
(message):
  Validation queue job jdbc-ctest-j8-2013-02-08T11-04-11.563Z is finished.
  The final status was:

  

  1 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/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/jdbc-ctest-j8-2013-02-08T11-38-12.007Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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-scratch into lp:zorba

2013-02-08 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/markos-scratch 
into lp:zorba.

Commit message:
Fixed bug in computing the static type of an allowing-empty FOR variable.

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355

Fixed bug in computing the static type of an allowing-empty FOR variable.
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread Zorba Build Bot
Validation queue job jdbc-ctest-j8-2013-02-08T11-38-12.007Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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/jdbc-ctest-j8 into lp:zorba/jdbc-module

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/jdbc-ctest-j8 into 
lp:zorba/jdbc-module has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
-- 
https://code.launchpad.net/~zorba-coders/zorba/jdbc-ctest-j8/+merge/147336
Your team Zorba Coders is subscribed to branch lp:zorba/jdbc-module.

-- 
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-scratch into lp:zorba

2013-02-08 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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-scratch into lp:zorba

2013-02-08 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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-scratch into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/markos-scratch-2013-02-08T12-42-35.017Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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-scratch into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job markos-scratch-2013-02-08T12-42-35.017Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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-scratch into lp:zorba

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/147355
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Cezar Andrei
The proposal to merge lp:~zorba-coders/zorba/oracle-ctest-j8 into 
lp:zorba/oracle-nosql-db-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Cezar Andrei
Review: Approve

Looks good
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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-867027 into lp:zorba

2013-02-08 Thread Matthias Brantner
Review: Approve


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

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-867027-2013-02-08T18-05-42.189Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-867027/+merge/147257
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-867027 into lp:zorba

2013-02-08 Thread Matthias Brantner
The proposal to merge lp:~paul-lucas/zorba/bug-867027 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2013-02-08 Thread Matthias Brantner
Review: Needs Fixing

The code is good. However, the documentation of the variables should be added 
to doc/zorba/errors_warnings.dox (there is already a section that describes 
other available variables).
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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-867027 into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job bug-867027-2013-02-08T18-05-42.189Z is finished. The final 
status was:

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

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

Status: Approved = Merged

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

2013-02-08 Thread Paul J. Lucas
Markos: can you approve this now?
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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/feature-mem_size into lp:zorba

2013-02-08 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/feature-mem_size into lp:zorba has 
been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/feature-mem_size-2013-02-08T20-33-54.456Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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/feature-mem_size into lp:zorba

2013-02-08 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/feature-mem_size into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:275 
(message):
  Validation queue job feature-mem_size-2013-02-08T20-33-54.456Z is finished.
  The final status was:

  

  1 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/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/feature-mem_size into lp:zorba has 
been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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/bug867068-fixErrorXQDY0027 into lp:zorba

2013-02-08 Thread Cezar Andrei
The proposal to merge lp:~zorba-coders/zorba/bug867068-fixErrorXQDY0027 into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
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/bug867068-fixErrorXQDY0027 into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug867068-fixErrorXQDY0027-2013-02-08T22-18-57.923Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
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/bug867068-fixErrorXQDY0027 into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job bug867068-fixErrorXQDY0027-2013-02-08T22-18-57.923Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
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/bug867068-fixErrorXQDY0027 into lp:zorba

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug867068-fixErrorXQDY0027 into 
lp:zorba has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug867068-fixErrorXQDY0027/+merge/145036
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/bug1023362-xsiTypeIgnored into lp:zorba

2013-02-08 Thread Cezar Andrei
The proposal to merge lp:~zorba-coders/zorba/bug1023362-xsiTypeIgnored into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
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/bug1023362-xsiTypeIgnored into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug1023362-xsiTypeIgnored-2013-02-08T23-11-43.386Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
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/bug1023362-xsiTypeIgnored into lp:zorba

2013-02-08 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
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/bug1023362-xsiTypeIgnored into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job bug1023362-xsiTypeIgnored-2013-02-08T23-11-43.386Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
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/bug1023362-xsiTypeIgnored into lp:zorba

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug1023362-xsiTypeIgnored into 
lp:zorba has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1023362-xsiTypeIgnored/+merge/146224
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-mem_size into lp:zorba

2013-02-08 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/feature-mem_size into lp:zorba has 
been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/feature-mem_size-2013-02-08T23-51-38.613Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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/feature-mem_size into lp:zorba

2013-02-08 Thread Paul J. Lucas
FYI: I had to remove the XQuery test for an item's size because the expected 
results can't be hard-coded since they're platform-dependent.  For example, I 
get totally different values on Mac OS X.  The reason the C++ unit tests for 
mem_sizeof() work (are platform-independent) is because the expected results 
are computed rather than hard-coded.
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job feature-mem_size-2013-02-08T23-51-38.613Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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-mem_size into lp:zorba

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/feature-mem_size into lp:zorba has 
been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-mem_size/+merge/114764
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/bug-1111786 into lp:zorba

2013-02-08 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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/bug-1111786 into lp:zorba

2013-02-08 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-786 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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/bug-1111786 into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-786-2013-02-09T01-38-50.87Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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/bug-1111786 into lp:zorba

2013-02-08 Thread Zorba Build Bot
Validation queue job bug-786-2013-02-09T01-38-50.87Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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/bug-1111786 into lp:zorba

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-786 into lp:zorba has been 
updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-786/+merge/147020
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/oracle-ctest-j8-2013-02-09T07-06-03.419Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread Zorba Build Bot
Validation queue job oracle-ctest-j8-2013-02-09T07-06-03.419Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/oracle-ctest-j8 into lp:zorba/oracle-nosql-db-module

2013-02-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/oracle-ctest-j8 into 
lp:zorba/oracle-nosql-db-module has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
-- 
https://code.launchpad.net/~zorba-coders/zorba/oracle-ctest-j8/+merge/147338
Your team Zorba Coders is subscribed to branch lp:zorba/oracle-nosql-db-module.

-- 
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/data-cleaning-module-doc into lp:zorba/data-cleaning-module

2013-02-08 Thread Zorba Build Bot
There are additional revisions which have not been approved in review. Please 
seek review and approval of these new revisions.
-- 
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.

-- 
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/data-cleaning-module-doc into lp:zorba/data-cleaning-module

2013-02-08 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/data-cleaning-module-doc into 
lp:zorba/data-cleaning-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
-- 
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.

-- 
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/data-cleaning-module-doc into lp:zorba/data-cleaning-module

2013-02-08 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/data-cleaning-module-doc into 
lp:zorba/data-cleaning-module has been updated.

Status: Needs review = Rejected

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
-- 
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.

-- 
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/data-cleaning-module-doc into lp:zorba/data-cleaning-module

2013-02-08 Thread Chris Hillery
These changes apparently got pushed (accidentally?) to the data-cleaning-module 
trunk on 2012-11-26, so this merge proposal is no longer necessary.
-- 
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-module-doc/+merge/126964
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.

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