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

Proposed by Markos Zaharioudakis
Status: Merged
Approved by: Markos Zaharioudakis
Approved revision: 11255
Merged at revision: 11262
Proposed branch: lp:~zorba-coders/zorba/markos_fots
Merge into: lp:zorba
Diff against target: 40 lines (+7/-1)
3 files modified
ChangeLog (+1/-0)
src/compiler/translator/translator.cpp (+6/-0)
test/fots/CMakeLists.txt (+0/-1)
To merge this branch: bzr merge lp:~zorba-coders/zorba/markos_fots
Reviewer Review Type Date Requested Status
Markos Zaharioudakis Approve
Review via email: mp+150687@code.launchpad.net

Commit message

throw XQST0048 for groupby clause, as specified by XQuery 3.0

Description of the change

throw XQST0048 for groupby clause, as specified by XQuery 3.0

To post a comment you must log in.
Revision history for this message
Markos Zaharioudakis (markos-za) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

The attempt to merge lp:~zorba-coders/zorba/markos_fots 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 markos_fots-2013-02-26T22-45-45.584Z 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

lp:~zorba-coders/zorba/markos_fots updated
11255. By Markos Zaharioudakis

throw XQST0048 for groupby clause, as specified by XQuery 3.0

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue job markos_fots-2013-02-26T23-16-43.673Z is finished. The final status was:

All tests succeeded!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ChangeLog'
--- ChangeLog 2013-02-23 14:51:30 +0000
+++ ChangeLog 2013-02-26 23:13:23 +0000
@@ -31,6 +31,7 @@
31 * Fixed bug #1132032 (Certain regexes involving ^ should be legal)31 * Fixed bug #1132032 (Certain regexes involving ^ should be legal)
32 * Fixed bug #1023168 (Non-single-char-escapes in regex character ranges not32 * Fixed bug #1023168 (Non-single-char-escapes in regex character ranges not
33 caught)33 caught)
34 * Throw XQST0048 for groupby clause, as specified by XQuery 3.0.
34 * Fixed bug #866874 (regex "range subtraction" not supported for ICU)35 * Fixed bug #866874 (regex "range subtraction" not supported for ICU)
35 * Fixed bug in computing the static type of an allowing-empty FOR variable.36 * Fixed bug in computing the static type of an allowing-empty FOR variable.
36 * Fixed bug #1099648 and #1088886 (XML parsing failures on Red Hat)37 * Fixed bug #1099648 and #1088886 (XML parsing failures on Red Hat)
3738
=== modified file 'src/compiler/translator/translator.cpp'
--- src/compiler/translator/translator.cpp 2013-02-09 00:26:52 +0000
+++ src/compiler/translator/translator.cpp 2013-02-26 23:13:23 +0000
@@ -6881,6 +6881,12 @@
6881 if (spec->get_binding_expr() == NULL)6881 if (spec->get_binding_expr() == NULL)
6882 {6882 {
6883 ve = lookup_var(varname, loc, true);6883 ve = lookup_var(varname, loc, true);
6884
6885 if (all_vars.find(ve) == all_vars.end())
6886 {
6887 RAISE_ERROR(err::XQST0094, loc,
6888 ERROR_PARAMS(ve->get_name()->getStringValue()));
6889 }
6884 }6890 }
6885 else6891 else
6886 {6892 {
68876893
=== modified file 'test/fots/CMakeLists.txt'
--- test/fots/CMakeLists.txt 2013-02-26 02:14:13 +0000
+++ test/fots/CMakeLists.txt 2013-02-26 23:13:23 +0000
@@ -725,7 +725,6 @@
725EXPECTED_FOTS_FAILURE (prod-FunctionDecl function-decl-reserved-function-names-029 0)725EXPECTED_FOTS_FAILURE (prod-FunctionDecl function-decl-reserved-function-names-029 0)
726EXPECTED_FOTS_FAILURE (prod-FunctionDecl function-decl-reserved-function-names-031 0)726EXPECTED_FOTS_FAILURE (prod-FunctionDecl function-decl-reserved-function-names-031 0)
727EXPECTED_FOTS_FAILURE (prod-GroupByClause group-013 0)727EXPECTED_FOTS_FAILURE (prod-GroupByClause group-013 0)
728EXPECTED_FOTS_FAILURE (prod-GroupByClause group-014 0)
729EXPECTED_FOTS_FAILURE (prod-IfExpr CondExpr012 0)728EXPECTED_FOTS_FAILURE (prod-IfExpr CondExpr012 0)
730EXPECTED_FOTS_FAILURE (prod-IfExpr CondExpr017 0)729EXPECTED_FOTS_FAILURE (prod-IfExpr CondExpr017 0)
731EXPECTED_FOTS_FAILURE (prod-InstanceofExpr instanceof113 0)730EXPECTED_FOTS_FAILURE (prod-InstanceofExpr instanceof113 0)

Subscribers

People subscribed via source and target branches