Skip to content
Snippets Groups Projects
Commit 57b0f3f8 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Added LICENSE

parent 905dd130
No related branches found
No related tags found
No related merge requests found
Pipeline #1827 passed
/*
* This file is part of vospace-file-catalog
* Copyright (C) 2021 Istituto Nazionale di Astrofisica
* SPDX-License-Identifier: GPL-3.0-or-later
*/
CREATE EXTENSION IF NOT EXISTS ltree; CREATE EXTENSION IF NOT EXISTS ltree;
......
/*
* This file is part of vospace-file-catalog
* Copyright (C) 2021 Istituto Nazionale di Astrofisica
* SPDX-License-Identifier: GPL-3.0-or-later
*/
-- Generates the path from parent_path and id -- Generates the path from parent_path and id
CREATE OR REPLACE FUNCTION path(parent_path ltree, id bigint) RETURNS ltree AS CREATE OR REPLACE FUNCTION path(parent_path ltree, id bigint) RETURNS ltree AS
$func$ $func$
......
/*
* This file is part of vospace-file-catalog
* Copyright (C) 2021 Istituto Nazionale di Astrofisica
* SPDX-License-Identifier: GPL-3.0-or-later
*/
-- View that maps node_id to os_path (relative path of file on disk) -- View that maps node_id to os_path (relative path of file on disk)
CREATE VIEW node_os_path AS CREATE VIEW node_os_path AS
......
/*
* This file is part of vospace-file-catalog
* Copyright (C) 2021 Istituto Nazionale di Astrofisica
* SPDX-License-Identifier: GPL-3.0-or-later
*/
-- This function returns an array adding some elements and removing others -- This function returns an array adding some elements and removing others
-- It is used to update recursively groupread and groupwrite properties -- It is used to update recursively groupread and groupwrite properties
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment