Amazon Redshift Error - ERROR: 0A000: Specified types or functions (one per INFO message) not supported on Redshift tables

后端 未结 1 701
情话喂你
情话喂你 2021-01-24 01:50

When running the below query:

WITH sublevels AS (
SELECT 1 UNION ALL 
SELECT 1 UNION ALL
SELECT 1), FIELDA AS (SELECT (ROW_NUMBER() OVER ())::INT sublevel 
FROM          


        
相关标签:
1条回答
  • 2021-01-24 02:30

    In Redshift:

    1. queries against information_schema run on the leader node only
    2. queries against any "normal" tables run on compute nodes only

    You cannot mix and match 1. and 2.

    0 讨论(0)
提交回复
热议问题