Skip to content
Snippets Groups Projects
Commit c2823a5c authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #37589 by Cvgbe: make prefix.sh work with PostgreSQL: prefix indices properly.

parent 6360db2d
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,6 @@
s/^ALTER TABLE /ALTER TABLE $PRFX/;
s/^CREATE SEQUENCE /CREATE SEQUENCE $PRFX/;
s/^ALTER SEQUENCE /ALTER SEQUENCE $PRFX/;
s/^CREATE INDEX \(.*\) ON /CREATE INDEX \\1 ON $PRFX/;
s/^CREATE INDEX \(.*\) ON /CREATE INDEX $PRFX\\1 ON $PRFX/;
" $2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment