1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Brian Aker
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include "plugin/information_schema_dictionary/dictionary.h"
25
using namespace drizzled;
28
InformationSchema("COLUMNS")
30
add_field("TABLE_CATALOG");
31
add_field("TABLE_SCHEMA");
32
add_field("TABLE_NAME");
33
add_field("COLUMN_NAME");
34
add_field("ORDINAL_POSITION");
35
add_field("COLUMN_DEFAULT");
36
add_field("IS_NULLABLE");
37
add_field("DATA_TYPE");
38
add_field("CHARACTER_MAXIMUM_LENGTH");
39
add_field("CHARACTER_OCTET_LENGTH");
40
add_field("NUMERIC_PRECISION");
41
add_field("NUMERIC_PRECISION_RADIX");
42
add_field("NUMERIC_SCALE");
43
add_field("DATETIME_PRECISION");
44
add_field("CHARACTER_SET_CATALOG");
45
add_field("CHARACTER_SET_SCHEMA");
46
add_field("CHARACTER_SET_NAME");
47
add_field("COLLATION_CATALOG");
48
add_field("COLLATION_SCHEMA");
49
add_field("COLLATION_NAME");
50
add_field("DOMAIN_CATALOG");
51
add_field("DOMAIN_SCHEMA");
52
add_field("DOMAIN_NAME");
56
void Columns::Generator::fill()
60
bool Columns::Generator::nextCore()
65
bool Columns::Generator::next()
67
while (not nextCore())
75
Columns::Generator::Generator(drizzled::Field **arg) :
76
InformationSchema::Generator(arg),
81
bool Columns::Generator::populate()