Imported Upstream version 5.3.21
[platform/upstream/libdb.git] / lang / sql / adapter / pcache.c
1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2010, 2012 Oracle and/or its affiliates.  All rights reserved.
5  */
6
7 #include "sqliteInt.h"
8
9 int sqlite3PcacheInitialize(void){ return SQLITE_OK; }
10 void sqlite3PcacheShutdown(void){}
11 void sqlite3PCacheBufferSetup(void *p, int sz, int n) {}
12 void sqlite3PCacheSetDefault(void){}
13 #ifdef SQLITE_TEST
14 void sqlite3PcacheStats(int *a,int *b,int *c,int *d) {}
15 #endif