You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -2631,11 +2632,11 @@ SET character_set_client = @saved_cs_client;
2631
2632
/*!50001 SET @saved_cs_client = @@character_set_client */;
2632
2633
/*!50001 SET @saved_cs_results = @@character_set_results */;
2633
2634
/*!50001 SET @saved_col_connection = @@collation_connection */;
2634
-
/*!50001 SET character_set_client = utf8mb3*/;
2635
-
/*!50001 SET character_set_results = utf8mb3*/;
2636
-
/*!50001 SET collation_connection = utf8mb3_general_ci*/;
2635
+
/*!50001 SET character_set_client = utf8mb4*/;
2636
+
/*!50001 SET character_set_results = utf8mb4*/;
2637
+
/*!50001 SET collation_connection = utf8mb4_unicode_ci*/;
2637
2638
/*!50001 CREATE ALGORITHM=UNDEFINED */
2638
-
/*!50013 */
2639
+
/*!50013 SQL SECURITY INVOKER */
2639
2640
/*!50001 VIEW `vw_log_history` AS select from_unixtime(min(`logs`.`time`)) AS `First Logged`,from_unixtime(max(`logs`.`time`)) AS `Last Logged`,count(0) AS `Occurrences`,`realmlist`.`name` AS `Realm`,`logs`.`type` AS `type`,`logs`.`level` AS `level`,`logs`.`string` AS `string` from (`logs` left join `realmlist` on((`logs`.`realm` = `realmlist`.`id`))) group by `logs`.`string`,`logs`.`type`,`logs`.`realm` */;
2640
2641
/*!50001 SET character_set_client = @saved_cs_client */;
2641
2642
/*!50001 SET character_set_results = @saved_cs_results */;
@@ -2649,11 +2650,11 @@ SET character_set_client = @saved_cs_client;
2649
2650
/*!50001 SET @saved_cs_client = @@character_set_client */;
2650
2651
/*!50001 SET @saved_cs_results = @@character_set_results */;
2651
2652
/*!50001 SET @saved_col_connection = @@collation_connection */;
2652
-
/*!50001 SET character_set_client = utf8mb3*/;
2653
-
/*!50001 SET character_set_results = utf8mb3*/;
2654
-
/*!50001 SET collation_connection = utf8mb3_general_ci*/;
2653
+
/*!50001 SET character_set_client = utf8mb4*/;
2654
+
/*!50001 SET character_set_results = utf8mb4*/;
2655
+
/*!50001 SET collation_connection = utf8mb4_unicode_ci*/;
2655
2656
/*!50001 CREATE ALGORITHM=UNDEFINED */
2656
-
/*!50013 */
2657
+
/*!50013 SQL SECURITY INVOKER */
2657
2658
/*!50001 VIEW `vw_rbac` AS select `t1`.`linkedId` AS `Permission ID`,`t1`.`id` AS `Permission Group`,ifnull(`t2`.`secId`,'linked') AS `Security Level`,`t3`.`name` AS `Permission` from ((`rbac_linked_permissions` `t1` left join `rbac_default_permissions` `t2` on((`t1`.`id` = `t2`.`permissionId`))) left join `rbac_permissions` `t3` on((`t1`.`linkedId` = `t3`.`id`))) */;
2658
2659
/*!50001 SET character_set_client = @saved_cs_client */;
2659
2660
/*!50001 SET character_set_results = @saved_cs_results */;
ALTERTABLE`realmlist` MODIFY `population` float NOT NULL DEFAULT '0';
3
+
4
+
SET NAMES 'utf8mb4' COLLATE 'utf8mb4_unicode_ci'; -- views do not have explicit charset/collation options but record whatever the connection settings were as their own (visible in mysqldump)
0 commit comments