Description
Currently in Spark one could redefine a window. For instance:
select count(*) OVER w FROM tenk1 WINDOW w AS (ORDER BY unique1), w AS (ORDER BY unique1);
The window `w` is defined two times. In PgSQL, on the other hand, a thrown will happen:
ERROR: window "w" is already defined