File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
library/oss/postgres/prepare/database Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 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--
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--
You can’t perform that action at this time.
0 commit comments