75 lines
2.9 KiB
Groovy
75 lines
2.9 KiB
Groovy
// 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.
|
|
|
|
suite("test_delete_using") {
|
|
def tbName1 = "test_delete_unique_1"
|
|
def tbName2 = "test_delete_unique_2"
|
|
def tbName3 = "test_delete_unique_3"
|
|
def tbName4 = "test_delete_unique_4"
|
|
|
|
sql "DROP TABLE IF EXISTS ${tbName1}"
|
|
sql "DROP TABLE IF EXISTS ${tbName2}"
|
|
sql "DROP TABLE IF EXISTS ${tbName3}"
|
|
sql "DROP TABLE IF EXISTS ${tbName4}"
|
|
|
|
// test complex update syntax
|
|
sql """
|
|
create table ${tbName1} (id int, c1 bigint, c2 string, c3 double, c4 date) unique key (id) distributed by hash(id) properties('replication_num'='1');
|
|
"""
|
|
sql """
|
|
create table ${tbName2} (id int, c1 bigint, c2 string, c3 double, c4 date) unique key (id) distributed by hash(id) properties('replication_num'='1');
|
|
"""
|
|
sql """
|
|
create table ${tbName3} (id int) distributed by hash (id) properties('replication_num'='1');
|
|
"""
|
|
sql """
|
|
create table ${tbName4} (id int) distributed by hash (id) properties('replication_num'='1');
|
|
"""
|
|
sql """
|
|
insert into ${tbName1} values(1, 1, '1', 1.0, '2000-01-01'),(2, 2, '2', 2.0, '2000-01-02'),(3, 3, '3', 3.0, '2000-01-03');
|
|
"""
|
|
sql """
|
|
insert into ${tbName2} values(1, 10, '10', 10.0, '2000-01-10'),(2, 20, '20', 20.0, '2000-01-20'),(3, 30, '30', 30.0, '2000-01-30'),(4, 4, '4', 4.0, '2000-01-04'),(5, 5, '5', 5.0, '2000-01-05');
|
|
"""
|
|
sql """
|
|
insert into ${tbName3} values(1), (4), (5);
|
|
"""
|
|
sql """
|
|
insert into ${tbName4} values(2), (4), (5);
|
|
"""
|
|
|
|
sql """
|
|
DELETE FROM ${tbName1} USING ${tbName2} inner join ${tbName3} on ${tbName2}.id = ${tbName3}.id where ${tbName1}.id = ${tbName2}.id;
|
|
"""
|
|
|
|
qt_complex_delete """
|
|
select * from ${tbName1} order by id;
|
|
"""
|
|
|
|
sql """
|
|
DELETE FROM ${tbName1} t1a USING ${tbName2} inner join ${tbName4} on ${tbName2}.id = ${tbName4}.id where t1a.id = ${tbName2}.id;
|
|
"""
|
|
|
|
qt_complex_delete_alias """
|
|
select * from ${tbName1} order by id;
|
|
"""
|
|
|
|
sql "DROP TABLE IF EXISTS ${tbName1}"
|
|
sql "DROP TABLE IF EXISTS ${tbName2}"
|
|
sql "DROP TABLE IF EXISTS ${tbName3}"
|
|
sql "DROP TABLE IF EXISTS ${tbName4}"
|
|
} |