MSCINF0006
External table translated to regular table
Severity
Description
Code Example
Input Code:
CREATE OR REPLACE EXTERNAL TABLE external_table_test
(
col1 INTEGER,
col2 STRING,
col3 STRING
)
OPTIONS (
format = 'CSV',
field_delimiter = ',',
uris = ['gs://my_bucket/file.csv']
);Output Code:
Recommendations
Last updated
