This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 1950 - Optimization and MinimalConformance:Expressions:FLWOR:LetExpr:LetExprWithout:LetExpr010
Summary: Optimization and MinimalConformance:Expressions:FLWOR:LetExpr:LetExprWithout...
Status: RESOLVED FIXED
Alias: None
Product: XML Query Test Suite
Classification: Unclassified
Component: XML Query Test Suite (show other bugs)
Version: 0.6.0
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Ravindranath (Ravi) Chennoju
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-01 18:17 UTC by Jonathan Robie
Modified: 2005-09-02 00:01 UTC (History)
0 users

See Also:


Attachments

Description Jonathan Robie 2005-09-01 18:17:09 UTC
MinimalConformance:Expressions:FLWOR:LetExpr:LetExprWithout:LetExpr010
 tries to trigger an error by defining

  let $x:=(1,2,3), $y:=$x+1
  return $x

 but an optimizing engine will discard the
 definition of $y as it is not used; a better query is

  let $x:=(1,2,3), $y:=$x+1
  return $y
Comment 1 Ravindranath (Ravi) Chennoju 2005-09-02 00:01:12 UTC
Fixed the test. Please verify the fix and CLOSE the bug.