~ttx/openldap/lucid-gssapi-495418

« back to all changes in this revision

Viewing changes to servers/slapd/back-sql/rdbms_depend/ibmdb2/testdb_metadata.sql

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2008-07-10 14:45:49 UTC
  • Revision ID: james.westby@ubuntu.com-20080710144549-wck73med0e72gfyo
Tags: upstream-2.4.10
ImportĀ upstreamĀ versionĀ 2.4.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--mappings 
 
2
 
 
3
-- objectClass mappings: these may be viewed as structuralObjectClass, the ones that are used to decide how to build an entry
 
4
--      id              a unique number identifying the objectClass
 
5
--      name            the name of the objectClass; it MUST match the name of an objectClass that is loaded in slapd's schema
 
6
--      keytbl          the name of the table that is referenced for the primary key of an entry
 
7
--      keycol          the name of the column in "keytbl" that contains the primary key of an entry; the pair "keytbl.keycol" uniquely identifies an entry of objectClass "id"
 
8
--      create_proc     a procedure to create the entry
 
9
--      create_keyval   a query that returns the id of the last inserted entry
 
10
--      delete_proc     a procedure to delete the entry; it takes "keytbl.keycol" of the row to be deleted
 
11
--      expect_return   a bitmap that marks whether create_proc (1) and delete_proc (2) return a value or not
 
12
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,create_keyval,delete_proc,expect_return)
 
13
values (1,'inetOrgPerson','persons','id','INSERT INTO persons (id,name,surname) VALUES ((SELECT max(id)+1 FROM persons),'''','''')',
 
14
        'SELECT max(id) FROM persons','DELETE FROM persons WHERE id=?',0);
 
15
 
 
16
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,create_keyval,delete_proc,expect_return)
 
17
values (2,'document','documents','id','INSERT INTO documents (id,title,abstract) VALUES ((SELECT max(id)+1 FROM documents),'''','''')',
 
18
        'SELECT max(id) FROM documents','DELETE FROM documents WHERE id=?',0);
 
19
 
 
20
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,create_keyval,delete_proc,expect_return)
 
