PostgreSQL install error
curtis - February 18, 2007 - 05:04
| Project: | Custom Pagers |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
There's a small typo in the installation SQL for Postgres databases. Specifically, in custom_pagers.install, this line:
db_query("CREATE INDEX {custom_pagers}_pid_idx ON {custom_pagers} (pid)");
should be:
db_query("CREATE INDEX {custom_pagers}_pid_idx ON {custom_pager} (pid)");
(The second "custom_pagers" should be "custom_pager" with no s).
Patch attached.
Thanks,
Curtis.
| Attachment | Size |
|---|---|
| custom_pagers.install.patch | 435 bytes |

#1
Fixed -- neither of them should have the plural 's'. Thanks!
#2