Changeset: 7e6c22deddf9 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7e6c22deddf9 Added Files: sql/scripts/85_htm.sql Modified Files: sql/scripts/Makefile.ag Branch: HTM Log Message:
Add SQL procedures for the HTM pre/persist-commit diffs (27 lines): diff --git a/sql/scripts/85_htm.sql b/sql/scripts/85_htm.sql new file mode 100644 --- /dev/null +++ b/sql/scripts/85_htm.sql @@ -0,0 +1,11 @@ +-- This Source Code Form is subject to the terms of the Mozilla Public +-- License, v. 2.0. If a copy of the MPL was not distributed with this +-- file, You can obtain one at http://mozilla.org/MPL/2.0/. +-- +-- Copyright 2008-2015 MonetDB B.V. + +CREATE PROCEDURE precommit(id bigint) + EXTERNAL name sql.precommit; + +CREATE PROCEDURE persistcommit(id bigint) + EXTERNAL name sql.persistcommit; diff --git a/sql/scripts/Makefile.ag b/sql/scripts/Makefile.ag --- a/sql/scripts/Makefile.ag +++ b/sql/scripts/Makefile.ag @@ -32,6 +32,7 @@ headers_sql = { 51_sys_schema_extension.sql \ 75_storagemodel.sql \ 80_statistics.sql \ + 85_htm.sql \ 99_system.sql } _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
