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
propagating descriptions on columns from an other query ...
where you can only do 5 DDL per 10 seconds !
example :
DECLARE i INT64 DEFAULT 5;
FOR sql_alter_descr in (/* {select generating DDL alter table column set options descriptions commands } */)
DO
execute immediate sql_alter_descr.sql;
SET i = i +1;
IF (i>=5) THEN
-- sleep of 10s every 5 DDL edits on a table
CALL bigfunctions.eu.sleep(10);
SET i =0;
END IF;
END FOR;
Check the idea has not already been suggested
Edit the title above with self-explanatory function name and argument names
BigFunction Description as it would appear in the documentation
Returns NULL after input time (ms)
Examples of (arguments, expected output) as they would appear in the documentation
The text was updated successfully, but these errors were encountered: