projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
173f78f
)
RPN to CQL: no use attr is treated as serverChoice
author
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 19 Aug 2009 18:56:58 +0000
(20:56 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 19 Aug 2009 18:56:58 +0000
(20:56 +0200)
src/rpn2cql.c
patch
|
blob
|
history
diff --git
a/src/rpn2cql.c
b/src/rpn2cql.c
index
b8debea
..
81ca550
100644
(file)
--- a/
src/rpn2cql.c
+++ b/
src/rpn2cql.c
@@
-21,6
+21,7
@@
static const char *lookup_index_from_string_attr(Z_AttributeList *attributes)
{
int j;
+ int server_choice = 1;
for (j = 0; j < attributes->num_attributes; j++)
{
Z_AttributeElement *ae = attributes->attributes[j];
@@
-37,8
+38,11
@@
static const char *lookup_index_from_string_attr(Z_AttributeList *attributes)
return son->u.string;
}
}
+ server_choice = 0; /* not serverChoice because we have use attr */
}
}
+ if (server_choice)
+ return "cql.serverChoice";
return 0;
}