Skip to content

Commit 8ad5e78

Browse files
Do not hard-code utPLSQL schema (again)
1 parent 0f12ca8 commit 8ad5e78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/dal/UtplsqlDao.xtend

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ class UtplsqlDao {
492492
lower(a.name) AS name,
493493
a.text,
494494
a.subobject_name
495-
FROM table(ut3.ut_annotation_manager.get_annotated_objects(user, 'PACKAGE')) o
495+
FROM table(«utplsqlSchema».ut_annotation_manager.get_annotated_objects(user, 'PACKAGE')) o
496496
CROSS JOIN table(o.annotations) a
497497
WHERE lower(a.name) in ('suite', 'suitepath', 'endcontext', 'test')
498498
OR lower(a.name) = 'context' AND regexp_like(text, '(\w+)(\.\w+)*')

0 commit comments

Comments
 (0)