mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
6e79678dee
BitKeeper/deleted/.del-ha_isam.cc~4dce65904db2675e: Auto merged BitKeeper/deleted/.del-ha_isammrg.cc~dc682e4755d77a2e: Auto merged client/sql_string.cc: Auto merged client/sql_string.h: Auto merged include/my_global.h: Auto merged include/my_sys.h: Auto merged mysql-test/mysql-test-run.sh: Auto merged mysys/my_open.c: Auto merged mysys/raid.cc: Auto merged ndb/src/kernel/blocks/dbtux/Dbtux.hpp: Auto merged sql/field.cc: Auto merged sql/ha_berkeley.cc: Auto merged sql/ha_blackhole.cc: Auto merged sql/ha_heap.cc: Auto merged sql/ha_innodb.cc: Auto merged sql/ha_myisam.cc: Auto merged sql/ha_myisammrg.cc: Auto merged sql/ha_ndbcluster.cc: Auto merged sql/handler.cc: Auto merged sql/item.cc: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_func.cc: Auto merged sql/item_geofunc.cc: Auto merged sql/item_strfunc.cc: Auto merged sql/item_subselect.cc: Auto merged sql/item_sum.cc: Auto merged sql/item_timefunc.cc: Auto merged sql/item_uniq.cc: Auto merged sql/item_uniq.h: Auto merged sql/log_event.cc: Auto merged sql/log_event.h: Auto merged sql/procedure.cc: Auto merged sql/protocol.cc: Auto merged sql/protocol_cursor.cc: Auto merged sql/set_var.cc: Auto merged sql/sql_analyse.cc: Auto merged sql/sql_analyse.h: Auto merged sql/sql_lex.cc: Auto merged sql/sql_map.cc: Auto merged sql/sql_olap.cc: Auto merged sql/sql_string.cc: Auto merged sql/sql_udf.cc: Auto merged sql/tztime.cc: Auto merged sql/opt_range.cc: Manual merge sql/sql_parse.cc: Use select_lex pointer instead of lex->select_lex sql/sql_repl.cc: Function moved to log.cc, fix made there instead sql/sql_class.cc: Auto merged sql/sql_select.cc: Auto merged
61 lines
2 KiB
C++
61 lines
2 KiB
C++
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
/* Compability file ; This file only contains dummy functions */
|
|
|
|
#ifdef USE_PRAGMA_INTERFACE
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <queues.h>
|
|
|
|
class Item_func_unique_users :public Item_real_func
|
|
{
|
|
public:
|
|
Item_func_unique_users(Item *name_arg,int start,int end,List<Item> &list)
|
|
:Item_real_func(list) {}
|
|
double val_real() { DBUG_ASSERT(fixed == 1); return 0.0; }
|
|
void fix_length_and_dec() { decimals=0; max_length=6; }
|
|
void print(String *str) { str->append("0.0", 3); }
|
|
};
|
|
|
|
|
|
class Item_sum_unique_users :public Item_sum_num
|
|
{
|
|
public:
|
|
Item_sum_unique_users(Item *name_arg,int start,int end,Item *item_arg)
|
|
:Item_sum_num(item_arg) {}
|
|
Item_sum_unique_users(THD *thd, Item_sum_unique_users *item)
|
|
:Item_sum_num(thd, item) {}
|
|
double val_real() { DBUG_ASSERT(fixed == 1); return 0.0; }
|
|
enum Sumfunctype sum_func () const {return UNIQUE_USERS_FUNC;}
|
|
void clear() {}
|
|
bool add() { return 0; }
|
|
void reset_field() {}
|
|
void update_field() {}
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
|
{
|
|
DBUG_ASSERT(fixed == 0);
|
|
fixed= 1;
|
|
return FALSE;
|
|
}
|
|
Item *copy_or_same(THD* thd)
|
|
{
|
|
return new Item_sum_unique_users(thd, this);
|
|
}
|
|
void print(String *str) { str->append("0.0", 3); }
|
|
Field *create_tmp_field(bool group, TABLE *table, uint convert_blob_length);
|
|
};
|