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.
| Comment | File | Size | Author |
|---|---|---|---|
| custom_pagers.install.patch | 435 bytes | Anonymous (not verified) |
Comments
Comment #1
eaton commentedFixed -- neither of them should have the plural 's'. Thanks!
Comment #2
(not verified) commented