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
bloc4.append("\n drop table if exists "+partitionTableName+";");
1737
1776
bloc4.append("\n create temporary table "+partitionTableName+" as select * from "+partitionTableNameWithAllRecords+" where "+partitionIdentifier+">=?::int and "+partitionIdentifier+"<?::int;");
Copy file name to clipboardExpand all lines: arc-core/src/main/resources/BdD/script_global_phase_normage.sql
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,9 @@ CREATE TABLE IF NOT EXISTS arc.ext_type_normage
25
25
);
26
26
INSERT INTOarc.ext_type_normagevalues ('relation','1'),('cartesian','2'),('suppression','3'),('unicité','4') ON CONFLICT DO NOTHING;
27
27
INSERT INTOarc.ext_type_normagevalues ('reduction','5') ON CONFLICT DO NOTHING;
28
-
INSERT INTOarc.ext_type_normagevalues ('partition','5') ON CONFLICT DO NOTHING;
28
+
INSERT INTOarc.ext_type_normagevalues ('partition','6') ON CONFLICT DO NOTHING;
29
+
INSERT INTOarc.ext_type_normagevalues ('exclusion','7') ON CONFLICT DO NOTHING;
30
+
29
31
30
32
do $$ begin CREATE TRIGGER tg_insert_normage BEFORE INSERT ONarc.ihm_normage_regle FOR EACH ROW EXECUTE PROCEDURE arc.insert_controle(); exception when others then end; $$;
0 commit comments