[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-kawa] [bug #29029] REPL FLWOR expects return on same line as order
From: |
anonymous |
Subject: |
[Bug-kawa] [bug #29029] REPL FLWOR expects return on same line as order by |
Date: |
Mon, 01 Mar 2010 07:28:53 +0000 |
User-agent: |
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 |
URL:
<http://savannah.gnu.org/bugs/?29029>
Summary: REPL FLWOR expects return on same line as order by
Project: Kawa
Submitted by: None
Submitted on: Mon 01 Mar 2010 07:28:52 AM UTC
Category: None
Severity: 3 - Normal
Item Group: None
Status: None
Privacy: Public
Assigned to: None
Open/Closed: Open
Discussion Lock: Any
_______________________________________________________
Details:
Using the Qexo xquery repl the following occurs with order by:
krukow:~/workspace/XQuery$ rlwrap java -jar kawa-1.9.1.jar --xquery
(: 1 :) for $r in (2,1)
(: 2f:) order by $r
(: 3 :) return $r
/dev/stdin:3:1: expected 'return' clause [XPST0003]
If the return-part is included in the same line as order by - it works:
(: 4 :) for $r in (2,1)
(: 5f:) order by $r return $r
1 2
I've been in contact with Per Bothner who has already provided a fix: so this
is fixed in trunk.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?29029>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
- [Bug-kawa] [bug #29029] REPL FLWOR expects return on same line as order by,
anonymous <=