From 00c29e543cad41be04da3c74c33cbe8f1f47d3b9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 2 Mar 2006 09:38:41 +0000 Subject: [PATCH] BNF for nested queries. --- src/cqlstd.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cqlstd.y b/src/cqlstd.y index 59b9ff8..cd2238d 100644 --- a/src/cqlstd.y +++ b/src/cqlstd.y @@ -1,4 +1,4 @@ -/* $Id: cqlstd.y,v 1.2 2006-03-02 09:37:35 adam Exp $ +/* $Id: cqlstd.y,v 1.3 2006-03-02 09:38:41 adam Exp $ YACC CQL grammar taken verbatim from the official spec. We don't use that in YAZ but I don't know of a better place to put it. */ @@ -23,7 +23,7 @@ booleanGroup: boolean | boolean modifierList; boolean : AND | OR | NOT | PROX ; searchClause : '(' cqlQuery ')' - | index relation searchTerm + | index relation searchClause | searchTerm ; -- 1.7.10.4