~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/row0upd.h

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 1996, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1996, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
126
126
void
127
127
row_upd_index_entry_sys_field(
128
128
/*==========================*/
129
 
        dtuple_t*       entry,  /*!< in/out: index entry, where the memory
130
 
                                buffers for sys fields are already allocated:
 
129
        const dtuple_t* entry,  /*!< in: index entry, where the memory buffers
 
130
                                for sys fields are already allocated:
131
131
                                the function just copies the new values to
132
132
                                them */
133
133
        dict_index_t*   index,  /*!< in: clustered index */
134
134
        ulint           type,   /*!< in: DATA_TRX_ID or DATA_ROLL_PTR */
135
 
        ib_uint64_t     val);   /*!< in: value to write */
 
135
        dulint          val);   /*!< in: value to write */
136
136
/*********************************************************************//**
137
137
Creates an update node for a query graph.
138
138
@return own: update node */
167
167
        const upd_t*    update);/*!< in: update vector */
168
168
#endif /* !UNIV_HOTBACKUP */
169
169
/***********************************************************//**
170
 
Replaces the new column values stored in the update vector to the
171
 
record given. No field size changes are allowed. This function is
172
 
usually invoked on a clustered index. The only use case for a
173
 
secondary index is row_ins_sec_index_entry_by_modify() or its
174
 
counterpart in ibuf_insert_to_index_page(). */
 
170
Replaces the new column values stored in the update vector to the record
 
171
given. No field size changes are allowed. */
175
172
UNIV_INTERN
176
173
void
177
174
row_upd_rec_in_place(