<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-23277</id>
	<title>Nabble - LiquiBase - Development</title>
	<updated>2009-11-06T02:11:18Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/LiquiBase---Development-f23277.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/LiquiBase---Development-f23277.html" />
	<subtitle type="html">For &lt;a href=&quot;http://www.liquibase.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;LiquiBase&lt;/a&gt;&amp;nbsp;committers, and those interested in the internal workings of LiquiBase.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26229545</id>
	<title>New Topic: Is it possible to define a changeset programmatically?</title>
	<published>2009-11-06T02:11:18Z</published>
	<updated>2009-11-06T02:11:18Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Is it possible to define a changeset programmatically?', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=218.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=218.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I would like to use Liquibase for inserting master data in a JPA environment, so I have no need to define SQL statements
&lt;br&gt;or using &amp;lt;insert&amp;gt; in changesets. I would prefer to define a changeset programatically, e.g. as a Java class implementing
&lt;br&gt;a special interface or as a JUnit Testcase (because then I can use SpringRunner and the like to get the PersistenceContext)
&lt;br&gt;This way I could use JPA for creating the data, keep the refactoring support of my IDE and use LiquiBase just for the
&lt;br&gt;book keeping.
&lt;br&gt;So, is something like this already supported? If not, do you think some kind of JUnit extension is easy to implement?
&lt;br&gt;(would also be nice for defining prerequisites)
&lt;br&gt;&lt;br&gt;To make myself clear, I want to define something like this:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;changeSet id=&amp;quot;1&amp;quot; author=&amp;quot;robin&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;execute class=&amp;quot;de/robin/InsertNewStates&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/changeSet&amp;gt;
&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;&lt;br&gt;Robin.
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26229545&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Is-it-possible-to-define-a-changeset-programmatically--tp26229545p26229545.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25926362</id>
	<title>New Topic: How to configure logging</title>
	<published>2009-10-16T07:29:23Z</published>
	<updated>2009-10-16T07:29:23Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'How to configure logging', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=197.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=197.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Had a look through the 2.0-RC1 code in an attempt to find out how to configure the new logging architecture. In 1.9.4 it was quite easy 
&lt;br&gt;to reconfigure java.util.logging to use log4j instead but now I cant really figure out how this is possible.
&lt;br&gt;The LogFactory seems to use the ServiceLocator singleton to look up Logger.class so in order to reroute log messages to log4j instead I would have to implement a log4j bridge by using this interface.
&lt;br&gt;But how can I make sure that the ServiceLocator uses my bridge instead of the default logger? How do I configure the ServiceLocator?
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;Lars Gråmark
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25926362&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-How-to-configure-logging-tp25926362p25926362.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25687641</id>
	<title>New Topic: problem with caching of lock and changelog table existing</title>
	<published>2009-09-30T12:45:39Z</published>
	<updated>2009-09-30T12:45:39Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'problem with caching of lock and changelog table existing ', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=179.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=179.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I Run Liquibase with postgresql, where for each schema a new instanceof Liquibase is created and run with a different default-schema-name and changelog file.
&lt;br&gt;&lt;br&gt;liquibase then creates a lock and changelog table in each schema - which is very good for me because the schemas should be completley independent of eachother.
&lt;br&gt;&lt;br&gt;Today I run into a problem, which I think did not happen before because I always build the single modules(each module has one db schema), and in the context of the tests, the db-schemas are created and liquibase is run a single time.
&lt;br&gt;&lt;br&gt;But when running liquibase multiple times on the same vm with different default-schemas, the JdbcDatabaseSnapshotGenerator instance, which is referenced from a static instance (and thus being shared by all instances of liquibase on the same VM), caches the hasDatabaseChangeLogTable and the hasDatabaseChangeLogLockTable values. So, even if for the actual schema there is no lock table or changelog file, liquibase is informed it does exist, which ofcause does not work right.
&lt;br&gt;&lt;br&gt;So - I removed this fields from JdbcDatabaseSnapshotGenerator - 
&lt;br&gt;&lt;br&gt;I searched just a bit and think that the only call to the methods that cache these values are from when initializing liquibase, and I ask myself if it make sense to cache them. Usually, liquibase will be instanciated once, and ran once, not ? &amp;nbsp;so there is no point in caching these values, because they are only used once, not? and if liquibase is run more than once, maybe it *is* better to check every time - as my settings proof...
&lt;br&gt;&lt;br&gt;I am not sure, so I just wanted to ask (sorry for the long post) if I should commit the change ?
&lt;br&gt;&lt;br&gt;Cheers, Ron
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25687641&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-problem-with-caching-of-lock-and-changelog-table-existing-tp25687641p25687641.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25590759</id>
	<title>New Topic: is CORE-476 fixed in trunk ?</title>
	<published>2009-09-24T00:38:59Z</published>
	<updated>2009-09-24T00:38:59Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'is CORE-476 fixed in trunk ?', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=170.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=170.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I Saw that CORE-476 is set fixed. Is the fix in trunk yet ?
&lt;br&gt;&lt;br&gt;Cheers, Ron
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25590759&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-is-CORE-476-fixed-in-trunk---tp25590759p25590759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25555292</id>
	<title>New Topic: Adding new datatype via the ServiceLocator</title>
	<published>2009-09-21T23:42:45Z</published>
	<updated>2009-09-21T23:42:45Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Adding new datatype via the ServiceLocator', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=164.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=164.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I wonder what the best way is to add a new data type to Liquibase. Lets say that in the changelog XML I have columns of type DECIMAL, for Oracle these must be converted to NUMBER. I created a new class extending OracleTypeConverter overriding the getDataType(String, Boolean) method. In case I need to change a datatype for one of the supported types I override the getXXXType() method.
&lt;br&gt;&lt;br&gt;The class is pushed into Liquibase using the ServiceLocator.addPackageToScan(String) method. When the changelog is parsed and processed Liquibase uses my class instead of the original OracleTypeConvertor. 
&lt;br&gt;&lt;br&gt;Is this the intended approach to extend datatypes? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25555292&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Adding-new-datatype-via-the-ServiceLocator-tp25555292p25555292.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25434939</id>
	<title>New Topic: Liquibase doesn,t support precision</title>
	<published>2009-09-14T05:21:30Z</published>
	<updated>2009-09-14T05:21:30Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Liquibase doesn,t support precision', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=146.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=146.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi Nathan.
&lt;br&gt;I noticed that when I try to use CreateTable tag to create new table, I've got problem with ColumnType attribute. When ColumnType value is for example: NUMBER(10) I've got following error:
&lt;br&gt;&lt;br&gt;Code:
&lt;br&gt;liquibase.exception.UnexpectedLiquibaseException: Type class liquibase.database.structure.type.NumberType doesn't support precision but precision was specified: NUMBER(10)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.database.typeconversion.core.AbstractTypeConverter.getColumnType(AbstractTypeConverter.java:216)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.sqlgenerator.core.CreateTableGenerator.generateSql(CreateTableGenerator.java:45)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.ext.ora.splittable.SplitTableGenerator.Transition(SplitTableGenerator.java:131)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.ext.ora.splittable.SplitTableGenerator.generateSql(SplitTableGenerator.java:35)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.ext.ora.splittable.SplitTableGenerator.generateSql(SplitTableGenerator.java:1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.sqlgenerator.SqlGeneratorChain.generateSql(SqlGeneratorChain.java:29)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.sqlgenerator.SqlGeneratorFactory.generateSql(SqlGeneratorFactory.java:119)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at liquibase.ext.ora.splittable.SplitTableChangeTest.parseAndGenerate(SplitTableChangeTest.java:113)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;Do you have any suggestion?
&lt;br&gt;&lt;br&gt;Tomek
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25434939&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Liquibase-doesn%2Ct-support-precision-tp25434939p25434939.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25430185</id>
	<title>New Topic: Should 'or precondition's be Short Circuited (aka Lazy Evaluation)?</title>
	<published>2009-09-13T21:30:07Z</published>
	<updated>2009-09-13T21:30:07Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Should 'or precondition's be Short Circuited (aka Lazy Evaluation)?', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=145.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=145.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Should orpreconditions be short circuited?
&lt;br&gt;&lt;br&gt;As it is, you cannot have pre-conditions like &amp;quot;only run if this table is missing OR, if it exists, check that it contains a particular record&amp;quot;.
&lt;br&gt;&lt;br&gt;e.g.
&lt;br&gt;&lt;br&gt;Code:
&lt;br&gt;&amp;lt;precondition&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;or&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;not&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tableExists tableName=&amp;quot;some_table&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/not&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;sqlCheck expectedResult=&amp;quot;0&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT MAX(id)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; FROM some_table
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/sqlCheck&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/or&amp;gt;
&lt;br&gt;&amp;lt;/precondition&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;However, if orprecondition's were short-circuit and evaluated in the order that they appear, then once one condition evaluates to true, you do not need to continue evaluating other conditions in the or block.
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25430185&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Should-%27or-precondition%27s-be-Short-Circuited-%28aka-Lazy-Evaluation%29--tp25430185p25430185.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25428838</id>
	<title>New Topic: Looking for help with liquibase maven config</title>
	<published>2009-09-13T17:15:18Z</published>
	<updated>2009-09-13T17:15:18Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Looking for help with liquibase maven config', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=144.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=144.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;I'm trying to get maven to run fully so I can release beta3, but when I run the mvn package command, I get the error: 
