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

« back to all changes in this revision

Viewing changes to plugin/innodb_memcached/innodb_memcache/cache-src/default_engine.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
/*****************************************************************************
 
2
This file was modified by Oracle on 2015/02/05
 
3
Modifications copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
 
4
*****************************************************************************/
 
5
 
1
6
#include "config.h"
2
7
 
3
8
#include <stdlib.h>
270
275
   }
271
276
 
272
277
   hash_item *it;
273
 
   it = item_alloc(engine, key, nkey, flags, exptime, nbytes, cookie);
 
278
   it = item_alloc(engine, key, nkey, flags, engine->server.core->realtime(exptime),
 
279
                   nbytes, cookie);
274
280
 
275
281
   if (it != NULL) {
276
282
      *item = it;