21
values (3,'organization','institutes','id','INSERT INTO institutes (id,name) VALUES ((SELECT max(id)+1 FROM institutes),'''')',
 
22
        'SELECT max(id) FROM institutes','DELETE FROM institutes WHERE id=?',0);
 
23
 
 
24
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,create_keyval,delete_proc,expect_return)
 
25
values (4,'referral','referrals','id','INSERT INTO referrals (id,name,url) VALUES ((SELECT max(id)+1 FROM referrals),'''','''')',
 
26
        'SELECT max(id) FROM referrals','DELETE FROM referrals WHERE id=?',0);
 
27
 
 
28
-- attributeType mappings: describe how an attributeType for a certain objectClass maps to the SQL data.
 
29
--      id              a unique number identifying the attribute       
 
30
--      oc_map_id       the value of "ldap_oc_mappings.id" that identifies the objectClass this attributeType is defined for
 
31
--      name            the name of the attributeType; it MUST match the name of an attributeType that is loaded in slapd's schema
 
32
--      sel_expr        the expression that is used to select this attribute (the "select <sel_expr> from ..." portion)
 
33
--      from_tbls       the expression that defines the table(s) this attribute is taken from (the "select ... from <from_tbls> where ..." portion)
 
34
--      join_where      the expression that defines the condition to select this attribute (the "select ... where <join_where> ..." portion)
 
35
--      add_proc        a procedure to insert the attribute; it takes the value of the attribute that is added, and the "keytbl.keycol" of the entry it is associated to
 
36
--      delete_proc     a procedure to delete the attribute; it takes the value of the attribute that is added, and the "keytbl.keycol" of the entry it is associated to
 
37
--      param_order     a mask that marks if the "keytbl.keycol" value comes before or after the value in add_proc (1) and delete_proc (2)
 
38
--      expect_return   a mask that marks whether add_proc (1) and delete_proc(2) are expected to return a value or not
 
39
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
40
values (1,1,'cn','persons.name||'' ''||persons.surname','persons',NULL,NULL,NULL,3,0);
 
41
 
 
42
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
43
values (2,1,'telephoneNumber','phones.phone','persons,phones',
 
44
        'phones.pers_id=persons.id','INSERT INTO phones (id,phone,pers_id) VALUES ((SELECT max(id)+1 FROM phones),?,?)',
 
45
        'DELETE FROM phones WHERE phone=? AND pers_id=?',3,0);
 
46
 
 
47
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
48
values (4,1,'givenName','persons.name','persons',NULL,'UPDATE persons SET name=? WHERE id=?',NULL,3,0);
 
49
 
 
50
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
51
values (3,1,'sn','persons.surname','persons',NULL,'UPDATE persons SET surname=? WHERE id=?',NULL,3,0);
 
52
 
 
53
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
54
values (5,1,'userPassword','persons.password','persons','persons.password IS NOT NULL','UPDATE persons SET password=? WHERE id=?',
 
55
        'UPDATE persons SET password=NULL WHERE password=? AND id=?',3,0);
 
56
 
 
57
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
58
values (6,1,'seeAlso','seeAlso.dn','ldap_entries AS seeAlso,documents,authors_docs,persons',
 
59
        'seeAlso.keyval=documents.id AND seeAlso.oc_map_id=2 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',
 
60
        NULL,NULL,3,0);
 
61
 
 
62
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
63
values (7,2,'description','documents.abstract','documents',NULL,'UPDATE documents SET abstract=? WHERE id=?',NULL,3,0);
 
64
 
 
65
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
66
values (8,2,'documentTitle','documents.title','documents',NULL,'UPDATE documents SET title=? WHERE id=?',NULL,3,0);
 
67
 
 
68
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
69
values (9,2,'documentAuthor','documentAuthor.dn','ldap_entries AS documentAuthor,documents,authors_docs,persons',
 
70
        'documentAuthor.keyval=persons.id AND documentAuthor.oc_map_id=1 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',
 
71
        'INSERT INTO authors_docs (pers_id,doc_id) VALUES ((SELECT keyval FROM ldap_entries WHERE ucase(cast(? AS VARCHAR(255)))=ucase(dn)),?)',
 
72
        'DELETE FROM authors_docs WHERE pers_id=(SELECT keyval FROM ldap_entries WHERE ucase(cast(? AS VARCHAR(255))=ucase(dn)) AND doc_id=?',3,0);
 
73
 
 
74
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
75
values (10,2,'documentIdentifier','''document ''||rtrim(cast(documents.id AS CHAR(16)))','documents',NULL,NULL,NULL,3,0);
 
76
 
 
77
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
78
values (11,3,'o','institutes.name','institutes',NULL,'UPDATE institutes SET name=? WHERE id=?',NULL,3,0);
 
79
 
 
80
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
81
values (12,3,'dc','lcase(institutes.name)','institutes,ldap_entries AS dcObject,ldap_entry_objclasses as auxObjectClass',
 
82
        'institutes.id=dcObject.keyval AND dcObject.oc_map_id=3 AND dcObject.id=auxObjectClass.entry_id AND auxObjectClass.oc_name=''dcObject''',
 
83
        NULL,NULL,3,0);
 
84
 
 
85
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
86
values (13,4,'ou','referrals.name','referrals',NULL,'UPDATE referrals SET name=? WHERE id=?',NULL,3,0);
 
87
 
 
88
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
 
89
values (14,4,'ref','referrals.url','referrals',NULL,'UPDATE referrals SET url=? WHERE id=?',NULL,3,0);
 
90
 
 
91
-- entries mapping: each entry must appear in this table, with a unique DN rooted at the database naming context
 
92
--      id              a unique number > 0 identifying the entry
 
93
--      dn              the DN of the entry, in "pretty" form
 
94
--      oc_map_id       the "ldap_oc_mappings.id" of the main objectClass of this entry (view it as the structuralObjectClass)
 
95
--      parent          the "ldap_entries.id" of the parent of this objectClass; 0 if it is the "suffix" of the database
 
96
--      keyval          the value of the "keytbl.keycol" defined for this objectClass
 
97
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
98
values (1,'dc=example,dc=com',3,0,1);
 
99
 
 
100
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
101
values (2,'cn=Mitya Kovalev,dc=example,dc=com',1,1,1);
 
102
 
 
103
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
104
values (3,'cn=Torvlobnor Puzdoy,dc=example,dc=com',1,1,2);
 
105
 
 
106
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
107
values (4,'cn=Akakiy Zinberstein,dc=example,dc=com',1,1,3);
 
108
 
 
109
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
110
values (5,'documentTitle=book1,dc=example,dc=com',2,1,1);
 
111
 
 
112
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
113
values (6,'documentTitle=book2,dc=example,dc=com',2,1,2);
 
114
 
 
115
insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
 
116
values (7,'ou=Referral,dc=example,dc=com',4,1,1);
 
117
 
 
118
-- objectClass mapping: entries that have multiple objectClass instances are listed here with the objectClass name (view them as auxiliary objectClass)
 
119
--      entry_id        the "ldap_entries.id" of the entry this objectClass value must be added
 
120
--      oc_name         the name of the objectClass; it MUST match the name of an objectClass that is loaded in slapd's schema
 
121
insert into ldap_entry_objclasses (entry_id,oc_name) values (1,'dcObject');
 
122
 
 
123
insert into ldap_entry_objclasses (entry_id,oc_name) values (7,'extensibleObject');