&lt;br&gt;&lt;br&gt;Code:
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[ERROR] BUILD ERROR
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Failed to resolve artifact.
&lt;br&gt;&lt;br&gt;Missing:
&lt;br&gt;----------
&lt;br&gt;1) org.liquibase:liquibase-core:test-jar:tests:2.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;&amp;nbsp; Try downloading the file manually from the project website.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Then, install it using the command: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.liquibase -DartifactId=liquibase-core -Dversion=2.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
&lt;br&gt;&lt;br&gt;&amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.liquibase -DartifactId=liquibase-core -Dversion=2.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
&lt;br&gt;&lt;br&gt;&amp;nbsp; Path to dependency: 
&lt;br&gt;&amp;nbsp; 	1) org.liquibase:liquibase-core-jvm:jar:2.0-SNAPSHOT
&lt;br&gt;&amp;nbsp; 	2) org.liquibase:liquibase-core:test-jar:tests:2.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;----------
&lt;br&gt;1 required artifact is missing.
&lt;br&gt;&lt;br&gt;for artifact: 
&lt;br&gt;&amp;nbsp; org.liquibase:liquibase-core-jvm:jar:2.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any maven experts know what I am doing wrong? &amp;nbsp;You should be able to see the error if you build core trunk
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25428838&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Looking-for-help-with-liquibase-maven-config-tp25428838p25428838.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25328513</id>
	<title>New Topic: Submit a patch for SpringLiquibase</title>
	<published>2009-09-07T03:41:03Z</published>
	<updated>2009-09-07T03:41:03Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Submit a patch for SpringLiquibase', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=139.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=139.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I Just tried to submit a patch to SpringLiquibase via Jira and noticed I could not open a JIRA Issue without choosing a resolution, which is kind of funny, because the issue has no resolution.
&lt;br&gt;&lt;br&gt;Here is the text for the issue:
&lt;br&gt;&lt;br&gt;Quote
&lt;br&gt;Hi, I attach a patch to the SpringLiquibase class-
&lt;br&gt;&lt;br&gt;I Changed SpringLiquibase to enable subclassing and manipulating the Database object before instanciating Liquibase - specifically I need it in order to specify a default schema before proceeding, but maybe someone else needs it also...
&lt;br&gt;&lt;br&gt;So one can now subclass the SpringLiquibase been and manipulate the Database before creating the Liquibase object itself...
&lt;br&gt;&lt;br&gt;Cheers, Ron
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;and the patch is also attached here.
&lt;br&gt;&lt;br&gt;Cheers, Ron
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25328513&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Submit-a-patch-for-SpringLiquibase-tp25328513p25328513.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24900362</id>
	<title>New Topic: Release 2.0</title>
	<published>2009-08-10T07:02:08Z</published>
	<updated>2009-08-10T07:02:08Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Release 2.0', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=113.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=113.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I was just wondering... When is Liquibase 2.0 going to be final? Are there any dates yet?
&lt;br&gt;Thanks, Karl
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24900362&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Release-2.0-tp24900362p24900362.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24804435</id>
	<title>New Topic: Nested tags (sub-tags)</title>
	<published>2009-08-04T01:37:28Z</published>
	<updated>2009-08-04T01:37:28Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Nested tags (sub-tags)', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=100.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=100.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Is it possible to create nested tags (sub-tags) as LiquiBase extension?
&lt;br&gt;&lt;br&gt;I have got problem with this kind of tags. LiquiBase can't recognise nested tags.
&lt;br&gt;&lt;br&gt;For example, my tag's schema:
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Code:
&lt;br&gt;&amp;nbsp;&amp;lt;xsd:element name=&amp;quot;mergeTables&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:element ref=&amp;quot;Update&amp;quot; maxOccurs=&amp;quot;1&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:element ref=&amp;quot;Insert&amp;quot; maxOccurs=&amp;quot;1&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;onCondition&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;required&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;targetTableName&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;required&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;targetSchemaName&amp;quot; type=&amp;quot;xsd:string&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;sourceSchemaName&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;required&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;sourceTableName&amp;quot; type=&amp;quot;xsd:string&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/xsd:element&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;xsd:element name=&amp;quot;Update&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:element ref=&amp;quot;column&amp;quot; minOccurs=&amp;quot;1&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;updateCondition&amp;quot; type=&amp;quot;xsd:string&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;deleteCondition&amp;quot; type=&amp;quot;xsd:string&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/xsd:element&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;xsd:element name=&amp;quot;Insert&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:element ref=&amp;quot;column&amp;quot; maxOccurs=&amp;quot;unbounded&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:attribute name=&amp;quot;insertCondition&amp;quot; type=&amp;quot;xsd:string&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsd:complexType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/xsd:element&amp;gt;
&lt;br&gt;&lt;br&gt;dalt
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24804435&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Nested-tags-%28sub-tags%29-tp24804435p24804435.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24795067</id>
	<title>New Topic: Column Exists Precondition is Slow</title>
	<published>2009-08-03T10:42:03Z</published>
	<updated>2009-08-03T10:42:03Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Column Exists Precondition is Slow', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=98.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=98.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;The columnExists precondition takes about 5 seconds to run on our database. &amp;nbsp;We have about 80 tables and 800+ columns.
&lt;br&gt;&lt;br&gt;Its building up the entire DatabaseSnapshot in a liquibase object before using the generic liquibase calls in each precondition. 
&lt;br&gt;I added a patch for mysql databases that does a sql call into the information_schema space. &amp;nbsp;This takes milleseconds to run. &amp;nbsp;(see attached).
&lt;br&gt;&lt;br&gt;Alternatively, the generated DatabaseSnapshot object could be cached until a database modification is done in a changeset, but I didn't see a quick way to do that.
&lt;br&gt;&lt;br&gt;The tableExists, foreignKeyExists, indexExists, viewExists, etc could stand to have a similar improvement. 
&lt;br&gt;&lt;br&gt;(I haven't looked at the 2.0 branch yet to see if this overall problem is solved)
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24795067&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Column-Exists-Precondition-is-Slow-tp24795067p24795067.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24787955</id>
	<title>New Topic: Add Primary Key - extension tag</title>
	<published>2009-08-03T02:44:16Z</published>
	<updated>2009-08-03T02:44:16Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Add Primary Key - extension tag', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=97.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=97.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I have been creating some extension for Oracle DB, most of all new specialised tags (not defined in LiquideBase, for example CREATE TRIGGER and DROP TRIGGER for Oracle). Everything work fine until I added tag ADD PRIMARY KEY which is defined in LiquideBase (I wanted to extend this tag by adding attributes: DEFERRABLE and INITIALLYDEFERRED).
&lt;br&gt;&lt;br&gt;What's my problem?
&lt;br&gt;&lt;br&gt;Code:
&lt;br&gt;&amp;lt;databaseChangeLog
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlns=&amp;quot;&lt;a href=&quot;http://www.liquibase.org/xml/ns/dbchangelog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.liquibase.org/xml/ns/dbchangelog&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlns:ora=&amp;quot;&lt;a href=&quot;http://www.liquibase.org/xml/ns/dbchangelog-ext&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.liquibase.org/xml/ns/dbchangelog-ext&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://www.liquibase.org/xml/ns/dbchangelog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.liquibase.org/xml/ns/dbchangelog&lt;/a&gt;&amp;nbsp;../../../../../java/liquibase/ext/ora/xml/dbchangelog-2.0.xsd
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.liquibase.org/xml/ns/dbchangelog-ext&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.liquibase.org/xml/ns/dbchangelog-ext&lt;/a&gt;&amp;nbsp;../../../../../java/liquibase/ext/ora/xml/dbchangelog-ext.xsd&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;changeSet id=&amp;quot;2&amp;quot; author=&amp;quot;author01&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- my extension --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- &amp;lt;ora:addPrimaryKey tableName=&amp;quot;AddPrimaryKeyTest&amp;quot; columnNames=&amp;quot;id&amp;quot; deferrable=&amp;quot;true&amp;quot; initiallyDeferred=&amp;quot;true&amp;quot; constraintName=&amp;quot;PK_AddPrimaryKeyTest&amp;quot;/&amp;gt; --&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;!-- LiquiBase &amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;addPrimaryKey tableName=&amp;quot;AddPrimaryKeyTest&amp;quot; columnNames=&amp;quot;id&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/changeSet&amp;gt;
&lt;br&gt;&lt;br&gt;In this case &amp;nbsp;ADD PRIMARY KEY should be created by rules from LiquiBase, but classes from extension are used (package liquibase.ext.ora.addprimarykey;)
&lt;br&gt;&lt;br&gt;I suppose that it doesn't work because classes names in LiquiBase and my extension are same (but package is different!). Because of that, classes from extensin override classes from LiquiBase and tag &amp;lt;addPrimaryKey tableName=&amp;quot;AddPrimaryKeyTest&amp;quot; columnNames=&amp;quot;id&amp;quot; /&amp;gt; &amp;nbsp;is maintained by extension classes.
&lt;br&gt;&lt;br&gt;Is there any way I should follow? Do I have to rename my tag and classes names?
&lt;br&gt;&lt;br&gt;dalt
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24787955&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Add-Primary-Key---extension-tag-tp24787955p24787955.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24597823</id>
	<title>New Topic: Wondering about SVN...</title>
	<published>2009-07-21T16:55:00Z</published>
	<updated>2009-07-21T16:55:00Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Wondering about SVN...', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=87.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=87.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi Nathan,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I was just browsing the SVN repository as I finally found some time to work on the addition of an M2 MOJO for dbDoc mentioned in CORE-49 and I noticed that you've updated the jira to go into LB 2.0 so I'm just confirming that 2.0 is now trunk. &amp;nbsp;I'd hate to do the work in the wrong tree &amp;nbsp;;) &amp;nbsp;
