This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 937
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 #649 from github/int_tests_on_57_resubmit
Int tests on 57 resubmit
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
INSERT INTO database_instance_maintenance ( | ||
hostname, port, maintenance_active, begin_timestamp, end_timestamp, owner, reason | ||
hostname, port, maintenance_active, begin_timestamp, end_timestamp, owner, reason, processing_node_hostname, processing_node_token, explicitly_bounded | ||
) values ( | ||
'testhost', 22293, 1, current_timestamp, current_timestamp, 'test', 'integration test' | ||
'testhost', 22293, 1, current_timestamp, current_timestamp, 'test', 'integration test', 'processinghost', 'token', 0 | ||
); | ||
UPDATE database_instance_maintenance SET end_timestamp=current_timestamp + interval 1 minute; |