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
Copy file name to clipboardExpand all lines: repository-postgresql/src/main/java/org/lfenergy/compas/scl/data/repository/postgresql/CompasSclDataPostgreSQLRepository.java
+32-25Lines changed: 32 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
importjavax.sql.DataSource;
19
19
importjavax.transaction.Transactional;
20
20
importjava.sql.Array;
21
+
importjava.sql.Connection;
21
22
importjava.sql.ResultSet;
22
23
importjava.sql.SQLException;
23
24
importjava.util.ArrayList;
@@ -253,10 +254,6 @@ public void create(SclFileType type, UUID id, String name, String scl, Version v
253
254
insert into scl_file(id, major_version, minor_version, patch_version, type, name, created_by, scl_data)
254
255
values (?, ?, ?, ?, ?, ?, ?, ?)
255
256
""";
256
-
varcreateLabelSQL = """
257
-
insert into scl_label(scl_id, major_version, minor_version, patch_version, label_value)
0 commit comments