]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sql/other.c
CHANGES:
[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
21 backsql_compare(
22         BackendDB       *bd,
23         Connection      *conn,
24         Operation       *op,
25         struct berval   *dn,
26         struct berval   *ndn,
27         AttributeAssertion *ava )
28 {
29         Debug( LDAP_DEBUG_TRACE, "==>backsql_compare() - not implemented\n",
30                         0, 0, 0 );
31         return 1;
32 }
33
34 int
35 backsql_abandon(
36         BackendDB       *be,
37         Connection      *conn, 
38         Operation       *op, 
39         int             msgid )
40 {
41         Debug( LDAP_DEBUG_TRACE, "==>backsql_abandon()\n", 0, 0, 0 );
42         Debug( LDAP_DEBUG_TRACE, "<==backsql_abandon()\n", 0, 0, 0 );
43         return 0;
44 }
45
46 #endif /* SLAPD_SQL */
47