Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vospace-file-catalog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VOSpace INAF
vospace-file-catalog
Commits
fec92440
Commit
fec92440
authored
4 years ago
by
Cristiano Urban
Browse files
Options
Downloads
Patches
Plain Diff
Modified username format.
Signed-off-by:
Cristiano Urban
<
cristiano.urban@inaf.it
>
parent
02daee93
No related branches found
No related tags found
No related merge requests found
Pipeline
#1048
passed
4 years ago
Stage: dockerize
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
05-data.sql
+6
-6
6 additions, 6 deletions
05-data.sql
with
6 additions
and
6 deletions
05-data.sql
+
6
−
6
View file @
fec92440
...
...
@@ -26,9 +26,9 @@ INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('p
-- parent_path = parent_relative_path
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
is_public
,
sticky
)
VALUES
(
NULL
,
NULL
,
''
,
'container'
,
'0'
,
'0'
,
true
,
true
);
-- /
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
'curban'
,
'container'
,
'3354'
,
'3354'
,
true
);
-- /curban
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
'sbertocco'
,
'container'
,
'2048'
,
'2048'
,
true
);
-- /sbertocco
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
'szorba'
,
'container'
,
'2386'
,
'2386'
,
true
);
-- /szorba
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
'c
ristiano.
urban'
,
'container'
,
'3354'
,
'3354'
,
true
);
-- /curban
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
's
ara.
bertocco'
,
'container'
,
'2048'
,
'2048'
,
true
);
-- /sbertocco
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
sticky
)
VALUES
(
''
,
NULL
,
's
onia.
zorba'
,
'container'
,
'2386'
,
'2386'
,
true
);
-- /szorba
-- parent_path <> parent_relative_path
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
,
group_read
,
group_write
)
VALUES
(
''
,
NULL
,
'test'
,
'container'
,
'2386'
,
'2386'
,
'{"VOSpace.test1"}'
,
'{"VOSpace.test1"}'
);
-- /test
INSERT
INTO
node
(
parent_path
,
parent_relative_path
,
name
,
type
,
owner_id
,
creator_id
)
VALUES
(
'5'
,
''
,
'f1'
,
'container'
,
'2386'
,
'2386'
);
-- /test/f1 (rel: /f1)
...
...
@@ -40,6 +40,6 @@ INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creat
Initialization test for vospace users table
*/
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'3354'
,
'curban'
,
'cristiano.urban@inaf.it'
);
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'2048'
,
'sbertocco'
,
'sara.bertocco@inaf.it'
);
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'2386'
,
'szorba'
,
'sonia.zorba@inaf.it'
);
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'3354'
,
'c
ristiano.
urban'
,
'cristiano.urban@inaf.it'
);
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'2048'
,
's
ara.
bertocco'
,
'sara.bertocco@inaf.it'
);
INSERT
INTO
Users
(
rap_id
,
user_name
,
e_mail
)
VALUES
(
'2386'
,
's
onia.
zorba'
,
'sonia.zorba@inaf.it'
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment