blob: 9dd4e3031df41382a865389191c86835c2a94472 [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.
-- ============================================
-- 1. Connect to the texera_db database
-- ============================================
\c texera_db
SET search_path TO texera_db;
-- ============================================
-- 2. Update the table schema
-- ============================================
BEGIN;
-- 1. Rename original table temporarily
ALTER TABLE operator_port_executions RENAME TO operator_port_executions_old;
-- 2. Create the new table with columns in the correct order
CREATE TABLE operator_port_executions
(
workflow_execution_id INT NOT NULL,
operator_id VARCHAR(100) NOT NULL,
layer_name VARCHAR(100) NOT NULL DEFAULT 'main',
port_id INT NOT NULL,
result_uri TEXT,
PRIMARY KEY (workflow_execution_id, operator_id, layer_name, port_id),
FOREIGN KEY (workflow_execution_id) REFERENCES workflow_executions(eid) ON DELETE CASCADE
);
-- 3. Copy data from old table (use the default value for `layer_id`)
INSERT INTO operator_port_executions (workflow_execution_id, operator_id, port_id, result_uri)
SELECT workflow_execution_id, operator_id, port_id, result_uri
FROM operator_port_executions_old;
-- 4. Drop the old table after copying data
DROP TABLE operator_port_executions_old;
COMMIT;