From a2c7ff7147f17ad07e860304f529e17ca56a8117 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Fri, 19 Jul 2024 09:32:21 +0100 Subject: [PATCH] Copyright notice updates. --- Makefile | 2 +- dbgcomm.c | 2 +- dbgcomm.h | 2 +- globalbp.h | 2 +- pldbgapi--1.0--1.1.sql | 9 +++++++++ pldbgapi--1.1.sql | 4 ++-- pldbgapi--unpackaged--1.1.sql | 9 +++++++++ pldbgapi.c | 2 +- pldebugger.h | 12 ++++++++++++ pldebugger.proj | 12 ++++++++++++ plugin_debugger.c | 2 +- settings.projinc | 10 ++++++++-- uninstall_pldbgapi.sql | 7 +++++++ 13 files changed, 65 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 0d0d82e..f5f9be1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ ## interpreter plugin, and a set of functions that form an SQL interface ## to the PL/pgSQL debugger. ## -## Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. +## Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. ## ## Licensed under the Artistic License v2.0, see ## https://opensource.org/licenses/artistic-license-2.0 diff --git a/dbgcomm.c b/dbgcomm.c index c8afa12..7ea75a8 100644 --- a/dbgcomm.c +++ b/dbgcomm.c @@ -3,7 +3,7 @@ * * This file contains some helper functions for the proxy - target * communication. - * Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. * * Licensed under the Artistic License v2.0, see * https://opensource.org/licenses/artistic-license-2.0 diff --git a/dbgcomm.h b/dbgcomm.h index 633cff3..e66ffc3 100644 --- a/dbgcomm.h +++ b/dbgcomm.h @@ -4,7 +4,7 @@ * This file defines the functions used to establish connections between * the debugging proxy and target backend. * - * Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. * * Licensed under the Artistic License v2.0, see * https://opensource.org/licenses/artistic-license-2.0 diff --git a/globalbp.h b/globalbp.h index ed12781..b9ca335 100644 --- a/globalbp.h +++ b/globalbp.h @@ -4,7 +4,7 @@ * This file defines the (shared-memory) structures used by the PL debugger * to keep track of global breakpoints. * - * Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. * * Licensed under the Artistic License v2.0, see * https://opensource.org/licenses/artistic-license-2.0 diff --git a/pldbgapi--1.0--1.1.sql b/pldbgapi--1.0--1.1.sql index 2e3198f..01b7eba 100644 --- a/pldbgapi--1.0--1.1.sql +++ b/pldbgapi--1.0--1.1.sql @@ -1,3 +1,12 @@ +-- pldbgapi--1.0--1.1.sql +-- This script upgrades the API from version 1.0 to 1.1. +-- +-- Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. +-- +-- Licensed under the Artistic License v2.0, see +-- https://opensource.org/licenses/artistic-license-2.0 +-- for full details + DO $do$ declare diff --git a/pldbgapi--1.1.sql b/pldbgapi--1.1.sql index 55d9a4b..e785b0c 100644 --- a/pldbgapi--1.1.sql +++ b/pldbgapi--1.1.sql @@ -1,7 +1,7 @@ --- pldbg.sql +-- pldbgapi--1.1.sql -- This script creates the data types and functions defined by the PL debugger API -- --- Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. +-- Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. -- -- Licensed under the Artistic License v2.0, see -- https://opensource.org/licenses/artistic-license-2.0 diff --git a/pldbgapi--unpackaged--1.1.sql b/pldbgapi--unpackaged--1.1.sql index ca2cd96..e55696e 100644 --- a/pldbgapi--unpackaged--1.1.sql +++ b/pldbgapi--unpackaged--1.1.sql @@ -1,3 +1,12 @@ +-- pldbgapi--unpackaged--1.1.sql +-- This script converts an existing API installation to an extension. +-- +-- Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. +-- +-- Licensed under the Artistic License v2.0, see +-- https://opensource.org/licenses/artistic-license-2.0 +-- for full details + ALTER EXTENSION pldbgapi ADD TYPE breakpoint; ALTER EXTENSION pldbgapi ADD TYPE frame; diff --git a/pldbgapi.c b/pldbgapi.c index 3a05260..cb3461c 100644 --- a/pldbgapi.c +++ b/pldbgapi.c @@ -81,7 +81,7 @@ * likely to encounter an error when you call pldbg_continue() and the * target process runs to completion (without hitting another breakpoint) * - * Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. * * Licensed under the Artistic License v2.0, see * https://opensource.org/licenses/artistic-license-2.0 diff --git a/pldebugger.h b/pldebugger.h index 71c464f..5eea7ea 100644 --- a/pldebugger.h +++ b/pldebugger.h @@ -1,3 +1,15 @@ +/* + * pldebugger.h - + * + * Main debugger header + * + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. + * + * Licensed under the Artistic License v2.0, see + * https://opensource.org/licenses/artistic-license-2.0 + * for full details + */ + #ifndef PLDEBUGGER_H #define PLDEBUGGER_H diff --git a/pldebugger.proj b/pldebugger.proj index 2c9a737..8ffee06 100644 --- a/pldebugger.proj +++ b/pldebugger.proj @@ -1,3 +1,15 @@ + + diff --git a/plugin_debugger.c b/plugin_debugger.c index 9682b31..07eb809 100644 --- a/plugin_debugger.c +++ b/plugin_debugger.c @@ -1,7 +1,7 @@ /********************************************************************** * plugin_debugger.c - Language-independent parts of debugger * - * Copyright (c) 2004-2018 EnterpriseDB Corporation. All Rights Reserved. + * Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. * * Licensed under the Artistic License v2.0, see * https://opensource.org/licenses/artistic-license-2.0 diff --git a/settings.projinc b/settings.projinc index 478423f..0721a61 100644 --- a/settings.projinc +++ b/settings.projinc @@ -1,11 +1,17 @@ - - + + diff --git a/uninstall_pldbgapi.sql b/uninstall_pldbgapi.sql index 568d053..55ff860 100644 --- a/uninstall_pldbgapi.sql +++ b/uninstall_pldbgapi.sql @@ -1,3 +1,4 @@ +-- uninstall_pldbgapi.sql -- -- This script uninstalls the PL/PGSQL debugger API. -- @@ -6,6 +7,12 @@ -- DROP EXTENSION command. This is still needed to uninstall on older -- versions, however. -- +-- Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved. +-- +-- Licensed under the Artistic License v2.0, see +-- https://opensource.org/licenses/artistic-license-2.0 +-- for full details + DROP FUNCTION pldbg_get_target_info(TEXT, "char"); DROP FUNCTION pldbg_wait_for_target(INTEGER);