]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sql/rdbms_depend/mysql/testdb_metadata.sql
Sync with HEAD
[openldap] / servers / slapd / back-sql / rdbms_depend / mysql / testdb_metadata.sql
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 --      delete_proc     a procedure to delete the entry; it takes "keytbl.keycol" of the row to be deleted
10 --      expect_return   a bitmap that marks whether create_proc (1) and delete_proc (2) return a value or not
11 insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return)
12 values (1,'inetOrgPerson','persons','id',"insert into persons (name) values ('');\n select last_insert_id();",NULL,0);
13
14 insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return)
15 values (2,'document','documents','id',NULL,NULL,0);
16
17 insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return)
18 values (3,'organization','institutes','id',NULL,NULL,0);
19
20 -- attributeType mappings: describe how an attributeType for a certain objectClass maps to the SQL data.
21 --      id              a unique number identifying the attribute       
22 --      oc_map_id       the value of "ldap_oc_mappings.id" that identifies the objectClass this attributeType is defined for
23 --      name            the name of the attributeType; it MUST match the name of an attributeType that is loaded in slapd's schema
24 --      sel_expr        the expression that is used to select this attribute (the "select <sel_expr> from ..." portion)
25 --      from_tbls       the expression that defines the table(s) this attribute is taken from (the "select ... from <from_tbls> where ..." portion)
26 --      join_where      the expression that defines the condition to select this attribute (the "select ... where <join_where> ..." portion)
27 --      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
28 --      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
29 --      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)
30 --      expect_return   a mask that marks whether add_proc (1) and delete_proc(2) are expected to return a value or not
31 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
32 values (1,1,'cn','persons.name','persons',NULL,NULL,NULL,3,0);
33
34 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
35 values (2,1,'telephoneNumber','phones.phone','persons,phones',
36         'phones.pers_id=persons.id',NULL,NULL,3,0);
37
38 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
39 values (3,1,'sn','persons.name','persons',NULL,NULL,NULL,3,0);
40
41 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
42 values (4,2,'description','documents.abstract','documents',NULL,NULL,NULL,3,0);
43
44 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
45 values (5,2,'documentTitle','documents.title','documents',NULL,NULL,NULL,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 (6,2,'documentAuthor','documentAuthor.dn','ldap_entries AS documentAuthor,documents,authors_docs,persons',
49         'documentAuthor.keyval=persons.id AND documentAuthor.oc_map_id=1 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',
50         NULL,NULL,3,0);
51
52 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
53 values (7,3,'o','institutes.name','institutes',NULL,NULL,NULL,3,0);
54
55 insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return)
56 values (8,1,'documentDN','ldap_entries.dn','ldap_entries,documents,authors_docs,persons',
57         'ldap_entries.keyval=documents.id AND ldap_entries.oc_map_id=2 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',
58         NULL,NULL,3,0);
59
60 -- entries mapping: each entry must appear in this table, with a unique DN rooted at the database naming context
61 --      id              a unique number > 0 identifying the entry
62 --      dn              the DN of the entry, in "pretty" form
63 --      oc_map_id       the "ldap_oc_mappings.id" of the main objectClass of this entry (view it as the structuralObjectClass)
64 --      parent          the "ldap_entries.id" of the parent of this objectClass; 0 if it is the "suffix" of the database
65 --      keyval          the value of the "keytbl.keycol" defined for this objectClass
66 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
67 values (1,'o=sql,c=RU',3,0,1);
68
69 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
70 values (2,'cn=Mitya Kovalev,o=sql,c=RU',1,1,1);
71
72 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
73 values (3,'cn=Torvlobnor Puzdoy,o=sql,c=RU',1,1,2);
74
75 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
76 values (4,'cn=Akakiy Zinberstein,o=sql,c=RU',1,1,3);
77
78 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
79 values (5,'documentTitle=book1,o=sql,c=RU',2,1,1);
80
81 insert into ldap_entries (id,dn,oc_map_id,parent,keyval)
82 values (6,'documentTitle=book2,o=sql,c=RU',2,1,2);
83         
84
85 -- objectClass mapping: entries that have multiple objectClass instances are listed here with the objectClass name (view them as auxiliary objectClass)
86 --      entry_id        the "ldap_entries.id" of the entry this objectClass value must be added
87 --      oc_name         the name of the objectClass; it MUST match the name of an objectClass that is loaded in slapd's schema
88 insert into ldap_entry_objclasses (entry_id,oc_name)
89 values (4,'referral');
90
91 -- referrals mapping: entries that should be treated as referrals are stored here
92 --      entry_id        the "ldap_entries.id" of the entry that should be treated as a referral
93 --      url             the URI of the referral
94 insert into ldap_referrals (entry_id,url)
95 values (4,'http://localhost');