&lt;br&gt;&lt;br&gt;On a different (but related) note, I noticed a TRY-M2 branch... would this happen to be a proof-of-concept branch that the migration to M2 would be taking place in? &amp;nbsp;If so, I would love to contribute to this effort as all of my projects are being built with M2 these days. &amp;nbsp;Let me know if you would like some help in this arena as I have some time to contribute.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;-Ryan
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24597823&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Wondering-about-SVN...-tp24597823p24597823.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24411987</id>
	<title>New Topic: change log file is not generated by 'updateDatabase' ant task</title>
	<published>2009-07-09T08:10:07Z</published>
	<updated>2009-07-09T08:10:07Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'change log file is not generated by 'updateDatabase' ant task', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=73.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=73.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;In our project we are using 'Build and Deployment Automation (BDA)' tool for building and deployment of the project. The BDA uses liquibase for database versioning (liquibase-1.9.3.jar). When the 'updateDatabase' ant task is executed through BDA tool the change log file is not getting generated. In other projects the BDA is working fine. After searching through web found that hibernate jar should be in classpath : &lt;a href=&quot;http://mrdkl.wordpress.com/2008/06/27/fun-with-liquibase/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mrdkl.wordpress.com/2008/06/27/fun-with-liquibase/&lt;/a&gt;. 
&lt;br&gt;I cross checked the classpath and updated so that it will contain hibernate jar. Bust still no change log file is getting generated.
&lt;br&gt;&lt;br&gt;Please help us to find out what configuration we are missing.
&lt;br&gt;&lt;br&gt;~vijay
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Enter the BlackBerry Developer Challenge &amp;nbsp;
&lt;br&gt;This is your chance to win up to $100,000 in prizes! For a limited time, 
&lt;br&gt;vendors submitting new applications to BlackBerry App World(TM) will have
&lt;br&gt;the opportunity to enter the BlackBerry Developer Challenge. See full prize &amp;nbsp;
&lt;br&gt;details at: &lt;a href=&quot;http://p.sf.net/sfu/Challenge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/Challenge&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24411987&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-change-log-file-is-not-generated-by-%27updateDatabase%27-ant-task-tp24411987p24411987.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24396369</id>
	<title>New Topic: Problem building/testing 1.9.x branch: failing tests</title>
	<published>2009-07-08T10:26:47Z</published>
	<updated>2009-07-08T10:26:47Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Problem building/testing 1.9.x branch: failing tests', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=71.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=71.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I have been using Liquibase for about a year now, but this is the first time I've tried to build it. &amp;nbsp;I am also new to svn, so that doesn't help. &amp;nbsp;I am a fairly old hand at ant and java.
&lt;br&gt;&lt;br&gt;I'm building and running tests, and I'm encountering some failures and errors.
&lt;br&gt;&lt;br&gt;I grabbed what I think is the 1.9.x branch using this command:
&lt;br&gt;&amp;nbsp; &amp;nbsp; svn co &lt;a href=&quot;http://liquibase.jira.com/svn/CORE/branches/1_9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.jira.com/svn/CORE/branches/1_9&lt;/a&gt;&amp;nbsp;liquibase_BR_1_9
&lt;br&gt;&lt;br&gt;Then I navigated into the liquibase_BR_1_9/core/src &amp;nbsp;directory and built using this command:
&lt;br&gt;&amp;nbsp; &amp;nbsp; ant
&lt;br&gt;&lt;br&gt;Then I built and ran the tests using this command:
&lt;br&gt;&amp;nbsp; &amp;nbsp; ant test
&lt;br&gt;&lt;br&gt;With the results that I got 1 failure and 7 errors.
&lt;br&gt;&lt;br&gt;liquibase.LiquibaseTest failed with Code:
&lt;br&gt;junit.framework.AssertionFailedError: expected:&amp;lt;14&amp;gt; but was:&amp;lt;15&amp;gt;
&lt;br&gt;at liquibase.LiquibaseTest.getImplementedDatabases(LiquibaseTest.java:76)
&lt;br&gt;. &amp;nbsp;I looked at the code, and DatabaseFactory is creating 15 Databases, but the LiquibaseTest is asserting against 14.
&lt;br&gt;&lt;br&gt;liquibase.change.AddColumnChangeTest is erroring out in the sybaseNull, sybaseNotNull, and sybaseConstraintsNull tests.
&lt;br&gt;Code:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: sybaseNull(liquibase.change.AddColumnChangeTest): Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;...TER TABLE [TAB] ADD [NEWCOL] TYP NULL&amp;gt; but was:&amp;lt;...TER TABLE [TAB] ADD [[NEWCOL]] TYP NULL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.change.AddColumnChangeTest.sybaseNull(AddColumnChangeTest.java:218)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: sybaseNotNull(liquibase.change.AddColumnChangeTest): &amp;nbsp; &amp;nbsp; &amp;nbsp;Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;...TER TABLE [TAB] ADD [NEWCOL] TYP NOT NULL&amp;gt; but was:&amp;lt;...TER TABLE [TAB] ADD [[NEWCOL]] TYP NOT NULL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.change.AddColumnChangeTest.sybaseNotNull(AddColumnChangeTest.java:237)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: sybaseConstraintsNull(liquibase.change.AddColumnChangeTest): &amp;nbsp; &amp;nbsp; &amp;nbsp;Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;...TER TABLE [TAB] ADD [NEWCOL] TYP NULL&amp;gt; but was:&amp;lt;...TER TABLE [TAB] ADD [[NEWCOL]] TYP NULL&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.change.AddColumnChangeTest.sybaseConstraintsNull(AddColumnChangeTest.java:257)
&lt;br&gt;&lt;br&gt;&lt;br&gt;liquibase.change.ModifyColumnChangeTest is erroring out in the generateStatement and generateFullStatementForMysql tests.
&lt;br&gt;Code:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: generateStatement(liquibase.change.ModifyColumnChangeTest): &amp;nbsp; &amp;nbsp; &amp;nbsp; Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;..._NAME MODIFY ( NAME [integer](3) )&amp;gt; but was:&amp;lt;..._NAME MODIFY ( NAME [INT](3) )&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.change.ModifyColumnChangeTest.generateStatement(ModifyColumnChangeTest.java:44)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: generateFullStatementForMysql(liquibase.change.ModifyColumnChangeTest): &amp;nbsp; Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;...NAME` MODIFY `NAME` [integer](3) NOT NULL DEFAULT...&amp;gt; but was:&amp;lt;...NAME` MODIFY `NAME` [INT](3) NOT NULL DEFAULT...&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.change.ModifyColumnChangeTest.generateFullStatementForMysql(ModifyColumnChangeTest.java:85)
&lt;br&gt;&lt;br&gt;&lt;br&gt;liquibase.database.H2DatabaseTest errors out in the escapeTableName_noSchema and escapeTableName_withSchema tests.
&lt;br&gt;Code:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: escapeTableName_noSchema(liquibase.database.H2DatabaseTest): &amp;nbsp; &amp;nbsp; &amp;nbsp;Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;[`tableName`]&amp;gt; but was:&amp;lt;[tableName]&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.database.H2DatabaseTest.escapeTableName_noSchema(H2DatabaseTest.java:73)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: escapeTableName_withSchema(liquibase.database.H2DatabaseTest): &amp;nbsp; &amp;nbsp;Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] null expected:&amp;lt;[`schemaName`.`tableName`]&amp;gt; but was:&amp;lt;[schemaName.tableName]&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; &amp;nbsp; at liquibase.database.H2DatabaseTest.escapeTableName_withSchema(H2DatabaseTest.java:79)
&lt;br&gt;&lt;br&gt;&lt;br&gt;JAVA_HOME points to JDK 1.5 (I usually build with JDK 6 but Liquibase seems to want 1.5.)
&lt;br&gt;&lt;br&gt;Ant is 1.7.0.
&lt;br&gt;&lt;br&gt;I'm building on cygwin under Windows XP.
&lt;br&gt;&lt;br&gt;Do these test cases currently pass for other people? &amp;nbsp;If so, then it's something in my environment that I need to fix, or maybe I'm grabbing the code wrong or building it wrong. &amp;nbsp;But looking at the first one, I'm not so sure it's me. &amp;nbsp;I thought it might be leftovers from a previous version of Liquibase, but I've cleared out my CLASSPATH.
&lt;br&gt;&lt;br&gt;Is the official daily build junit results posted online somewhere?
&lt;br&gt;&lt;br&gt;thanks for any help,
&lt;br&gt;shoover
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Enter the BlackBerry Developer Challenge &amp;nbsp;
&lt;br&gt;This is your chance to win up to $100,000 in prizes! For a limited time, 
&lt;br&gt;vendors submitting new applications to BlackBerry App World(TM) will have
&lt;br&gt;the opportunity to enter the BlackBerry Developer Challenge. See full prize &amp;nbsp;
&lt;br&gt;details at: &lt;a href=&quot;http://p.sf.net/sfu/Challenge&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/Challenge&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24396369&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Problem-building-testing-1.9.x-branch%3A-failing-tests-tp24396369p24396369.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24320625</id>
	<title>New Topic: Sybase support not correct</title>
	<published>2009-07-03T03:01:31Z</published>
	<updated>2009-07-03T03:01:31Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Sybase support not correct', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=66.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=66.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I am using generating sybase db statements using liquibase jar.
