You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE {table_name}
WITH (format='PARQUET') AS
SELECT
table1.key AS table1_key, table2.key AS table2_key
FROM
{self.left_inventory.table_name} table1
{join_type} JOIN
{self.right_inventory.table_name} table2
USING {key)
fails with the error that table1.key could not be identified. Potentially an Athena Engine 2 issue. However, changing the query to:
CREATE TABLE {table_name}
WITH (format='PARQUET') AS
SELECT
table1.key AS table1_key, table2.key AS table2_key
FROM
{self.left_inventory.table_name} table1
{join_type} JOIN
{self.right_inventory.table_name} table2
ON table1.key = table2.key
worked.
The text was updated successfully, but these errors were encountered:
The statement:
fails with the error that table1.key could not be identified. Potentially an Athena Engine 2 issue. However, changing the query to:
worked.
The text was updated successfully, but these errors were encountered: