Add more temp table for calculation

This commit is contained in:
WQY\qiong
2023-06-09 09:34:53 +08:00
parent 83f4bc063b
commit 2c5ca5ef53
2 changed files with 12 additions and 2 deletions

View File

@@ -25,9 +25,17 @@ create table temp_node
);
create table temp_link
create table temp_link_1
(
link varchar(32) primary key references _link(id)
, geom geometry not null unique
);
create table temp_link_2
(
link varchar(32) primary key references _link(id)
, geom geometry not null unique
);