~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to mysys/psi_noop.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 
1
/* Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
2
2
 
3
3
  This program is free software; you can redistribute it and/or modify
4
4
  it under the terms of the GNU General Public License as published by
629
629
  return NULL;
630
630
}
631
631
 
632
 
static PSI_digest_locker*
633
 
digest_add_token_noop(PSI_digest_locker *locker NNN,
634
 
                      uint token NNN,
635
 
                      struct OPAQUE_LEX_YYSTYPE *yylval NNN)
 
632
void
 
633
digest_end_noop(PSI_digest_locker *locker NNN,
 
634
                const struct sql_digest_storage *digest NNN)
636
635
{
637
 
  return NULL;
 
636
  return;
638
637
}
639
638
 
640
639
static int
742
741
  set_socket_info_noop,
743
742
  set_socket_thread_owner_noop,
744
743
  digest_start_noop,
745
 
  digest_add_token_noop,
 
744
  digest_end_noop,
746
745
  set_thread_connect_attrs_noop
747
746
};
748
747