We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Temporary tables created during stored procedure execution are not visible in the session in later statements.
Repro:
DROP PROCEDURE IF EXISTS CreateTemporaryTable; DELIMITER // CREATE PROCEDURE CreateTemporaryTable() BEGIN DROP TEMPORARY TABLE IF EXISTS TEMP_TABLE; CREATE TEMPORARY TABLE TEMP_TABLE (NAME TEXT); INSERT INTO TEMP_TABLE VALUES ('A'),('B'); SELECT * FROM TEMP_TABLE; END // DELIMITER ; CALL CreateTemporaryTable();
Related bug: DROP TEMPORARY TABLE does not parse correctly.
DROP TEMPORARY TABLE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Temporary tables created during stored procedure execution are not visible in the session in later statements.
Repro:
Related bug:
DROP TEMPORARY TABLE
does not parse correctly.The text was updated successfully, but these errors were encountered: