Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-37222][Test] Introduce simple test submitting nexmark sql via sql client #26093

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,14 @@ void testExecuteSqlFile() throws Exception {
}
}

@Test
void testExecuteNexmark() throws Exception {
final URL sqlFile = getClass().getClassLoader().getResource("nexmark.sql");
String[] args = new String[] {"-f", sqlFile.getPath()};
String output = runSqlClient(args);
assertThat(output).doesNotContain("java.lang.AssertionError");
}

@Test
void testDisplayMultiLineSqlInInteractiveMode() throws Exception {
List<String> statements =
Expand Down
116 changes: 116 additions & 0 deletions flink-table/flink-sql-client/src/test/resources/nexmark.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
-- 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.

CREATE TABLE datagen
(
event_type int,
person ROW<
id BIGINT,
name VARCHAR,
emailAddress VARCHAR,
creditCard VARCHAR,
city VARCHAR,
state VARCHAR,
`dateTime` TIMESTAMP(3),
extra VARCHAR>,
auction ROW<
id BIGINT,
itemName VARCHAR,
description VARCHAR,
initialBid BIGINT,
reserve BIGINT,
`dateTime` TIMESTAMP(3),
expires TIMESTAMP(3),
seller BIGINT,
category BIGINT,
extra VARCHAR>,
bid ROW<
auction BIGINT,
bidder BIGINT,
price BIGINT,
channel VARCHAR,
url VARCHAR,
`dateTime` TIMESTAMP(3),
extra VARCHAR>,
`dateTime` AS
CASE
WHEN event_type = 0 THEN person.`dateTime`
WHEN event_type = 1 THEN auction.`dateTime`
ELSE bid.`dateTime`
END,
WATERMARK FOR `dateTime` AS `dateTime` - INTERVAL '4' SECOND
) WITH (
'connector' = 'datagen',
'number-of-rows' = '10'
);
CREATE VIEW person AS
SELECT person.id,
person.name,
person.emailAddress,
person.creditCard,
person.city,
person.state,
`dateTime`,
person.extra
FROM datagen
WHERE event_type = 0;

CREATE VIEW auction AS
SELECT auction.id,
auction.itemName,
auction.description,
auction.initialBid,
auction.reserve,
`dateTime`,
auction.expires,
auction.seller,
auction.category,
auction.extra
FROM datagen
WHERE event_type = 1;

CREATE VIEW bid AS
SELECT bid.auction,
bid.bidder,
bid.price,
bid.channel,
bid.url,
`dateTime`,
bid.extra
FROM datagen
WHERE event_type = 2;


CREATE TABLE nexmark_q7
(
auction BIGINT,
bidder BIGINT,
price BIGINT,
`dateTime` TIMESTAMP(3),
extra VARCHAR
) WITH (
'connector' = 'blackhole'
);

INSERT INTO nexmark_q7
SELECT B.auction, B.price, B.bidder, B.`dateTime`, B.extra
from bid B
JOIN (SELECT MAX(price) AS maxprice, window_end as `dateTime`
FROM TABLE(
TUMBLE(TABLE bid, DESCRIPTOR(`dateTime`), INTERVAL '10' SECOND))
GROUP BY window_start, window_end) B1
ON B.price = B1.maxprice
WHERE B.`dateTime` BETWEEN B1.`dateTime` - INTERVAL '10' SECOND AND B1.`dateTime`;