~drizzle-developers/ubuntu/karmic/drizzle/ppa

« back to all changes in this revision

Viewing changes to plugin/innobase/rem/rem0cmp.c

  • Committer: Monty Taylor
  • Date: 2010-11-24 18:44:57 UTC
  • mfrom: (1308.1.31 trunk)
  • Revision ID: mordred@inaugust.com-20101124184457-qd6jvoe2wgnvl3yq
Tags: 2010.11.04-0ubuntu1~karmic1
* New upstream release.
* Turn off -Werror for packaging builds. (Closes: #602662)

Show diffs side-by-side

added added

removed removed

Lines of Context:
705
705
        const rec_t*            rec2,   /*!< in: physical record */
706
706
        const ulint*            offsets1,/*!< in: rec_get_offsets(rec1, ...) */
707
707
        const ulint*            offsets2,/*!< in: rec_get_offsets(rec2, ...) */
708
 
        const dict_index_t*     index)  /*!< in: data dictionary index */
 
708
        const dict_index_t*     index,  /*!< in: data dictionary index */
 
709
        ibool*                  null_eq)/*!< out: set to TRUE if
 
710
                                        found matching null values */
709
711
{
710
712
        ulint           rec1_f_len;     /*!< length of current field in rec1 */
711
713
        const byte*     rec1_b_ptr;     /*!< pointer to the current byte
752
754
                    || rec2_f_len == UNIV_SQL_NULL) {
753
755
 
754
756
                        if (rec1_f_len == rec2_f_len) {
 
757
                                if (null_eq) {
 
758
                                        *null_eq = TRUE;
 
759
                                }
755
760
 
756
761
                                goto next_field;
757
762