Merge lp:~zorba-coders/zorba/zorba-2.9 into lp:zorba

Proposed by Chris Hillery
Status: Merged
Merged at revision: 11607
Proposed branch: lp:~zorba-coders/zorba/zorba-2.9
Merge into: lp:zorba
Diff against target: 107 lines (+48/-2) (has conflicts)
4 files modified
CMakeLists.txt (+1/-1)
NOTICE.txt (+1/-1)
modules/ExternalModules.conf (+30/-0)
src/compiler/translator/translator.cpp (+16/-0)
Text conflict in modules/ExternalModules.conf
Text conflict in src/compiler/translator/translator.cpp
To merge this branch: bzr merge lp:~zorba-coders/zorba/zorba-2.9
Reviewer Review Type Date Requested Status
Zorba Coders Pending
Review via email: mp+174123@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2013-05-07 08:39:33 +0000
3+++ CMakeLists.txt 2013-07-11 07:09:31 +0000
4@@ -479,7 +479,7 @@
5 # zorba versioning
6 SET(ZORBA_MAJOR_NUMBER "2")
7 SET(ZORBA_MINOR_NUMBER "9")
8-SET(ZORBA_PATCH_NUMBER "0")
9+SET(ZORBA_PATCH_NUMBER "1")
10 SET(ZORBA_VERSION ${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
11 MESSAGE(STATUS "Zorba version number: ${ZORBA_VERSION}")
12
13
14=== modified file 'NOTICE.txt'
15--- NOTICE.txt 2013-05-07 08:39:33 +0000
16+++ NOTICE.txt 2013-07-11 07:09:31 +0000
17@@ -1,5 +1,5 @@
18 -----------
19-Zorba 2.9.0
20+Zorba 2.9.1
21 -----------
22
23 (Note: This file is generated automatically from NOTICE.xml.
24
25=== modified file 'cmake_modules/ZorbaModule.cmake'
26=== modified file 'modules/ExternalModules.conf'
27--- modules/ExternalModules.conf 2013-06-28 04:19:14 +0000
28+++ modules/ExternalModules.conf 2013-07-11 07:09:31 +0000
29@@ -26,6 +26,7 @@
30 # "tag" is the VCS tag to check out (optional - defaults to HEAD;
31 # currently only works for bzr, since svn tags are just different URLS)
32
33+<<<<<<< TREE
34 archive bzr lp:zorba/archive-module
35 csv bzr lp:zorba/csv-module
36 data-cleaning bzr lp:zorba/data-cleaning-module
37@@ -53,3 +54,32 @@
38 queue bzr lp:zorba/queue-module
39 couchbase bzr lp:zorba/couchbase-module
40 sqlite bzr lp:zorba/sqlite-module
41+=======
42+archive bzr lp:zorba/archive-module zorba-2.9
43+csv bzr lp:zorba/csv-module zorba-2.9
44+data-cleaning bzr lp:zorba/data-cleaning-module zorba-2.9
45+data-formatting bzr lp:zorba/data-formatting-module zorba-2.9.1
46+excel bzr lp:zorba/excel-module zorba-2.9
47+info-extraction bzr lp:zorba/info-extraction-module zorba-2.9
48+geo bzr lp:zorba/geo-module zorba-2.9
49+geoproj bzr lp:zorba/geoproj-module zorba-2.9
50+graphviz bzr lp:zorba/graphviz-module zorba-2.9
51+html bzr lp:zorba/html-module zorba-2.9
52+http-client bzr lp:zorba/http-client-module zorba-2.9
53+image bzr lp:zorba/image-module zorba-2.9
54+jdbc bzr lp:zorba/jdbc-module zorba-2.9
55+languages bzr lp:zorba/languages-module zorba-2.9
56+oracle-nosql-db bzr lp:zorba/oracle-nosql-db-module zorba-2.9
57+oauth bzr lp:zorba/oauth-module zorba-2.9
58+process bzr lp:zorba/process-module zorba-2.9
59+read-pdf bzr lp:zorba/read-pdf-module zorba-2.9.1
60+security bzr lp:zorba/security-module zorba-2.9
61+system bzr lp:zorba/system-module zorba-2.9
62+email bzr lp:zorba/email-module zorba-2.9
63+util-jvm bzr lp:zorba/util-jvm-module zorba-2.9.1
64+schema-tools bzr lp:zorba/schema-tools-module zorba-2.9.1
65+stack bzr lp:zorba/stack-module zorba-2.9
66+queue bzr lp:zorba/queue-module zorba-2.9
67+couchbase bzr lp:zorba/couchbase-module zorba-2.9
68+sqlite bzr lp:zorba/sqlite-module zorba-2.9
69+>>>>>>> MERGE-SOURCE
70
71=== modified file 'src/compiler/translator/translator.cpp'
72--- src/compiler/translator/translator.cpp 2013-06-27 00:05:25 +0000
73+++ src/compiler/translator/translator.cpp 2013-07-11 07:09:31 +0000
74@@ -12784,6 +12784,7 @@
75
76 break;
77 }
78+<<<<<<< TREE
79 case FunctionConsts::FN_FOR_EACH_2:
80 case FunctionConsts::FN_FILTER_2:
81 {
82@@ -12797,6 +12798,21 @@
83 body = flworBody;
84 break;
85 }
86+=======
87+ case FunctionConsts::FN_MAP_2:
88+ case FunctionConsts::FN_FILTER_2:
89+ {
90+ flwor_expr* flworBody = CREATE(flwor)(theRootSctx, theUDF, loc, false);
91+
92+ let_clause* lc = wrap_in_letclause(foArgs[0]);
93+ flworBody->add_clause(lc);
94+ foArgs[0] = CREATE(wrapper)(theRootSctx, theUDF, loc, lc->get_var());
95+
96+ flworBody->set_return_expr(generate_fn_body(f, foArgs, loc));
97+ body = flworBody;
98+ break;
99+ }
100+>>>>>>> MERGE-SOURCE
101 case FunctionConsts::FN_FUNCTION_LOOKUP_2:
102 {
103 bool varAdded = false;
104
105=== modified file 'src/runtime/api/plan_iterator_wrapper.cpp'
106=== modified file 'src/runtime/api/plan_iterator_wrapper.h'
107=== modified file 'src/util/stl_util.h'

Subscribers

People subscribed via source and target branches