&lt;br&gt;For generated statements look like:
&lt;br&gt;CREATE TABLE [AA774] (ID INT IDENTITY &amp;nbsp;NOT NULL, V1 INT NULL, CONSTRAINT [PKCN_AA774] PRIMARY KEY (ID))
&lt;br&gt;(Class used to generate this statement is CreateTableStatement)
&lt;br&gt;&lt;br&gt;CREATE UNIQUE INDEX [X1_AA774] ON [AA774](V1)
&lt;br&gt;(Class used to generate this statement is CreateTableStatement)
&lt;br&gt;&lt;br&gt;DROP INDEX [AA774].[X1_AA774]
&lt;br&gt;(Class used to generate this statement is DropIndexStatement)
&lt;br&gt;&lt;br&gt;DROP VIEW [V_AA774]
&lt;br&gt;(Class used to generate this statement is DropViewStatement)
&lt;br&gt;&lt;br&gt;ALTER TABLE [AA774] ADD F4 INT NULL
&lt;br&gt;(Class used to generate this statement is AddColumnStatement)
&lt;br&gt;&lt;br&gt;CREATE VIEW [V_AA774] AS SELECT * FROM AA774
&lt;br&gt;(Class used to generate this statement is CreateViewStatement)
&lt;br&gt;&lt;br&gt;All the above statemens use square brackets around the table/view/constraint name. This does not work in Sybase.
&lt;br&gt;Is there any fix coming for this in the next version of liquibase?
&lt;br&gt;&lt;br&gt;Also there is another problem here, for SybaseDatabase.getIntType() gives &amp;quot;INT&amp;quot;, it should be NUMERIC.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Usha.
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24320625&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Sybase-support-not-correct-tp24320625p24320625.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24257850</id>
	<title>SQL Parsing</title>
	<published>2009-06-29T09:54:49Z</published>
	<updated>2009-06-29T09:54:49Z</updated>
	<author>
		<name>farnsworth2008</name>
	</author>
	<content type="html">My understanding is that currently SQL in LiquiBase within the &amp;lt;SQL/&amp;gt; tags is parsed into statements and then executed without translation. &amp;nbsp; I do something similar in GarinDriver and see this as an area where we can share technology.
