We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f83f807 commit 7ce3b32Copy full SHA for 7ce3b32
src/main/scala/com/chilipiper/quartz/SchedulerQuartz.scala
@@ -149,7 +149,7 @@ object SchedulerQuartz {
149
SELECT EXISTS (
150
SELECT 1
151
FROM information_schema.tables
152
- WHERE table_schema = $schema AND table_name LIKE ${prefix + "%"}
+ WHERE table_schema = $schema AND LOWER(table_name) LIKE LOWER(${prefix + "%"})
153
)
154
""".query[Boolean].unique.transact(transactor)
155
0 commit comments