summaryrefslogtreecommitdiff
path: root/connectivity/workben
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-13 09:52:43 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-13 10:05:57 +0200
commitf50a41437ee99aee499dbabd1d36ef8197db5559 (patch)
tree27aaa825787a3c3999472ee3a254b9d31100e3d3 /connectivity/workben
parenta91805241c64694b0e4ba16b90edcf56fab2cf5a (diff)
fdo#53246 Fresh postgresql-sdbc implementation names
The descriptions for fdo#53246 "Libo36 does not start, InvalidRegistryException from program/services/postgresql-sdbc.rdb" make it look like the user had installed the functionality that comes bundled in postgresql-sdbc.rdb also as an extension installed per-user or shared. <http://wiki.documentfoundation.org/PostgreSQL-SDBC> indicates that what is now bundled due to c97d74b5f0608866bad3f7ae943811bdff4f7986 "fdo#45090: Changed postgresql-sdbc from bundled oxt to proper optional part" indeed was once available as a freestanding postgresql-sdbc-*.oxt that could have been installed per-user or shared. To prevent problems with such scenarios, rename the relevant implementation names by adding a ".noext" suffix. Change-Id: I43414a64461ba643f0ca0b2749450099cb6c8a4d
Diffstat (limited to 'connectivity/workben')
-rw-r--r--connectivity/workben/postgresql/metadata.py2
-rw-r--r--connectivity/workben/postgresql/preparedstatement.py2
-rw-r--r--connectivity/workben/postgresql/sdbcx.py2
-rw-r--r--connectivity/workben/postgresql/statement.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/workben/postgresql/metadata.py b/connectivity/workben/postgresql/metadata.py
index 8a99a7a2b30c..90764d557768 100644
--- a/connectivity/workben/postgresql/metadata.py
+++ b/connectivity/workben/postgresql/metadata.py
@@ -85,7 +85,7 @@ class TestCase(unittest.TestCase):
def setUp( self ):
self.driver = self.ctx.ServiceManager.createInstanceWithContext(
- 'org.openoffice.comp.connectivity.pq.Driver' , self.ctx )
+ 'org.openoffice.comp.connectivity.pq.Driver.noext' , self.ctx )
self.connection = self.driver.connect( self.dburl, () )
ddl.executeDDLs( self.connection )
diff --git a/connectivity/workben/postgresql/preparedstatement.py b/connectivity/workben/postgresql/preparedstatement.py
index 0489b18c4c00..a44f2ae55472 100644
--- a/connectivity/workben/postgresql/preparedstatement.py
+++ b/connectivity/workben/postgresql/preparedstatement.py
@@ -81,7 +81,7 @@ class TestCase(unittest.TestCase):
def setUp(self):
self.driver = self.ctx.ServiceManager.createInstanceWithContext(
- 'org.openoffice.comp.connectivity.pq.Driver', self.ctx )
+ 'org.openoffice.comp.connectivity.pq.Driver.noext', self.ctx )
self.connection = self.driver.connect( self.dburl, () )
ddl.executeDDLs( self.connection )
diff --git a/connectivity/workben/postgresql/sdbcx.py b/connectivity/workben/postgresql/sdbcx.py
index 3d23214592a5..7c5e97136544 100644
--- a/connectivity/workben/postgresql/sdbcx.py
+++ b/connectivity/workben/postgresql/sdbcx.py
@@ -101,7 +101,7 @@ class TestCase(unittest.TestCase):
def setUp( self ):
self.driver = self.ctx.ServiceManager.createInstanceWithContext(
- 'org.openoffice.comp.connectivity.pq.Driver' , self.ctx )
+ 'org.openoffice.comp.connectivity.pq.Driver.noext' , self.ctx )
self.connection = self.driver.connect( self.dburl, () )
ddl.executeDDLs( self.connection )
diff --git a/connectivity/workben/postgresql/statement.py b/connectivity/workben/postgresql/statement.py
index e230ab7098db..1e752e81bbae 100644
--- a/connectivity/workben/postgresql/statement.py
+++ b/connectivity/workben/postgresql/statement.py
@@ -104,7 +104,7 @@ class TestCase(unittest.TestCase):
def setUp(self):
self.driver = self.ctx.ServiceManager.createInstanceWithContext(
- 'org.openoffice.comp.connectivity.pq.Driver' , self.ctx )
+ 'org.openoffice.comp.connectivity.pq.Driver.noext' , self.ctx )
self.connection = self.driver.connect( self.dburl, () )
self.stmt = self.connection.createStatement()
try: