Skip to content

Commit 7ff0b6d

Browse files
committed
fix: minor formatting changes
1 parent 60c244b commit 7ff0b6d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

migrations/tenant/0006-change-column-name-in-get-size.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DROP FUNCTION IF EXISTS storage.get_size_by_bucket;
1+
DROP FUNCTION IF EXISTS storage.get_size_by_bucket();
22
CREATE OR REPLACE FUNCTION storage.get_size_by_bucket()
33
RETURNS TABLE (
44
size BIGINT,

migrations/tenant/0027-search-v2.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
CREATE OR REPLACE FUNCTION storage.search_v2 (
23
prefix text,
34
bucket_name text,

migrations/tenant/0048-iceberg-catalog-ids.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ DO $$
5757
ALTER TABLE storage.iceberg_namespaces ADD COLUMN IF NOT EXISTS catalog_id uuid NULL;
5858
ALTER TABLE storage.iceberg_tables ADD COLUMN IF NOT EXISTS catalog_id uuid NULL;
5959

60-
-- Add FK constraints if they don't exist (handles idempotency when column already exists)
6160
IF NOT EXISTS (
6261
SELECT 1 FROM information_schema.table_constraints
6362
WHERE table_schema = 'storage'

0 commit comments

Comments
 (0)