Yes, I did used CreateViewChange.setSelectQuery() and that is what I got in my changeLog:
<changeSet author="liquibase-docs" id="createView-example">
<createViewChange
catalogName="cat"
replaceIfExists="true"
schemaName="public"
viewName="v_person"
selectQuery="
select id, name from person where id > 10" viewName="v_aprdrglist">
</
createViewChange>
</changeSet>
I don't think this is going to create the view. Any thoughts?