&lt;br&gt;&lt;br&gt;Often vendors have slightly different SQL syntax rules so a good universal parser is hard to implement. &amp;nbsp; For example MySQL uses java style string encoding while other vendors use SQL99 style (O''Brian vs. O\'Brian). &amp;nbsp;The MySQL guys also support # style comments in addition to the SQL99 -- and /* */ styles.
&lt;br&gt;&lt;br&gt;I am not sure how robust the current LiquiBase parser is. &amp;nbsp; My initial guess from looking at the code and reading some issues on your forum/jira is that it will have trouble with many of the more complex scripts especially the ones with comments and semis in strange places.
&lt;br&gt;&lt;br&gt;The garin.parse package currently handles all the complex SQL that I can find from MySQL including all weird comment rules. &amp;nbsp; I wrote this package after looking around and not finding any similar package in the open source community.
&lt;br&gt;&lt;br&gt;My parser framework uses an approach where each parse mode is a separate object and as such it is hopefully easy to extend and/or use.
&lt;br&gt;&lt;br&gt;If LiquiBase would like, you are free to embed my parsing package in the main liquibase code (it is eclipse public licence code). &amp;nbsp; For me the benefit is that it would provide more testing of the package and help find weird scripts that I might not otherwise come across. &amp;nbsp;When we find weird but legal scripts we can add them to the test case and I think it should be fairly easy to adapt my parser to handle some pretty wacky rules if needed. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;The current test case for my parse package is here:
&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/garindriver/source/browse/trunk/GarinDriver/tst/src/garin/standard/TestParser.java&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/garindriver/source/browse/trunk/GarinDriver/tst/src/garin/standard/TestParser.java&lt;/a&gt;&lt;br&gt;&lt;br&gt;The test case works on some sample files (also in SVN). &amp;nbsp;The sample file for MySQL testing is fairly complex but still parses correctly.
&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/garindriver/source/browse/trunk/GarinDriver/tst/parse/mySQL.sql&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/garindriver/source/browse/trunk/GarinDriver/tst/parse/mySQL.sql&lt;/a&gt;&lt;br&gt;&lt;br&gt;Let me know if you decide to use the package and/or if you already have a similar package and/or find a better one.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SQL-Parsing-tp24257850p24257850.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24177601</id>
	<title>New Topic: Implementing a SQL/DDL deployment script model as a JDBC driver</title>
	<published>2009-06-23T18:54:36Z</published>
	<updated>2009-06-23T18:54:36Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Implementing a SQL/DDL deployment script model as a JDBC driver', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=59.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=59.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hello All,
&lt;br&gt;&lt;br&gt;I happened across LiquiBase as I was recently doing some Google searching. &amp;nbsp;It looks like an interesting project and I would like to get involved at the user level or at the developer level.
&lt;br&gt;&lt;br&gt;In any case, I recently created an opensource project that has some similarities to LiquiBase.
&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/garindriver/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/garindriver/&lt;/a&gt;&lt;br&gt;&lt;br&gt;My project is similar to LiquiBase in some respects but a took a different approach. &amp;nbsp;GarinDriver is a much smaller project (dev team of 1). &amp;nbsp; Most of the code was a weekend project (last weekend). &amp;nbsp;The approach, I took was to integrate the system for running the deployment scripts into the JDBC driver layer. &amp;nbsp;By integrating the deployment of scripts into the JDBC driver my system ensures that client's can never access the database until it is properly initialized (i.e. the JDBC url used by the client describes a minimal database level and internally the GarinDriver can promote the database to the proper level by running required members from a stack of scripts using a databased tracking table to coordinate script running). &amp;nbsp; The GarinDriver contract with scripts is basically run once. &amp;nbsp; When a client connects through the driver it checks it's stack of scripts vs. the database tracking table and runs only the scripts needed to move the database forward. &amp;nbsp; The GarinDriver is really a wrapper around a backend jdbc driver and as such the GarinDriver focus is on the script stack with all real work handed off to the backend jdbc driver. &amp;nbsp;It seems like a different approach then LiquiBase and there is a possibility that the concept could be merged into LiquiBase.
&lt;br&gt;&lt;br&gt;&amp;gt;From my understanding the LiquiBase concept is similar but also includes a set of tools to create a stack of deployment scripts and a way to organize running such scripts. &amp;nbsp;What I really like is that LiquiBase seems to have a database vendor neutral way of describing DDL changes (and possibly a vendor neutral way of describing data loads). &amp;nbsp; 
&lt;br&gt;&lt;br&gt;Does LiquiBase provide a JDBC driver wrapper concept similar to GarinDriver?
&lt;br&gt;Do members of the LiquiBase community think that JDBC driver integration concept provides value?
&lt;br&gt;Is LiquiBase interested in the idea of integration with the GarinDriver concept?
&lt;br&gt;&lt;br&gt;-Mark
&lt;br&gt;&lt;a href=&quot;http://markfarnsworth.wordpress.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://markfarnsworth.wordpress.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24177601&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Implementing-a-SQL-DDL-deployment-script-model-as-a-JDBC-driver-tp24177601p24177601.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24028855</id>
	<title>Re: encoding attribute in LoadData as List in Schema</title>
	<published>2009-06-14T22:02:17Z</published>
	<updated>2009-06-14T22:02:17Z</updated>
	<author>
		<name>Voxland, Nathan</name>
	</author>
	<content type="html">That would be a good idea. &amp;nbsp;Could you create an issue for it at liquibase.jira.com?
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;&lt;br&gt;From: Marc Logemann [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24028855&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;li@...&lt;/a&gt;]
&lt;br&gt;Sent: Sat 6/13/2009 3:34 AM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24028855&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Subject: [Liquibase-devel] encoding attribute in LoadData as List in Schema
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;wouldnt it make sense to supply the Liquibase schema with a lists of 
&lt;br&gt;encodings for the LoadData task? The encodings are quite &amp;quot;stable&amp;quot; and 
&lt;br&gt;this way, people dont have to lookup the java encoding name in the 
&lt;br&gt;javadocs and could just use auto-complete in their IDE.
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;regards
&lt;br&gt;Marc Logemann
&lt;br&gt;&lt;a href=&quot;http://www.logemann.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logemann.org&lt;/a&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.logemann.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logemann.org/&lt;/a&gt;&amp;gt; 
&lt;br&gt;&lt;a href=&quot;http://www.logentis.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logentis.de&lt;/a&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.logentis.de/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logentis.de/&lt;/a&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables unlimited
&lt;br&gt;royalty-free distribution of the report engine for externally facing
&lt;br&gt;server and web deployment.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24028855&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables unlimited
&lt;br&gt;royalty-free distribution of the report engine for externally facing 
&lt;br&gt;server and web deployment.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24028855&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;winmail.dat&lt;/strong&gt; (5K) &lt;a href=&quot;http://old.nabble.com/attachment/24028855/0/winmail.dat&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/encoding-attribute-in-LoadData-as-List-in-Schema-tp24010385p24028855.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24010385</id>
	<title>encoding attribute in LoadData as List in Schema</title>
	<published>2009-06-13T01:34:15Z</published>
	<updated>2009-06-13T01:34:15Z</updated>
	<author>
		<name>loge1974</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;wouldnt it make sense to supply the Liquibase schema with a lists of &amp;nbsp;
&lt;br&gt;encodings for the LoadData task? The encodings are quite &amp;quot;stable&amp;quot; and &amp;nbsp;
&lt;br&gt;this way, people dont have to lookup the java encoding name in the &amp;nbsp;
&lt;br&gt;javadocs and could just use auto-complete in their IDE.
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;regards
&lt;br&gt;Marc Logemann
&lt;br&gt;&lt;a href=&quot;http://www.logemann.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logemann.org&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.logentis.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logentis.de&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables unlimited
&lt;br&gt;royalty-free distribution of the report engine for externally facing 
&lt;br&gt;server and web deployment.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24010385&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/encoding-attribute-in-LoadData-as-List-in-Schema-tp24010385p24010385.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24009614</id>
	<title>New Topic: ChangeLog Chain Example required</title>
	<published>2009-06-12T23:29:45Z</published>
	<updated>2009-06-12T23:29:45Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'ChangeLog Chain Example required', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=47.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=47.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi Nathan,
&lt;br&gt;I'm exploring you changes, you made for adding fine tuning sql generation through SqlGeneratorChain facility. 
&lt;br&gt;And already run into situation, where it might to be applied.
&lt;br&gt;&lt;br&gt;Running java-dbtest against MSSQL 2000 getting the error (see at the end of post)
&lt;br&gt;The server supports only to the following
&lt;br&gt;[ ON DELETE { CASCADE | NO ACTION } ]
&lt;br&gt;[ ON UPDATE { CASCADE | NO ACTION } ] 
&lt;br&gt;&lt;br&gt;By RESTRICT I think the clauses ON DELETE/ON UPDATE must be omitted.
&lt;br&gt;&lt;br&gt;Give some ideas, how sql generation may be customized to this case
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;liquibase.exception.MigrationFailedException: Migration failed for change set liquibase-test3201895695241807216.xml::1244876788296-49::otaranenko (generated):
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Reason: liquibase.exception.JDBCException: Error executing SQL ALTER TABLE [liquibase].[address] ADD CONSTRAINT [FK_ADDRESS_STATE] FOREIGN KEY ([state]) REFERENCES [liquibase].[state]([id]) ON UPDATE RESTRICT ON DELETE RESTRICT:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Caused By: Error executing SQL ALTER TABLE [liquibase].[address] ADD CONSTRAINT [FK_ADDRESS_STATE] FOREIGN KEY ([state]) REFERENCES [liquibase].[state]([id]) ON UPDATE RESTRICT ON DELETE RESTRICT:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Caused By: Incorrect syntax near the keyword 'RESTRICT'.
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.changelog.ChangeSet.execute(ChangeSet.java:234)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.changelog.visitor.UpdateVisitor.visit(UpdateVisitor.java:26)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.changelog.ChangeLogIterator.run(ChangeLogIterator.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.Liquibase.update(Liquibase.java:113)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.dbtest.AbstractSimpleChangeLogRunnerTest.testRerunDiffChangeLog(AbstractSimpleChangeLogRunnerTest.java:298)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestCase.runTest(TestCase.java:164)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestCase.runBare(TestCase.java:130)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestResult$1.protect(TestResult.java:110)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestResult.runProtected(TestResult.java:128)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestResult.run(TestResult.java:113)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestCase.run(TestCase.java:120)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestSuite.runTest(TestSuite.java:228)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at junit.framework.TestSuite.run(TestSuite.java:223)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.junit.internal.runners.OldTestClassRunner.run(OldTestClassRunner.java:35)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
&lt;br&gt;Caused by: liquibase.exception.JDBCException: Error executing SQL ALTER TABLE [liquibase].[address] ADD CONSTRAINT [FK_ADDRESS_STATE] FOREIGN KEY ([state]) REFERENCES [liquibase].[state]([id]) ON UPDATE RESTRICT ON DELETE RESTRICT
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.executor.DefaultExecutor.execute(DefaultExecutor.java:59)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.executor.DefaultExecutor.execute(DefaultExecutor.java:89)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.database.AbstractDatabase.execute(AbstractDatabase.java:1443)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.database.AbstractDatabase.executeStatements(AbstractDatabase.java:1430)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.changelog.ChangeSet.execute(ChangeSet.java:210)
&lt;br&gt;&amp;nbsp; &amp;nbsp;... 23 more
&lt;br&gt;Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'RESTRICT'.
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.IOBuffer.processPackets(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.SQLServerStatement.sendExecute(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecute(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at com.microsoft.sqlserver.jdbc.SQLServerStatement.execute(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.executor.DefaultExecutor$1ExecuteStatementCallback.doInStatement(DefaultExecutor.java:80)
&lt;br&gt;&amp;nbsp; &amp;nbsp;at liquibase.executor.DefaultExecutor.execute(DefaultExecutor.java:52)
&lt;br&gt;&amp;nbsp; &amp;nbsp;... 27 more
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables unlimited
&lt;br&gt;royalty-free distribution of the report engine for externally facing 
&lt;br&gt;server and web deployment.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24009614&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-ChangeLog-Chain-Example-required-tp24009614p24009614.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23860463</id>
	<title>Re: just want to say hello</title>
	<published>2009-06-03T15:07:50Z</published>
	<updated>2009-06-03T15:07:50Z</updated>
	<author>
		<name>Voxland, Nathan</name>
	</author>
	<content type="html">Welcome Marc, and thanks for the help with the DB2 iSeries.
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Marc Logemann [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23860463&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;li@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, June 03, 2009 3:55 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23860463&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Subject: [Liquibase-devel] just want to say hello
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;just wanted to say hello. My name is Marc Logemann from Osnabrueck, &amp;nbsp;
&lt;br&gt;Germany, i am 35 years and i am developing java for about 10 years. I &amp;nbsp;
&lt;br&gt;will contribute to the project in the future and started to include &amp;nbsp;
&lt;br&gt;better support for DB2 for IBM i Systems (iSeries, AS400). I am &amp;nbsp;
&lt;br&gt;looking forward to get in contact to the other developers of Liquibase &amp;nbsp;
&lt;br&gt;and hope we have some fun together, because thats what OSS projects &amp;nbsp;
&lt;br&gt;shoud also be: Fun to develop software with other guys.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;regards
&lt;br&gt;Marc Logemann
&lt;br&gt;&lt;a href=&quot;http://www.logemann.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logemann.org&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.logentis.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logentis.de&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the
&lt;br&gt;latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23860463&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23860463&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/just-want-to-say-hello-tp23859315p23860463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23859315</id>
	<title>just want to say hello</title>
	<published>2009-06-03T13:55:29Z</published>
	<updated>2009-06-03T13:55:29Z</updated>
	<author>
		<name>loge1974</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;just wanted to say hello. My name is Marc Logemann from Osnabrueck, &amp;nbsp;
&lt;br&gt;Germany, i am 35 years and i am developing java for about 10 years. I &amp;nbsp;
&lt;br&gt;will contribute to the project in the future and started to include &amp;nbsp;
&lt;br&gt;better support for DB2 for IBM i Systems (iSeries, AS400). I am &amp;nbsp;
&lt;br&gt;looking forward to get in contact to the other developers of Liquibase &amp;nbsp;
&lt;br&gt;and hope we have some fun together, because thats what OSS projects &amp;nbsp;
&lt;br&gt;shoud also be: Fun to develop software with other guys.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;regards
&lt;br&gt;Marc Logemann
&lt;br&gt;&lt;a href=&quot;http://www.logemann.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logemann.org&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.logentis.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logentis.de&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23859315&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/just-want-to-say-hello-tp23859315p23859315.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23846014</id>
	<title>Re: New Topic: maillist vs. Forum and commits(and translation)</title>
	<published>2009-06-02T23:18:56Z</published>
	<updated>2009-06-02T23:18:56Z</updated>
	<author>
		<name>Paul Keeble</name>
	</author>
	<content type="html">&lt;br&gt;Because I am following 20+ other projects. With email distribution lists it all turns up in one place, with a single login and its something I can monitor daily. If its in a forum I would actively have to monitor that topic, search through all its various sub forums for posts I hadn't read etc. The user interface for email is significantly better for seeing new topics and responding quickly. 
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: &amp;quot;Voxland, Nathan&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nvoxland@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Sent: Tuesday, 2 June, 2009 19:49:50
&lt;br&gt;Subject: Re: [Liquibase-devel] New Topic: maillist vs. Forum and commits(and translation)
&lt;br&gt;&lt;br&gt;Can I ask why you prefer the mailing list over the forum?
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Paul Keeble [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;csuml@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, June 02, 2009 1:27 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [Liquibase-devel] New Topic: maillist vs. Forum and
&lt;br&gt;commits(and translation)
&lt;br&gt;&lt;br&gt;&lt;br&gt;2) If your iffy about a patch normally you would attach to a post to the
&lt;br&gt;liquibase-dev list and then a committer can check and commit it or make
&lt;br&gt;comments about getting it in shape if there are problems with it. Can
&lt;br&gt;you attach in the forums? If so do that or you can attach the patch to
&lt;br&gt;the bug/feature request in sourceforge and then let someone know it
&lt;br&gt;exists in the forum.
&lt;br&gt;&lt;br&gt;agree on (1) - I'm happy to get emails, but I won't be using the forums
&lt;br&gt;so if liquibase switches over fully I'll not be going with it.
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: LiquiBase Community Forum &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nathan@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Sent: Tuesday, 2 June, 2009 18:30:46
&lt;br&gt;Subject: [Liquibase-devel] New Topic: maillist vs. Forum and commits
&lt;br&gt;(and translation)
&lt;br&gt;&lt;br&gt;A new topic, 'maillist vs. Forum and commits (and translation)', has
&lt;br&gt;been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=35.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=35.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;i have two issues i want to discuss. 
&lt;br&gt;&lt;br&gt;1) I strongly recommend to stick with the dev maillist for developer
&lt;br&gt;issues. I dont know of a single OSS project which handles the dev
&lt;br&gt;communication via Forum. Its so much slower than maillists and the
&lt;br&gt;archiving issue is non-existant for devs normally. And if you need to
&lt;br&gt;find something older, you still have an archive, just not as beautiful
&lt;br&gt;as in a forum. But beauty is for users....
&lt;br&gt;&lt;br&gt;2) Is it ok that i can commit with my newly created JIRA account into
&lt;br&gt;the 1.9 branch? I hope there is some quality check before you guys build
&lt;br&gt;a new 1.9.x because i really dont want to break a release with my first
&lt;br&gt;commit in case i ve missed something. 
&lt;br&gt;&lt;br&gt;3) I can help out translating the wiki to german if you like. What do i
&lt;br&gt;need in terms of accounts?
&lt;br&gt;&lt;br&gt;Marc
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here:
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the
&lt;br&gt;latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23846014&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-maillist-vs.-Forum-and-commits-%28and-translation%29-tp23837181p23846014.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23838522</id>
	<title>Re: New Topic: maillist vs. Forum and commits(and translation)</title>
	<published>2009-06-02T11:49:50Z</published>
	<updated>2009-06-02T11:49:50Z</updated>
	<author>
		<name>Voxland, Nathan</name>
	</author>
	<content type="html">Can I ask why you prefer the mailing list over the forum?
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Paul Keeble [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;csuml@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, June 02, 2009 1:27 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [Liquibase-devel] New Topic: maillist vs. Forum and
&lt;br&gt;commits(and translation)
&lt;br&gt;&lt;br&gt;&lt;br&gt;2) If your iffy about a patch normally you would attach to a post to the
&lt;br&gt;liquibase-dev list and then a committer can check and commit it or make
&lt;br&gt;comments about getting it in shape if there are problems with it. Can
&lt;br&gt;you attach in the forums? If so do that or you can attach the patch to
&lt;br&gt;the bug/feature request in sourceforge and then let someone know it
&lt;br&gt;exists in the forum.
&lt;br&gt;&lt;br&gt;agree on (1) - I'm happy to get emails, but I won't be using the forums
&lt;br&gt;so if liquibase switches over fully I'll not be going with it.
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: LiquiBase Community Forum &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nathan@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Sent: Tuesday, 2 June, 2009 18:30:46
&lt;br&gt;Subject: [Liquibase-devel] New Topic: maillist vs. Forum and commits
&lt;br&gt;(and translation)
&lt;br&gt;&lt;br&gt;A new topic, 'maillist vs. Forum and commits (and translation)', has
&lt;br&gt;been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=35.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=35.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;i have two issues i want to discuss. 
&lt;br&gt;&lt;br&gt;1) I strongly recommend to stick with the dev maillist for developer
&lt;br&gt;issues. I dont know of a single OSS project which handles the dev
&lt;br&gt;communication via Forum. Its so much slower than maillists and the
&lt;br&gt;archiving issue is non-existant for devs normally. And if you need to
&lt;br&gt;find something older, you still have an archive, just not as beautiful
&lt;br&gt;as in a forum. But beauty is for users....
&lt;br&gt;&lt;br&gt;2) Is it ok that i can commit with my newly created JIRA account into
&lt;br&gt;the 1.9 branch? I hope there is some quality check before you guys build
&lt;br&gt;a new 1.9.x because i really dont want to break a release with my first
&lt;br&gt;commit in case i ve missed something. 
&lt;br&gt;&lt;br&gt;3) I can help out translating the wiki to german if you like. What do i
&lt;br&gt;need in terms of accounts?
&lt;br&gt;&lt;br&gt;Marc
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here:
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the
&lt;br&gt;latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838522&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-maillist-vs.-Forum-and-commits-%28and-translation%29-tp23837181p23838522.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23838516</id>
	<title>Re: New Topic: maillist vs. Forum and commits(and translation)</title>
	<published>2009-06-02T11:49:30Z</published>
	<updated>2009-06-02T11:49:30Z</updated>
	<author>
		<name>Voxland, Nathan</name>
	</author>
	<content type="html">Reposting response on forum for those not subscribed:
&lt;br&gt;&lt;br&gt;First the easy ones:
&lt;br&gt;&lt;br&gt;2) It is fine to commit into the 1.9 branch. &amp;nbsp;I do code review every
&lt;br&gt;commit, especially from new committers and can easily roll back changes
&lt;br&gt;that cause problems. &amp;nbsp;We also have a set of unit and integration tests
&lt;br&gt;we run before every release. &amp;nbsp;The long term goal is to further improve
&lt;br&gt;our test coverage, and to take advantage of crucible on
&lt;br&gt;liquibase.jira.com to streamline the code review process. 
&lt;br&gt;&lt;br&gt;If it gets too unwieldy, we can always go back to limited committers and
&lt;br&gt;patches, but I am hoping that we can get this approach to work. &amp;nbsp;It
&lt;br&gt;lowers the bar to contributing code, makes the accepting submissions
&lt;br&gt;process less error prone, and gives credit to contributors better. 
&lt;br&gt;&lt;br&gt;3) If you could help with translating to German, that would be great.
&lt;br&gt;You only need to create an account on the site wiki to edit pages and
&lt;br&gt;create translations.
&lt;br&gt;&lt;br&gt;Then the bigger one:
&lt;br&gt;1) You are right that you get more lag with the forum than with an email
&lt;br&gt;list. &amp;nbsp;It is also easier to ignore a forum than emails that come to you.
&lt;br&gt;There are some things I really like about the forum, however, even for
&lt;br&gt;devel lists. 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;a) Archives are more searchable and browsable. &amp;nbsp;This is often not
&lt;br&gt;as big of an issue, but there are many topics on the devel list (like
&lt;br&gt;your questions on adding new database support, building, etc) that new
&lt;br&gt;devels would like to be able to find easily.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;b) There are some functionality such as polls, splitting topics,
&lt;br&gt;etc. that would be useful
&lt;br&gt;&lt;br&gt;My hope was/is that we can find a good middle ground between the
&lt;br&gt;features of the forum and the speed of the mailing list. &amp;nbsp;Having topic
&lt;br&gt;notifications go to the mailing list helps because you still get the
&lt;br&gt;immediate feedback that something was posted while still keeping
&lt;br&gt;discussion on the forum (unless people reply to the mailing list:) ).
&lt;br&gt;Unfortunately, only the first topic post gets forwarded to the mailing
&lt;br&gt;list, so you can't use it fully.
&lt;br&gt;&lt;br&gt;There are also RSS feeds available for each forum which does have an
&lt;br&gt;every for every post, although I have noticed using google reader, there
&lt;br&gt;is an hour or so delay before it shows up. 
&lt;br&gt;&lt;br&gt;For the devel group, I want something that works best for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;a) getting people answers on the code (either from finding existing
&lt;br&gt;answers or getting a response)
&lt;br&gt;&amp;nbsp; &amp;nbsp;b) keeping people who commit from time to time engaged in the project
&lt;br&gt;&amp;nbsp; &amp;nbsp;c) making anyone who wants to contribute to a topic feel that they
&lt;br&gt;can
&lt;br&gt;&lt;br&gt;My focus for the past few months and for the next few months is around
&lt;br&gt;building the liquibase community, and how the contributer community
&lt;br&gt;communicates is a huge part of that. &amp;nbsp;Adding the forum is an iteration
&lt;br&gt;toward that goal, if it does not make sense to keep it, I am not against
&lt;br&gt;dropping the devel forum in favor of the mailing list. &amp;nbsp;If there are
&lt;br&gt;other options that you think would be better, let me know. &amp;nbsp;I have toyed
&lt;br&gt;with the idea of an IRC channel or two as well, but I do not think the
&lt;br&gt;community is large enough to support that yet. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Paul Keeble [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;csuml@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, June 02, 2009 1:27 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [Liquibase-devel] New Topic: maillist vs. Forum and
&lt;br&gt;commits(and translation)
&lt;br&gt;&lt;br&gt;&lt;br&gt;2) If your iffy about a patch normally you would attach to a post to the
&lt;br&gt;liquibase-dev list and then a committer can check and commit it or make
&lt;br&gt;comments about getting it in shape if there are problems with it. Can
&lt;br&gt;you attach in the forums? If so do that or you can attach the patch to
&lt;br&gt;the bug/feature request in sourceforge and then let someone know it
&lt;br&gt;exists in the forum.
&lt;br&gt;&lt;br&gt;agree on (1) - I'm happy to get emails, but I won't be using the forums
&lt;br&gt;so if liquibase switches over fully I'll not be going with it.
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: LiquiBase Community Forum &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nathan@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Sent: Tuesday, 2 June, 2009 18:30:46
&lt;br&gt;Subject: [Liquibase-devel] New Topic: maillist vs. Forum and commits
&lt;br&gt;(and translation)
&lt;br&gt;&lt;br&gt;A new topic, 'maillist vs. Forum and commits (and translation)', has
&lt;br&gt;been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=35.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=35.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;i have two issues i want to discuss. 
&lt;br&gt;&lt;br&gt;1) I strongly recommend to stick with the dev maillist for developer
&lt;br&gt;issues. I dont know of a single OSS project which handles the dev
&lt;br&gt;communication via Forum. Its so much slower than maillists and the
&lt;br&gt;archiving issue is non-existant for devs normally. And if you need to
&lt;br&gt;find something older, you still have an archive, just not as beautiful
&lt;br&gt;as in a forum. But beauty is for users....
&lt;br&gt;&lt;br&gt;2) Is it ok that i can commit with my newly created JIRA account into
&lt;br&gt;the 1.9 branch? I hope there is some quality check before you guys build
&lt;br&gt;a new 1.9.x because i really dont want to break a release with my first
&lt;br&gt;commit in case i ve missed something. 
&lt;br&gt;&lt;br&gt;3) I can help out translating the wiki to german if you like. What do i
&lt;br&gt;need in terms of accounts?
&lt;br&gt;&lt;br&gt;Marc
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here:
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the
&lt;br&gt;latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838516&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-maillist-vs.-Forum-and-commits-%28and-translation%29-tp23837181p23838516.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23838087</id>
	<title>Re: New Topic: maillist vs. Forum and commits (and translation)</title>
	<published>2009-06-02T11:27:13Z</published>
	<updated>2009-06-02T11:27:13Z</updated>
	<author>
		<name>Paul Keeble</name>
	</author>
	<content type="html">&lt;br&gt;2) If your iffy about a patch normally you would attach to a post to the liquibase-dev list and then a committer can check and commit it or make comments about getting it in shape if there are problems with it. Can you attach in the forums? If so do that or you can attach the patch to the bug/feature request in sourceforge and then let someone know it exists in the forum.
