Update Rex-EMoolator version
This commit is contained in:
@@ -101,7 +101,7 @@ public final class Main {
|
||||
try (Database db = Database.open(dataDir);
|
||||
Statement st = db.connection().createStatement();
|
||||
ResultSet rs = st.executeQuery("""
|
||||
SELECT c.display_name, c.container, c.status, c.file_count,
|
||||
SELECT c.display_name, c.container, c.fs_type, c.status, c.file_count,
|
||||
g.root_path,
|
||||
COALESCE(g.engine_override, g.engine_detected) AS engine,
|
||||
MAX(CASE WHEN d.field = 'edition' THEN d.value END) AS edition,
|
||||
@@ -114,12 +114,13 @@ public final class Main {
|
||||
ORDER BY family, edition, c.display_name, g.root_path
|
||||
""")) {
|
||||
|
||||
System.out.printf("%-40s %-10s %-10s %-13s %-22s %s%n",
|
||||
"KOPIA", "STATUS", "KORZEŃ", "SILNIK", "RODZINA", "WYDANIE");
|
||||
System.out.printf("%-40s %-8s %-10s %-10s %-13s %-22s %s%n",
|
||||
"KOPIA", "FS", "STATUS", "KORZEŃ", "SILNIK", "RODZINA", "WYDANIE");
|
||||
while (rs.next()) {
|
||||
String root = rs.getString("root_path");
|
||||
System.out.printf("%-40s %-10s %-10s %-13s %-22s %s%n",
|
||||
System.out.printf("%-40s %-8s %-10s %-10s %-13s %-22s %s%n",
|
||||
truncate(rs.getString("display_name"), 40),
|
||||
nvl(rs.getString("fs_type")),
|
||||
rs.getString("status"),
|
||||
root == null ? "—" : (root.isEmpty() ? "/" : root + "/"),
|
||||
nvl(rs.getString("engine")),
|
||||
|
||||
Reference in New Issue
Block a user