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: Analyzer/Resources/AddrBuildBundles.sql
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
createtableaddr_build_bundles
1
+
CREATETABLEIF NOT EXISTS addr_build_bundles
2
2
(
3
3
id INTEGER,
4
4
build_id INTEGER,
@@ -17,4 +17,6 @@ create table addr_build_bundles
17
17
provider TEXT,
18
18
result_type TEXT,
19
19
PRIMARY KEY (id, build_id)
20
-
);
20
+
);
21
+
22
+
CREATEVIEWIF NOT EXISTS addr_build_cached_bundles ASSELECT build_id, concat(internal_name, '.bundle') AS cached_name, name AS catalog_name FROM addr_build_bundles;
0 commit comments