Changeset: 70050aa31e7f for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=70050aa31e7f
Modified Files:
        sql/server/sql_parser.y
Branch: sciql
Log Message:

determined by the testweb: index_term is not a string, it is of the type <l>


diffs (12 lines):

diff --git a/sql/server/sql_parser.y b/sql/server/sql_parser.y
--- a/sql/server/sql_parser.y
+++ b/sql/server/sql_parser.y
@@ -4252,7 +4252,7 @@
        }
        | '[' index_term ']'
        {
-               $$= append_string(L(), $2);
+               $$= append_list(L(), $2);
        }
 ;
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to