blob: bab0849674a8b978ade0a336357113bf3dc31bae [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Description : Restart cluster and confirm that channels and procedures still work
* Expected Res : Success
* Date : 2018
* Author : Steven Jacobs
*/
drop dataverse two if exists;
drop dataverse channels if exists;
create dataverse channels;
use channels;
create type userLocation as {
userId: int,
roomNumber: int
};
create dataset UserLocations(userLocation)
primary key userId;
create function RoomOccupants(room) {
(select location.userId
from UserLocations location
where location.roomNumber = room)
};
create broker brokerA at "http://www.notifyA.com";
create repetitive channel roomRecords using RoomOccupants@1 period duration("PT5S");
create procedure selectSome(r) {
select roomNumber from channels.UserLocations
where roomNumber = r
order by userId
};
create procedure deleteSome(r) {
delete from channels.UserLocations
where roomNumber = r
};
create procedure addMe() {
insert into channels.UserLocations([
{"userId":2, "roomNumber":123}]
)
};
upsert into UserLocations([
{"userId":1, "roomNumber":123},
{"userId":3, "roomNumber":350}]
);
create repetitive channel roomRecords2 using RoomOccupants@1 period duration("PT5S");