Some PostgreSQL fixups

- Curiously, a result column alias of 'name' needs to be declared with 'AS name'
 - Removed dangling semi-colon, which probably isn't an issue


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20829 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2010-06-25 21:20:47 +00:00
parent 0caec0a33c
commit e118acc682

View File

@@ -262,12 +262,12 @@
</select>
<select id="select_oldAttrCustomNames" resultClass="string">
select
ga.name name
select
ga.name as name
from
alf_global_attributes ga
where
ga.name not in ('alfresco-tenants', '.avm_lock_table', '.PropertyBackedBeans', '.ChainingUserRegistrySynchronizer');
name not in ('alfresco-tenants', '.avm_lock_table', '.PropertyBackedBeans', '.ChainingUserRegistrySynchronizer')
</select>
<!-- -->