-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from d-ylee/feature-87-update_physics_group_na…
…me_in_datasets Initial feature for Issue #87 Allows a dataset's `physics_group_id` to be updated to another, existing physics_group
- Loading branch information
Showing
9 changed files
with
288 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
UPDATE {{.Owner}}.DATASETS | ||
SET LAST_MODIFIED_BY=:myuser, | ||
LAST_MODIFICATION_DATE=:mydate, | ||
DATASET_ACCESS_TYPE_ID = :dataset_access_type_id, | ||
IS_DATASET_VALID = :is_dataset_valid | ||
LAST_MODIFICATION_DATE=:mydate | ||
{{ if .PhysicsGroup }} | ||
,PHYSICS_GROUP_ID = :physics_group_id | ||
{{ end }} | ||
{{ if .DatasetAccessType }} | ||
,DATASET_ACCESS_TYPE_ID = :dataset_access_type_id | ||
,IS_DATASET_VALID = :is_dataset_valid | ||
{{ end }} | ||
WHERE DATASET = :dataset |
Oops, something went wrong.