SM0 She11
Path:
/
/
usr
/
share
/
mysql
Full Path (server): /usr/share/mysql
Create Fil3
Upl04d Fil3
📄 binary-configure
[E]
[D]
[R]
📁 charsets
Open
[D]
[R]
📁 czech
Open
[D]
[R]
📁 danish
Open
[D]
[R]
📁 dutch
Open
[D]
[R]
📁 english
Open
[D]
[R]
📄 errmsg-utf8.txt
[E]
[D]
[R]
📁 estonian
Open
[D]
[R]
📄 fill_help_tables.sql
[E]
[D]
[R]
📁 french
Open
[D]
[R]
📁 german
Open
[D]
[R]
📁 greek
Open
[D]
[R]
📁 hungarian
Open
[D]
[R]
📄 install_spider.sql
[E]
[D]
[R]
📁 italian
Open
[D]
[R]
📁 japanese
Open
[D]
[R]
📁 korean
Open
[D]
[R]
📄 magic
[E]
[D]
[R]
📄 maria_add_gis_sp.sql
[E]
[D]
[R]
📄 maria_add_gis_sp_bootstrap.sql
[E]
[D]
[R]
📄 my-huge.cnf
[E]
[D]
[R]
📄 my-innodb-heavy-4G.cnf
[E]
[D]
[R]
📄 my-large.cnf
[E]
[D]
[R]
📄 my-medium.cnf
[E]
[D]
[R]
📄 my-small.cnf
[E]
[D]
[R]
📄 mysql-log-rotate
[E]
[D]
[R]
📄 mysql.server
[E]
[D]
[R]
📄 mysql_performance_tables.sql
[E]
[D]
[R]
📄 mysql_system_tables.sql
[E]
[D]
[R]
📄 mysql_system_tables_data.sql
[E]
[D]
[R]
📄 mysql_test_data_timezone.sql
[E]
[D]
[R]
📄 mysql_to_mariadb.sql
[E]
[D]
[R]
📄 mysqld_multi.server
[E]
[D]
[R]
📁 norwegian
Open
[D]
[R]
📁 norwegian-ny
Open
[D]
[R]
📁 policy
Open
[D]
[R]
📁 polish
Open
[D]
[R]
📁 portuguese
Open
[D]
[R]
📁 romanian
Open
[D]
[R]
📁 russian
Open
[D]
[R]
📁 serbian
Open
[D]
[R]
📁 slovak
Open
[D]
[R]
📁 spanish
Open
[D]
[R]
📁 swedish
Open
[D]
[R]
📁 systemd
Open
[D]
[R]
📁 ukrainian
Open
[D]
[R]
📄 wsrep.cnf
[E]
[D]
[R]
📄 wsrep_notify
[E]
[D]
[R]
Editing: maria_add_gis_sp.sql
-- Copyright (C) 2014 MariaDB Ab. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; version 2 of the License. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA # This part creates stored procedures required by the OpenGIS standards. # script is prepared to be run with the --bootstrap server option SET sql_mode=''; delimiter | DROP PROCEDURE IF EXISTS AddGeometryColumn; DROP PROCEDURE IF EXISTS DropGeometryColumn; CREATE DEFINER=`root`@`localhost` PROCEDURE AddGeometryColumn(catalog varchar(64), t_schema varchar(64), t_name varchar(64), geometry_column varchar(64), t_srid int) SQL SECURITY INVOKER begin set @qwe= concat('ALTER TABLE ', t_schema, '.', t_name, ' ADD ', geometry_column,' GEOMETRY REF_SYSTEM_ID=', t_srid); PREPARE ls from @qwe; execute ls; deallocate prepare ls; end | CREATE DEFINER=`root`@`localhost` PROCEDURE DropGeometryColumn(catalog varchar(64), t_schema varchar(64), t_name varchar(64), geometry_column varchar(64)) SQL SECURITY INVOKER begin set @qwe= concat('ALTER TABLE ', t_schema, '.', t_name, ' DROP ', geometry_column); PREPARE ls from @qwe; execute ls; deallocate prepare ls; end | delimiter ;
Save