Changeset: 441e7a4a1e2c for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=441e7a4a1e2c Added Files: sql/scripts/58_hot_snapshot.sql Modified Files: sql/scripts/Makefile.ag Branch: hot-snapshot Log Message:
Added the missing SQL script to reveal the hot_snapshot feature as an SQL function diffs (28 lines): diff --git a/sql/scripts/58_hot_snapshot.sql b/sql/scripts/58_hot_snapshot.sql new file mode 100644 --- /dev/null +++ b/sql/scripts/58_hot_snapshot.sql @@ -0,0 +1,12 @@ +-- 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 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. + +-- Hot snapshot + +-- Main command to create a hot snapshot +create procedure hot_snapshot(dir string) +external name sql.hot_snapshot; + 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 = { 45_uuid.sql \ 46_profiler.sql \ 51_sys_schema_extension.sql \ + 58_hot_snapshot.sql \ 60_wlcr.sql \ 75_storagemodel.sql \ 80_statistics.sql \ _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
