Changelog params for sqlFile

Hi,

I have a changelog and inside that is something like:

<changeSet  author="liquibase-docs"  id="dropTable-example">  
    <dropTable  cascadeConstraints="true"  
            catalogName="cat"  
            schemaName="public"  
            tableName="person"/>  
   <sqlFile file='test.sql' />
</changeSet>

Is it possible to pass in the tableName to that sql file within the changeSet? I will have multiple sql files in the change log so i do not want to see tablename globally or pass in via the CLI. I would like it all to be contained in the changeSet so I could have in test.sql:

Select * from ${tableName} etc.

Thanks