* chore: bump version to 0.7.5 (Task 1.1) * feat(db): pure object DDL/search/depend builders (Task 1.2) * feat(models): ObjectSearchHit, DependencyInfo, PgToolPaths, tool source fields (Task 1.3) * feat(backup): bundle-aware pg tool resolution, system-first fallback (Task 2.1) * feat(objects): schema CRUD commands + integration test (Task 2.2) * feat(objects): search_objects command (current-schema, all types) (Task 2.3) * feat(objects): get_object_ddl for all browsable types (Task 2.4) * feat(objects): pg_depend object dependencies + schema contents (Task 2.5) * feat(ipc): register object management commands (Task 3.1) * feat(ipc): frontend wrappers + types for object management (Task 3.2) * feat(build): declare bundled pg_tools resources (Task 3.3) * test(capabilities): lock objects capability PG-only for search/ddl/dependencies (Task 3.4) * feat(ui): Cmd+K object search palette in DB viewer (Task 4.1) * feat(ui): schema CRUD menu + dependency dialog (Task 4.2) * feat(ui): copy-as-DDL + dependency view context menu in Objects (Task 4.3) * feat(ui): dependency check before table drop + bundled-tool status (Task 4.4) * docs: v0.7.5 release notes + status table + bundled-tools (Task 5.1) * ci: build/verify bundled pg client tools per platform before tauri build (Task 5.2) * fix(objects): report pg_rewrite dependencies as the dependent view (pg_class) pg_depend records view dependencies via the view's internal rewrite rule (classid = pg_rewrite). The user-facing dependent object is the VIEW itself, so map that classid to pg_class (name still resolved through ev_class). Fixes the live-PG integration test object_dependencies_for_table_includes_view and makes the dependency dialog readable for view dependents. * test: add idempotent PG integration-test seed script Seeds the first PG test db (GRIDLINE_TEST_SRC) with the objects the #[ignore] integration tests assert against: users (+users_id_seq), products (3 rows), orders (3 rows), order_summary view, audit_log + get_user functions, user_role enum. Idempotent: DROP + recreate. * fix(build): regenerate multi-resolution icons + roadmap Keychain item - icon.ico previously contained a single 16x16 frame (Windows scaled it up -> blurry taskbar/start-menu icon). Regenerated from the 512px source via 'tauri icon': ICO now has 16/24/32/48/64/256 frames, icns has full @2x coverage up to 1024px, PNGs re-rendered from the same source. - Added icons/icon.png (512px) to bundle.icon so Linux hicolor installs a high-DPI entry. - ROADMAP: log the 'Enable Keychain' toggle (currently a form-only placeholder) under Next up -> Connection & credentials. * docs(readme): dynamic version-free download links + 3-col table - release.yml: set releaseAssetNamePattern to '[name]_[platform]_[arch][setup][ext]' (version-free), so asset filenames are stable across releases: Gridline_darwin_aarch64.dmg, Gridline_windows_x64-setup.exe, Gridline_linux_amd64.deb, Gridline_linux_x86_64.rpm, etc. - README: both download tables now 3-column (OS | Architecture | Download) and link via GitHub's releases/latest/download/<file> redirect — they always point at the newest published release, no per-release edits. - AGENTS.md: releases checklist updated — download links stay version-free. * docs(readme): platform-per-column download table (macOS | Windows | Linux) Table now mirrors the release layout: one column per OS with a logo row and a download-links row underneath. Links stay version-free via releases/latest/download/<file> (releaseAssetNamePattern in release.yml). * docs(readme): revert download table to clean image-less 3-col layout Logo row was hard to read on GitHub dark mode; the plain OS | Architecture | Download table is cleaner and still uses dynamic releases/latest links.
75 lines
2.9 KiB
PL/PgSQL
75 lines
2.9 KiB
PL/PgSQL
-- Gridline v0.7.5 integration-test seed (idempotent).
|
|
-- Target: the FIRST PG test DB (GRIDLINE_TEST_SRC @ :7501), db=postgres.
|
|
-- Objects are chosen to satisfy the assertions in src-tauri/src/commands/objects.test.rs:
|
|
-- search_objects: 'users' TABLE hit, 'get*' function hit, empty-needle <= 100
|
|
-- get_object_ddl: users_id_seq -> CREATE SEQUENCE; audit_log -> CREATE FUNCTION
|
|
-- get_object_dependencies: orders -> order_summary VIEW; schema contents non-empty
|
|
-- Run with: psql ... -f scripts/seed-pg-test.sql
|
|
|
|
BEGIN;
|
|
|
|
-- 1. users table with serial -> creates users_id_seq in public
|
|
DROP VIEW IF EXISTS order_summary CASCADE;
|
|
DROP TABLE IF EXISTS orders CASCADE;
|
|
DROP TABLE IF EXISTS products CASCADE;
|
|
DROP TABLE IF EXISTS users CASCADE;
|
|
DROP TYPE IF EXISTS user_role CASCADE;
|
|
DROP FUNCTION IF EXISTS audit_log(text) CASCADE;
|
|
DROP FUNCTION IF EXISTS get_user(bigint) CASCADE;
|
|
|
|
CREATE TABLE users (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
email TEXT NOT NULL UNIQUE,
|
|
role TEXT NOT NULL DEFAULT 'member',
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
INSERT INTO users (email, role) VALUES ('a@example.com', 'admin'), ('b@example.com', 'member');
|
|
|
|
-- 2. enum type (for enum search + enum DDL)
|
|
CREATE TYPE user_role AS ENUM ('admin', 'member', 'guest');
|
|
|
|
-- 3. products (backup tests assert 3 rows)
|
|
CREATE TABLE products (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
name TEXT NOT NULL,
|
|
price NUMERIC(10,2) NOT NULL
|
|
);
|
|
INSERT INTO products (name, price) VALUES ('Widget', 9.99), ('Gadget', 19.99), ('Gizmo', 29.99);
|
|
|
|
-- 4. orders + a dependent VIEW (what-depends-on-this test: dropping orders must surface order_summary)
|
|
CREATE TABLE orders (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
user_id BIGINT NOT NULL REFERENCES users(id),
|
|
total NUMERIC(10,2) NOT NULL,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
INSERT INTO orders (user_id, total) VALUES (1, 99.50), (2, 12.00), (1, 45.25);
|
|
|
|
CREATE VIEW order_summary AS
|
|
SELECT u.email, count(o.id) AS order_count, sum(o.total) AS total
|
|
FROM users u LEFT JOIN orders o ON o.user_id = u.id
|
|
GROUP BY u.email;
|
|
|
|
-- 4. functions: audit_log (DDL test) + get_user (search 'get' hit)
|
|
CREATE FUNCTION audit_log(msg text) RETURNS void AS $$
|
|
SELECT pg_sleep(0); -- placeholder body so the function is real
|
|
$$ LANGUAGE sql;
|
|
|
|
CREATE FUNCTION get_user(uid bigint) RETURNS TABLE(email text, role text) AS $$
|
|
SELECT u.email, u.role FROM users u WHERE u.id = uid;
|
|
$$ LANGUAGE sql STABLE;
|
|
|
|
COMMIT;
|
|
|
|
-- Verify
|
|
\echo '--- seeded objects ---'
|
|
SELECT c.relkind::text || ' ' || c.relname
|
|
FROM pg_class c JOIN pg_namespace n ON c.relnamespace = n.oid
|
|
WHERE n.nspname = 'public' AND c.relkind IN ('r','v','S')
|
|
ORDER BY 1;
|
|
\echo '--- public functions ---'
|
|
SELECT p.proname FROM pg_proc p JOIN pg_namespace n ON p.pronamespace = n.oid
|
|
WHERE n.nspname = 'public' ORDER BY 1;
|
|
\echo '--- enums ---'
|
|
SELECT t.typname FROM pg_type t JOIN pg_namespace n ON t.typnamespace = n.oid
|
|
WHERE n.nspname = 'public' AND t.typtype = 'e'; |