~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/ha_xtsys.h

  • Committer: Brian Aker
  • Date: 2010-05-26 21:49:18 UTC
  • mto: This revision was merged to the branch mainline in revision 1568.
  • Revision ID: brian@gaz-20100526214918-8kdibq48e9lnyr6t
This fixes bug 586009, increases the size of the log files so that the UNION
test doesn't hit Innodb's default limit. Increases the size of the initial
Innodb data file, and fixes one case where an empty string on error was
causing a crash on OSX.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
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
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
 *
19
19
 * Paul McCullagh
20
20
 *
59
59
 
60
60
public:
61
61
#ifdef DRIZZLED
62
 
        ha_xtsys(handlerton *hton, Table& table_arg);
 
62
        ha_xtsys(handlerton *hton, TableShare& table_arg);
63
63
#else
64
64
        ha_xtsys(handlerton *hton, TABLE_SHARE *table_arg);
65
65
#endif
85
85
 
86
86
        int             open(const char *name, int mode, uint test_if_locked);
87
87
        int             close(void);
88
 
#ifdef DRIZZLED
89
88
        int             doStartTableScan(bool scan);
90
 
#else
91
 
        int             rnd_init(bool scan);
92
 
#endif
93
89
        int             rnd_next(byte *buf);
94
90
        int             rnd_pos(byte * buf, byte *pos);
95
91
        void    position(const byte *record);