mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
c7ab676192
Fixed incorrect pointer reference when table is not available.
4 lines
123 B
Text
4 lines
123 B
Text
connection node_2;
|
|
connection node_1;
|
|
CREATE OR REPLACE VIEW v AS WITH cte AS ( SELECT 1 ) SELECT * FROM cte;
|
|
DROP VIEW v;
|