~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.cc

  • Committer: Monty Taylor
  • Date: 2011-03-15 16:10:15 UTC
  • mfrom: (2235.3.1 staging)
  • Revision ID: mordred@inaugust.com-20110315161015-qceggirmf3cct7cw
Merge in libdrizzle install changes, doc changes and some header
refactoring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
 
20
#include <config.h>
21
21
 
22
22
#include <drizzled/current_session.h>
23
23
#include <drizzled/gettext.h>
26
26
#include <drizzled/session.h>
27
27
#include <drizzled/show.h>
28
28
#include <drizzled/table_function_container.h>
 
29
#include <drizzled/sql_lex.h>
29
30
 
30
31
#include <vector>
31
32
 
32
 
namespace drizzled
33
 
{
 
33
namespace drizzled {
34
34
 
35
35
static TableFunctionContainer table_functions;
36
36
 
40
40
  proto.set_type(drizzled::message::Table::FUNCTION);
41
41
  proto.set_creation_timestamp(0);
42
42
  proto.set_update_timestamp(0);
 
43
  message::set_is_replicated(proto, false);
43
44
}
44
45
 
45
46
bool plugin::TableFunction::addPlugin(plugin::TableFunction *tool)
46
47
{
47
48
  assert(tool != NULL);
48
 
  table_functions.addFunction(tool); 
 
49
  table_functions.addFunction(tool);
49
50
  return false;
50
51
}
51
52
 
60
61
  table_functions.getNames(arg, set_of_names);
61
62
}
62
63
 
 
64
LEX& plugin::TableFunction::Generator::lex()
 
65
{
 
66
        return getSession().lex();
 
67
}
 
68
 
 
69
statement::Statement& plugin::TableFunction::Generator::statement()
 
70
{
 
71
        return *lex().statement;
 
72
}
 
73
 
63
74
plugin::TableFunction::Generator *plugin::TableFunction::generator(Field **arg)
64
75
{
65
76
  return new Generator(arg);
95
106
  field_options->set_default_null(is_default_null);
96
107
  field_constraints->set_is_notnull(not is_default_null);
97
108
 
98
 
  switch (type) 
 
109
  switch (type)
99
110
  {
100
111
  case TableFunction::STRING:
101
112
    {
222
233
 
223
234
bool plugin::TableFunction::Generator::isWild(const std::string &predicate)
224
235
{
225
 
  if (not getSession().lex->wild)
 
236
  if (not lex().wild)
226
237
    return false;
227
238
 
228
239
  bool match= wild_case_compare(system_charset_info,
229
240
                                predicate.c_str(),
230
 
                                getSession().lex->wild->ptr());
 
241
                                lex().wild->ptr());
231
242
 
232
243
  return match;
233
244
}