Skip to content

Commit 2af6713

Browse files
Merge pull request #43 from PhilippSalvisberg/develop
Fixes issue #42 - ensure oddgen tree gets populated correctly
2 parents 02cfa2f + 68b01e7 commit 2af6713

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqldev/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- The Basics -->
66
<groupId>org.utplsql</groupId>
77
<artifactId>org.utplsql.sqldev</artifactId>
8-
<version>0.6.1</version>
8+
<version>0.6.2</version>
99
<packaging>bundle</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class UtplsqlDao {
288288
lower(a.name) AS name,
289289
a.text,
290290
a.subobject_name
291-
FROM table(ut3.ut_annotation_manager.get_annotated_objects(user, 'PACKAGE')) o
291+
FROM table(«utplsqlSchema».ut_annotation_manager.get_annotated_objects(user, 'PACKAGE')) o
292292
CROSS JOIN table(o.annotations) a
293293
WHERE lower(a.name) in ('suite', 'suitepath', 'endcontext', 'test')
294294
OR lower(a.name) = 'context' AND regexp_like(text, '(\w+)(\.\w+)*')

0 commit comments

Comments
 (0)