Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
9c8e12b6
Commit
9c8e12b6
authored
8 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #10339: added indices on resource_claim table
parent
58b3a8a4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/ResourceAssignment/ResourceAssignmentDatabase/sql/create_database.sql
+9
-0
9 additions, 0 deletions
...gnment/ResourceAssignmentDatabase/sql/create_database.sql
with
9 additions
and
0 deletions
SAS/ResourceAssignment/ResourceAssignmentDatabase/sql/create_database.sql
+
9
−
0
View file @
9c8e12b6
...
@@ -230,6 +230,15 @@ CREATE INDEX resource_claim_starttime_endtime_idx
...
@@ -230,6 +230,15 @@ CREATE INDEX resource_claim_starttime_endtime_idx
USING
btree
USING
btree
(
starttime
DESC
,
endtime
);
(
starttime
DESC
,
endtime
);
CREATE
INDEX
resource_claim_task_id_idx
ON
resource_allocation
.
resource_claim
(
task_id
);
CREATE
INDEX
resource_claim_resource_id_idx
ON
resource_allocation
.
resource_claim
(
resource_id
);
CREATE
INDEX
resource_claim_status_id_idx
ON
resource_allocation
.
resource_claim
(
status_id
);
CREATE
TABLE
resource_allocation
.
conflict_reason
(
CREATE
TABLE
resource_allocation
.
conflict_reason
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
reason
text
NOT
NULL
,
reason
text
NOT
NULL
,
...
...
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