-
that looks like task misconfiguration.
On oracle, if the task isn't constrained to a specific schema, it will go over all the schemas, including system ones. I think in that case, it's analysis all the system tables in addition to the test ones, but fails due to some circular dependency in tables in the system dbs.
So the fix would be specify the appropriate schema="...." in the task.
2009-11-06 09:33:56 UTC in DbUnit
-
I've uploaded the patch that include unit tests for replace, ordered, replace+ordered. The last two will fail without the also included patch to disable forward when ordered is on.
2009-11-02 12:26:43 UTC in DbUnit
-
Yes certainly... it's not a great solution since it means disabling forward, which i assume would impact performance :-(
I'll do that this weekend, things quite insane at work hehe :)
2009-10-28 13:30:55 UTC in DbUnit
-
done.
2009-10-27 13:31:53 UTC in DbUnit
-
Ops uploaded the wrong file.. re-uploading the correct one (too much rushing around this week :( )
2009-10-27 13:14:13 UTC in DbUnit
-
Agh, there seems to be problem when the dataset is streaming and the ReplacementDataset (causes a OperationNotSupportedException)
I've created a patch that works around it by disabling forwardOperation if a replacement token is used, I'm going to attach it to the issue
Unless you know some better way where it's possible to make replacement DS work with stream DS ?.
2009-10-27 12:19:56 UTC in DbUnit
-
Hi,
I've made a couple very useful improvements to the ant task, which plug a couple gaps that made the ant tasks unusable in a significant amount of use-cases
The first one is a nullToken attribute (string), which if used will use a ReplacementDataSet to replace that string as a null
The second one is the ordered attribute, which does the same as in the export task (adds a...
2009-10-23 10:55:36 UTC in DbUnit