]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sql/other.c
Updated for schemas.
[openldap] / servers / slapd / back-sql / other.c
1 /*
2  *       Copyright 1999, Dmitry Kovalev <mit@openldap.org>, All rights reserved.
3  *
4  *       Redistribution and use in source and binary forms are permitted only
5  *       as authorized by the OpenLDAP Public License.  A copy of this
6  *       license is available at http://www.OpenLDAP.org/license.html or
7  *       in file LICENSE in the top-level directory of the distribution.
8  */
9
10 #include "portable.h"
11
12 #ifdef SLAPD_SQL
13
14 #include <stdio.h>
15 #include <sys/types.h>
16 #include "slap.h"
17 #include "back-sql.h"
18 #include "sql-wrap.h"
19
20 int backsql_dummy()
21 {
22  return 0;
23 }
24
25 int backsql_compare(BackendDB *be,Connection *conn,Operation *op,
26         const char *dn,const char *ndn,Ava *ava)
27 {
28  Debug(LDAP_DEBUG_TRACE,"==>backsql_compare()\n",0,0,0);
29  return 0;
30 }
31
32 int backsql_abandon( BackendDB *be,
33         Connection *conn, Operation *op, int msgid )
34 {
35  Debug(LDAP_DEBUG_TRACE,"==>backsql_abandon()\n",0,0,0);
36  Debug(LDAP_DEBUG_TRACE,"<==backsql_abandon()\n",0,0,0);
37  return 0;
38 }
39
40 #endif /* SLAPD_SQL */