summaryrefslogtreecommitdiff
path: root/src/db/crdel.src
blob: a1cbc0ed01e11804e23ec2007be23aab141c9d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*-
 * See the file LICENSE for redistribution information.
 *
 * Copyright (c) 1996, 2015 Oracle and/or its affiliates.  All rights reserved.
 *
 * $Id$
 */

DBPRIVATE
PREFIX	__crdel

INCLUDE #include "db_int.h"
INCLUDE #include "dbinc/crypto.h"
INCLUDE #include "dbinc/db_page.h"
INCLUDE #include "dbinc/db_dispatch.h"
INCLUDE #include "dbinc/db_am.h"
INCLUDE #include "dbinc/txn.h"
INCLUDE

/*
 * Metasub: log the creation of a subdatabase meta data page.
 *
 * fileid: identifies the file being acted upon.
 * pgno: page number on which to write this meta-data page
 * page: the actual meta-data page
 * lsn: lsn of the page.
 */
BEGIN metasub		42	142
DB	fileid		int32_t		ld
ARG	pgno		db_pgno_t	lu
PGDBT	page		DBT		s
POINTER	lsn		DB_LSN *	lu
END

/*
 * Inmem_create: Log the creation of an in-memory database.
 *
 * name: Name of the database
 * fid: File id of the database
 */
BEGIN	inmem_create	44	138
ARG	fileid	int32_t		ld
DBT	name	DBT		s
DBT	fid	DBT		s
ARG	pgsize	u_int32_t	lu
END

/*
 * Inmem_rename: Log the renaming of an in-memory only database.
 *
 * oldname: database's starting name
 * newname: database's ending name
 * fid: fileid
 */
BEGIN	inmem_rename	44	139
DBT	oldname		DBT		s
DBT	newname		DBT		s
DBT	fid		DBT		s
END

/*
 * Inmem_remove: Log the removal of an in-memory only database.
 *
 * name: database's ending name
 * fid: fileid
 */
BEGIN	inmem_remove	44	140
DBT	name		DBT		s
DBT	fid		DBT		s
END