Skip to content

Commit 1b14205

Browse files
Merge pull request #45 from PhilippSalvisberg/develop
Fixes issue #44 - Convert suitepaths cases to lower case
2 parents 2af6713 + 09eb756 commit 1b14205

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sqldev/pom.xml

Lines changed: 1 addition & 1 deletion
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.2</version>
8+
<version>0.6.3</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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ class UtplsqlDao {
299299
WHERE name = 'suite'
300300
),
301301
suitepath as (
302-
SELECT object_owner, object_type, object_name, text AS suitepath
302+
SELECT object_owner, object_type, object_name, lower(text) AS suitepath
303303
FROM base
304304
WHERE name = 'suitepath'
305305
),

sqldev/src/test/java/org/utplsql/sqldev/tests/DalTest.xtend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ class DalTest extends AbstractJdbcTest {
251251
jdbcTemplate.execute('''
252252
CREATE OR REPLACE PACKAGE junit_utplsql_test_pkg IS
253253
-- %suite
254-
-- %suitepath(a.b.c)
254+
-- %suitepath(a.B.c)
255255
256256
-- %test
257257
PROCEDURE t0;

0 commit comments

Comments
 (0)