Hai terminato l'intera query? Prova a impostare un delimitatore , e usalo dopo END in modo che il server sappia che hai terminato il comando.
delimiter //
CREATE PROCEDURE fill_points(
IN size INT(10)
)
BEGIN
DECLARE i DOUBLE(10,1) DEFAULT size;
DECLARE lon FLOAT(7,4);
DECLARE lat FLOAT(6,4);
DECLARE position VARCHAR(100);
-- Deleting all.
DELETE FROM Points;
WHILE i > 0 DO
SET lon = RAND() * 360 - 180;
SET lat = RAND() * 180 - 90;
SET position = CONCAT( 'POINT(', lon, ' ', lat, ')' );
INSERT INTO Points(name, location) VALUES ( CONCAT('name_', i), GeomFromText(position) );
SET i = i - 1;
END WHILE;
END //
delimiter ;
Inoltre, da parte
Mentre DELETE FROM TABLE
rimuove tutti i dati dalla tabella, TRUNCATE table
lo fa più velocemente. A meno che tu non abbia buone ragioni per usare DELETE
(esistono), TRUNCATE
potrebbe essere quello che vuoi.