Skip to content

Commit bf8ef01

Browse files
authored
Clarify comment. (#1374)
1 parent 1510a34 commit bf8ef01

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/oss/postgres/prepare/database/functions.sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
-- The functions below provide ensure semantics while only acquiring exclusive locks on mutations.
99

1010
-- fn_ensure_table is a lock-friendly replacement for `CREATE TABLE IF NOT EXISTS`.
11-
-- WARNING: This function does not support uppercase names.
11+
-- WARNING: This function translates all names into lowercase (as plain postgres would).
12+
-- If you want to use lowercase characters, (e.g. through quotation) do not use this funtion.
1213
--
1314
-- Example usage:
1415
--
@@ -31,7 +32,8 @@ END
3132
$func$;
3233

3334
-- fn_ensure_column is a lock-friendly replacement for `ALTER TABLE ... ADD COLUMN IF NOT EXISTS`.
34-
-- WARNING: This function does not support uppercase names.
35+
-- WARNING: This function translates all names into lowercase (as plain postgres would).
36+
-- If you want to use lowercase characters, (e.g. through quotation) do not use this funtion.
3537
--
3638
-- Example usage:
3739
--

0 commit comments

Comments
 (0)