~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.cc

  • Committer: Andrew Hutchings
  • Date: 2010-09-26 08:33:47 UTC
  • mto: (1795.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: andrew@linuxjedi.co.uk-20100926083347-fzsc9e7w0j4u7bj1
Disable boost:po allow_guessing which was making some wrong assumptions

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#include "config.h"
17
17
#include <drizzled/error.h>
99
99
  Item::cleanup();
100
100
  /* Reset to the original values */
101
101
  used_tables_cache= 0;
102
 
  const_item_cache= true;
 
102
  const_item_cache= 1;
103
103
  with_null= 0;
104
104
 
105
105
  return;
118
118
void Item_row::update_used_tables()
119
119
{
120
120
  used_tables_cache= 0;
121
 
  const_item_cache= true;
 
121
  const_item_cache= 1;
122
122
  for (uint32_t i= 0; i < arg_count; i++)
123
123
  {
124
124
    items[i]->update_used_tables();
130
130
void Item_row::fix_after_pullout(Select_Lex *new_parent, Item **)
131
131
{
132
132
  used_tables_cache= 0;
133
 
  const_item_cache= true;
 
133
  const_item_cache= 1;
134
134
  for (uint32_t i= 0; i < arg_count; i++)
135
135
  {
136
136
    items[i]->fix_after_pullout(new_parent, &items[i]);