~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/innobase/eval/eval0eval.c

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-21 16:39:40 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20101221163940-c1pfo1jjvx7909xq
Tags: 2010.12.06-0ubuntu1
* New upstream release.
* Added libaio-dev build depend for InnoDB.
* Removed libpcre patch - applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1997, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (C) 1997, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
384
384
/*==========*/
385
385
        func_node_t*    func_node)      /*!< in: function node */
386
386
{
387
 
        que_node_t*     arg1;
388
 
        que_node_t*     arg2;
389
387
        sym_node_t*     cursor;
390
388
        sel_node_t*     sel_node;
391
389
        ibool           ibool_val;
392
390
 
393
 
        arg1 = func_node->args;
394
 
        arg2 = que_node_get_next(arg1);
395
 
 
396
391
        ut_ad(func_node->func == PARS_NOTFOUND_TOKEN);
397
392
 
398
 
        cursor = arg1;
 
393
        cursor = func_node->args;
399
394
 
400
395
        ut_ad(que_node_get_type(cursor) == QUE_NODE_SYMBOL);
401
396