&lt;br&gt;&lt;br&gt;agree on (1) - I'm happy to get emails, but I won't be using the forums so if liquibase switches over fully I'll not be going with it.
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: LiquiBase Community Forum &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838087&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nathan@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838087&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;Sent: Tuesday, 2 June, 2009 18:30:46
&lt;br&gt;Subject: [Liquibase-devel] New Topic: maillist vs. Forum and commits (and translation)
&lt;br&gt;&lt;br&gt;A new topic, 'maillist vs. Forum and commits (and translation)', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=35.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=35.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;i have two issues i want to discuss. 
&lt;br&gt;&lt;br&gt;1) I strongly recommend to stick with the dev maillist for developer issues. I dont know of a single OSS project which handles the dev communication via Forum. Its so much slower than maillists and the archiving issue is non-existant for devs normally. And if you need to find something older, you still have an archive, just not as beautiful as in a forum. But beauty is for users....
&lt;br&gt;&lt;br&gt;2) Is it ok that i can commit with my newly created JIRA account into the 1.9 branch? I hope there is some quality check before you guys build a new 1.9.x because i really dont want to break a release with my first commit in case i ve missed something. 
&lt;br&gt;&lt;br&gt;3) I can help out translating the wiki to german if you like. What do i need in terms of accounts?
&lt;br&gt;&lt;br&gt;Marc
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23838087&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-maillist-vs.-Forum-and-commits-%28and-translation%29-tp23837181p23838087.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23837181</id>
	<title>New Topic: maillist vs. Forum and commits (and translation)</title>
	<published>2009-06-02T10:30:46Z</published>
	<updated>2009-06-02T10:30:46Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'maillist vs. Forum and commits (and translation)', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=35.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=35.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;i have two issues i want to discuss. 
