-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I tried the following SQL statements
CREATE DATABASE IF NOT EXISTS iris;
DROP TABLE IF EXISTS iris.train;
CREATE TABLE iris.train (
sepal_length float,
sepal_width float,
petal_length float,
petal_width float,
class int);
INSERT INTO TABLE iris.train VALUES
(6.4,2.8,5.6,2.2,2),
(5.0,2.3,3.3,1.0,1),
(4.9,2.5,4.5,1.7,2);And received error Table not found train. I would suspect Hive runs the statement asynchronously. Is there an option to make all statement atomic?
Metadata
Metadata
Assignees
Labels
No labels