~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/discover_ms.h

  • Committer: Mark Atwood
  • Date: 2011-12-20 02:32:53 UTC
  • mfrom: (2469.1.1 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111220023253-bvu0kr14kwsdvz7g
mergeĀ lp:~brianaker/drizzle/deprecate-pbms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase MS
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 *  Created by Leslie on 8/27/08.
20
 
 *
21
 
 */
22
 
 
23
 
#pragma once
24
 
#ifndef __DISCOVER_MS_H__
25
 
#define __DISCOVER_MS_H__
26
 
#include "cslib/CSConfig.h"
27
 
 
28
 
#define UTF8_CHARSET    my_charset_utf8_general_ci
29
 
 
30
 
/*
31
 
 * ---------------------------------------------------------------
32
 
 * TABLE DISCOVERY HANDLER
33
 
 */
34
 
#define NOVAL 0
35
 
 
36
 
typedef struct dt_field_info
37
 
        {
38
 
        /** 
39
 
        This is used as column name. 
40
 
        */
41
 
        const char* field_name;
42
 
        /**
43
 
        For string-type columns, this is the maximum number of
44
 
        characters. For numeric data this can be NULL.
45
 
        */
46
 
        uint field_length;
47
 
 
48
 
        /**
49
 
        For decimal  columns, this is the maximum number of
50
 
        digits after the decimal. For other data this can be NULL.
51
 
        */
52
 
        char* field_decimal_length;
53
 
        /**
54
 
        This denotes data type for the column. For the most part, there seems to
55
 
        be one entry in the enum for each SQL data type, although there seem to
56
 
        be a number of additional entries in the enum.
57
 
        */
58
 
#ifdef DRIZZLED
59
 
        enum drizzled::enum_field_types field_type;
60
 
#else
61
 
        enum enum_field_types field_type;
62
 
#endif
63
 
 
64
 
        /**
65
 
        This is the charater set for non numeric data types including blob data.
66
 
        */
67
 
#ifdef DRIZZLED
68
 
        const drizzled::charset_info_st *field_charset;
69
 
#else
70
 
        CHARSET_INFO *field_charset;
71
 
#endif
72
 
        uint field_flags;        // Field atributes(maybe_null, signed, unsigned etc.)
73
 
        const char* comment;
74
 
} DT_FIELD_INFO;
75
 
 
76
 
typedef struct dt_key_info
77
 
{
78
 
        const char*     key_name;
79
 
        uint            key_type; /* PRI_KEY_FLAG, UNIQUE_KEY_FLAG, MULTIPLE_KEY_FLAG */
80
 
        const char*     key_columns[8]; // The size of this can be set to what ever you need.
81
 
} DT_KEY_INFO;
82
 
 
83
 
typedef struct internal_table_info {
84
 
        bool                    is_pbms;
85
 
        const char              *name;
86
 
        DT_FIELD_INFO   *info;
87
 
        DT_KEY_INFO             *keys;
88
 
} INTERRNAL_TABLE_INFO;
89
 
 
90
 
 
91
 
#ifndef DRIZZLED
92
 
int ms_create_table_frm(handlerton *hton, THD* thd, const char *db, const char *name, DT_FIELD_INFO *info, DT_KEY_INFO *keys, uchar **frmblob, size_t *frmlen);
93
 
#endif
94
 
 
95
 
#endif
96