&lt;br&gt;&lt;br&gt;1) I strongly recommend to stick with the dev maillist for developer issues. I dont know of a single OSS project which handles the dev communication via Forum. Its so much slower than maillists and the archiving issue is non-existant for devs normally. And if you need to find something older, you still have an archive, just not as beautiful as in a forum. But beauty is for users....
&lt;br&gt;&lt;br&gt;2) Is it ok that i can commit with my newly created JIRA account into the 1.9 branch? I hope there is some quality check before you guys build a new 1.9.x because i really dont want to break a release with my first commit in case i ve missed something. 
&lt;br&gt;&lt;br&gt;3) I can help out translating the wiki to german if you like. What do i need in terms of accounts?
&lt;br&gt;&lt;br&gt;Marc
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23837181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-maillist-vs.-Forum-and-commits-%28and-translation%29-tp23837181p23837181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23327516</id>
	<title>New Topic: Patch: Make liquibase work with cygwin</title>
	<published>2009-04-30T19:09:35Z</published>
	<updated>2009-04-30T19:09:35Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Patch: Make liquibase work with cygwin', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=11.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=11.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;Hi.
&lt;br&gt;&lt;br&gt;Tried to add this to JIRA, but got &amp;quot;You cannot create new issues at this time, as the user limit for JIRA has been exceeded. Please contact your JIRA administrators for further assistance.&amp;quot; when trying to create a new issue. &amp;nbsp;FAIL.
&lt;br&gt;&lt;br&gt;Attached is a small patch to the liquibase shell script to make it work under cygwin on Windows, as well as under Linux/UNIX/POSIX as it does now.
&lt;br&gt;&lt;br&gt;E.
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23327516&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Patch%3A-Make-liquibase-work-with-cygwin-tp23327516p23327516.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23310406</id>
	<title>New Topic: I'm thinking the next release will be 2.0, no 1.4 support.</title>
	<published>2009-04-29T23:04:11Z</published>
	<updated>2009-04-29T23:04:11Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'I'm thinking the next release will be 2.0, no 1.4 support.', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=10.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=10.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;I am feeling like the refactoring I am doing in trunk is enough to push us to 2.0, especially since I have been finding that using 1.5 constructs and methods will keep the codebase simpler. &amp;nbsp;
