mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
7 lines
131 B
SQL
7 lines
131 B
SQL
create global temporary table temp_free_object_ids
|
|
(
|
|
start_id int,
|
|
end_id int
|
|
);
|
|
grant select on temp_free_object_ids to public;
|