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) 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
); );

View File

@@ -1,6 +1,8 @@
drop table if exists temp_vd_topology; drop table if exists temp_vd_topology;
drop table if exists temp_link; drop table if exists temp_link_2;
drop table if exists temp_link_1;
drop table if exists temp_node; drop table if exists temp_node;