In the sql-statements in <post-table-create/>
it is now possible to use %%t to subsitute for the
actual table name and %%n for a increasing number.
This can be helpful if you want to use <post-table-create/>
in <defaults/> sections of jbosscmp-jdbc.xml like the
following:
<defaults>
<post-table-create>
<sql-statement>CHECKPOINT</sql-statement>
<sql-statement>ALTER TABLE %%t ADD COLUMN blabla INT
</sql-statement>
<sql-statement>Create index b_idx%%n on
%%t(blabla)</sql-statement>
</post-table-create>
</defaults>