We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5a7282 + c9ee54a commit 9e32febCopy full SHA for 9e32feb
src/Hangfire.PostgreSql/Scripts/Install.v23.sql
@@ -12,7 +12,7 @@ DROP INDEX IF EXISTS ix_hangfire_job_statename_is_not_null;
12
DO $$
13
BEGIN
14
IF current_setting('server_version_num')::int >= 110000 THEN
15
- CREATE INDEX ix_hangfire_job_statename_is_not_null ON job USING btree(statename) INCLUDE (id) WHERE statename IS NOT NULL;
+ EXECUTE 'CREATE INDEX ix_hangfire_job_statename_is_not_null ON job USING btree(statename) INCLUDE (id) WHERE statename IS NOT NULL';
16
ELSE
17
CREATE INDEX ix_hangfire_job_statename_is_not_null ON job USING btree(statename) WHERE statename IS NOT NULL;
18
END IF;
0 commit comments