mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
9fe3bc2aa8
Previously the correct SQL mode for a stored routine or package was only set before doing the CREATE part, this worked out for PROCEDUREs and FUNCTIONs, but with ORACLE mode specific PACKAGEs the DROP also only works in ORACLE mode. Moving the setting of the sql_mode a few lines up to happen right before the DROP statement is writen fixes this.
169 lines
3.6 KiB
Text
169 lines
3.6 KiB
Text
create database `mysqltest1
|
|
1tsetlqsym`;
|
|
use `mysqltest1
|
|
1tsetlqsym`;
|
|
create table `t1
|
|
1t` (`foobar
|
|
raboof` int);
|
|
create view `v1
|
|
1v` as select * from `t1
|
|
1t`;
|
|
create procedure sp() select * from `v1
|
|
1v`;
|
|
flush tables;
|
|
use test;
|
|
|
|
--
|
|
-- Current Database: `mysqltest1
|
|
-- 1tsetlqsym`
|
|
--
|
|
|
|
/*!40000 DROP DATABASE IF EXISTS `mysqltest1
|
|
1tsetlqsym`*/;
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysqltest1
|
|
1tsetlqsym` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `mysqltest1
|
|
1tsetlqsym`;
|
|
|
|
--
|
|
-- Table structure for table `t1
|
|
-- 1t`
|
|
--
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `t1
|
|
1t` (
|
|
`foobar
|
|
raboof` int(11) DEFAULT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `t1
|
|
-- 1t`
|
|
--
|
|
|
|
--
|
|
-- Temporary table structure for view `v1
|
|
-- 1v`
|
|
--
|
|
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
/*!50001 CREATE TABLE `v1
|
|
1v` (
|
|
`foobar
|
|
raboof` tinyint NOT NULL
|
|
) ENGINE=MyISAM */;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Dumping routines for database 'mysqltest1
|
|
-- 1tsetlqsym'
|
|
--
|
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|
/*!50003 SET sql_mode = 'STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ;
|
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|
/*!50003 SET character_set_client = latin1 */ ;
|
|
/*!50003 SET character_set_results = latin1 */ ;
|
|
/*!50003 SET collation_connection = latin1_swedish_ci */ ;
|
|
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp`()
|
|
select * from `v1
|
|
1v` ;;
|
|
DELIMITER ;
|
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|
|
|
--
|
|
-- Current Database: `mysqltest1
|
|
-- 1tsetlqsym`
|
|
--
|
|
|
|
USE `mysqltest1
|
|
1tsetlqsym`;
|
|
|
|
--
|
|
-- Final view structure for view `v1
|
|
-- 1v`
|
|
--
|
|
|
|
/*!50001 DROP TABLE IF EXISTS `v1
|
|
1v`*/;
|
|
/*!50001 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50001 SET @saved_cs_results = @@character_set_results */;
|
|
/*!50001 SET @saved_col_connection = @@collation_connection */;
|
|
/*!50001 SET character_set_client = latin1 */;
|
|
/*!50001 SET character_set_results = latin1 */;
|
|
/*!50001 SET collation_connection = latin1_swedish_ci */;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `v1
|
|
1v` AS select `t1
|
|
1t`.`foobar
|
|
raboof` AS `foobar
|
|
raboof` from `t1
|
|
1t` */;
|
|
/*!50001 SET character_set_client = @saved_cs_client */;
|
|
/*!50001 SET character_set_results = @saved_cs_results */;
|
|
/*!50001 SET collation_connection = @saved_col_connection */;
|
|
show tables from `mysqltest1
|
|
1tsetlqsym`;
|
|
Tables_in_mysqltest1
|
|
1tsetlqsym
|
|
t1
|
|
1t
|
|
v1
|
|
1v
|
|
drop database `mysqltest1
|
|
1tsetlqsym`;
|
|
create database `test```;
|
|
create database `test\``
|
|
\! ls
|
|
#`;
|
|
show databases like 'test%';
|
|
Database (test%)
|
|
test
|
|
test\`
|
|
\! ls
|
|
#
|
|
test`
|
|
|
|
--
|
|
-- Current Database: `test```
|
|
--
|
|
|
|
/*!40000 DROP DATABASE IF EXISTS `test```*/;
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test``` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `test```;
|
|
|
|
--
|
|
-- Current Database: `test\``
|
|
-- \! ls
|
|
-- #`
|
|
--
|
|
|
|
/*!40000 DROP DATABASE IF EXISTS `test\``
|
|
\! ls
|
|
#`*/;
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test\``
|
|
\! ls
|
|
#` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `test\``
|
|
\! ls
|
|
#`;
|
|
drop database `test```;
|
|
drop database `test\``
|
|
\! ls
|
|
#`;
|