&lt;br&gt;&lt;br&gt;My current plan is to continue on trunk toward a 2.0 release that will be significantly cleaned up internally, but should impact end users as little as possible. &amp;nbsp;I've toyed with the idea of making .xsd changes and don't think that will be worth doing for the pain that could cause. &amp;nbsp;I am thinking the checksum generation will change, but that is another post...
&lt;br&gt;&lt;br&gt;I created a /branches/1_9 branch to continue maintenance of the the 1.9 codeline. &amp;nbsp;This will keep a version with no end-user changes required, and will continue to support java 1.4.
&lt;br&gt;&lt;br&gt;I'm really happy with how the refactoring is coming along. &amp;nbsp;I think we are going to end up with a much cleaner and more flexible product.
&lt;br&gt;&lt;br&gt;Thoughts?
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23310406&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-I%27m-thinking-the-next-release-will-be-2.0%2C-no-1.4-support.-tp23310406p23310406.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23310339</id>
	<title>New Topic: Subversion moved to liquibase.jira.com</title>
	<published>2009-04-29T22:56:11Z</published>
	<updated>2009-04-29T22:56:11Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Subversion moved to liquibase.jira.com', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=9.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=9.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;The text of the topic is shown below:
&lt;br&gt;&lt;br&gt;To take advantage of the nicer Fisheye and to allow us to use Crucible for code reviews, I had to move the subversion repository to liquibase.jira.com. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;All the history transferred over correctly, but all development going forward should be done against the new repository. &amp;nbsp;If you have the code checked out from sourceforge, please re-check it out from the new location: &lt;a href=&quot;http://liquibase.jira.com/svn/CORE/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.jira.com/svn/CORE/trunk&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Also, commit permissions were not transferred over, so you will need to create a new account in order to commit. &amp;nbsp;You can still check out in read-only mode anonymously, but you will need an account to write. &amp;nbsp;I would like to experiment with having more people commit directly now that we have access to Crucible for reviewing code. &amp;nbsp;I think it will be easier than funneling patches through me and give contributers the credit they deserve. &amp;nbsp;I am not sure exactly how the write permissions work, so if someone would volunteer to do a little testing of if/when they can commit (anonymously, then after creating an account) please let me know.
&lt;br&gt;&lt;br&gt;As an added bonus, the new svn repository is significantly faster than the one at sourceforge.
&lt;br&gt;&lt;br&gt;Nathan
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23310339&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Subversion-moved-to-liquibase.jira.com-tp23310339p23310339.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23309969</id>
	<title>New Topic: Liquibase-devel list will get copies of &quot;development&quot; forum posts</title>
	<published>2009-04-29T22:05:14Z</published>
	<updated>2009-04-29T22:05:14Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">A new topic, 'Liquibase-devel list will get copies of &amp;quot;development&amp;quot; forum posts', has been made on a board you are watching.
&lt;br&gt;&lt;br&gt;You can see it at
&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?topic=7.new#new&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?topic=7.new#new&lt;/a&gt;&lt;br&gt;&lt;br&gt;More topics may be posted, but you won't receive more email notifications until you return to the board and read some of them.
&lt;br&gt;&lt;br&gt;Unsubscribe to new topics from this board by clicking here: &lt;a href=&quot;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=notifyboard;board=2.0&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23309969&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-Topic%3A-Liquibase-devel-list-will-get-copies-of-%22development%22-forum-posts-tp23309969p23309969.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23309409</id>
	<title>Welcome to LiquiBase Community Forum</title>
	<published>2009-04-29T20:11:40Z</published>
	<updated>2009-04-29T20:11:40Z</updated>
	<author>
		<name>LiquiBase Community Forum</name>
	</author>
	<content type="html">You are now registered with an account at LiquiBase Community Forum, liquibase-devel!
&lt;br&gt;&lt;br&gt;Your account's username is liquibase-devel and its password is l1qu1Bas3.
&lt;br&gt;&lt;br&gt;You may change your password after you login by going to your profile, or by visiting this page after you login:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://liquibase.org/forum/index.php?action=profile&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liquibase.org/forum/index.php?action=profile&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The LiquiBase Community Forum Team.&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23309409&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Welcome-to-LiquiBase-Community-Forum-tp23309409p23309409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23296025</id>
	<title>Re: Packaging for Ubuntu, missing copyright information</title>
	<published>2009-04-29T05:03:05Z</published>
	<updated>2009-04-29T05:03:05Z</updated>
	<author>
		<name>Ben Wolfe-2</name>
	</author>
	<content type="html">&lt;br&gt;Its common to have it on all files, I don't know about any strict 
&lt;br&gt;requirement for it to be so with the lgpl. &amp;nbsp;There is an eclipse plugin 
&lt;br&gt;that makes it easy to add it to all files:
&lt;br&gt;&lt;a href=&quot;http://jautodoc.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jautodoc.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Ben
&lt;br&gt;&lt;br&gt;Paul Keeble wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Liquibase has a licence file as part of its code base but it should probably exist at the very top of the code base on trunk as well. Is it really necessary to copy the header to every single source file? 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Paul
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----- Original Message ----
&lt;br&gt;&amp;gt; From: Maia Kozheva &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23296025&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sikon@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23296025&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Sent: Wednesday, 29 April, 2009 2:44:42
&lt;br&gt;&amp;gt; Subject: [Liquibase-devel] Packaging for Ubuntu, missing copyright information
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----BEGIN PGP SIGNED MESSAGE-----
&lt;br&gt;&amp;gt; Hash: SHA1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Greetings!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm packaging the liquibase library for Ubuntu. Unfortunately, it lacks
&lt;br&gt;&amp;gt; copyright headers in .java files and information about upstream authors.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As explained in the text of the LGPL (lgpl.txt), to make this software suitable
&lt;br&gt;&amp;gt; for inclusion in a free software distribution, you need to add headers like this
&lt;br&gt;&amp;gt; to the .java files included in the source tarball:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /*
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Copyright (C) &amp;lt;year&amp;gt; &amp;nbsp;&amp;lt;name of author&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; This library is free software; you can redistribute it and/or
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; modify it under the terms of the GNU Lesser General Public
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; License as published by the Free Software Foundation; either
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; version 2.1 of the License, or (at your option) any later version.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; This library is distributed in the hope that it will be useful,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; but WITHOUT ANY WARRANTY; without even the implied warranty of
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &amp;nbsp;See the GNU
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Lesser General Public License for more details.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; You should have received a copy of the GNU Lesser General Public
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; License along with this library; if not, write to the Free Software
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA &amp;nbsp;02110-1301, USA
&lt;br&gt;&amp;gt; */
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ideally, such a header should appear in build.xml as well.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I would appreciate if you could release an updated source tarball with modified
&lt;br&gt;&amp;gt; source files ASAP.
&lt;br&gt;&amp;gt; -----BEGIN PGP SIGNATURE-----
&lt;br&gt;&amp;gt; Version: GnuPG v1.4.9 (GNU/Linux)
&lt;br&gt;&amp;gt; Comment: Using GnuPG with Mozilla - &lt;a href=&quot;http://enigmail.mozdev.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://enigmail.mozdev.org/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; iEYEARECAAYFAkn3sQoACgkQGSKqQPshyAqk5QCePwATwBVuhUc8XX6ybnf/Cbo6
&lt;br&gt;&amp;gt; O5cAoLflnRvEvsB9Tu1U2z5g7BPVbHHr
&lt;br&gt;&amp;gt; =JkWa
&lt;br&gt;&amp;gt; -----END PGP SIGNATURE-----
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;&amp;gt; Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;&amp;gt; expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;&amp;gt; leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;&amp;gt; and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Liquibase-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23296025&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;&amp;gt; Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;&amp;gt; expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;&amp;gt; leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;&amp;gt; and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Liquibase-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23296025&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Liquibase-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23296025&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Liquibase-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/liquibase-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Packaging-for-Ubuntu%2C-missing-copyright-information-tp23289880p23296025.html" />
</entry>

</feed>
