mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
17620: Merged DEV_TEMPORARY to V3.2 17599: Fix for ETHREEOH-3308: xf:switch cannot be used in repeating field type 17634: Put back AVM concurrency checks (reverse r17405) 17644: Fixed up some comments and added return value to in-txn recording of deleted nodes 17647: Fixed read-only detection of ContentStoreCleaner 17648: Merged DEV fixes for ETHREEOH-3473 and ETHREEOH-3454 - DB script and iBatis-related changes 17649: Fixed problem after merge-in: ETHREEOH-3641: build 270: cannot install on PostgreSQL 17652: Fix ETHREEOH-3376 - Reindexer failure: requires rollback (Cluster) 17658: Removed failing concurrency test for split person cleanup 17659: Merged V3.1 to V3.2 17308: Fixed ETHREEOH-2310: Upgrade from 2.1 E Sp7 to 3.1.1 E build 225 - Duplicate alf_node_status entries detected Fixes ETHREEOH-3606 (same as CHK-10454) 17661: Fixed DB2 iBatis problems related to http://issues.apache.org/jira/browse/IBATIS-536 17666: ETHREEOH-3376 / ETHREEOH-3637 - reindexer failure in a cluster (dictionary repo bootstrap) 17678: Follow-on to r17666 (for RM custom model) 17685: Merged DEV_TEMPORARY to V3.2 17676: ETHREEOH-3187: Creating Web Content based on Web Form with most elements-read-only/default failed 17695: Temporarily comment-out testSubmitChangedAssets1 ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/DEV/BELARUS/V3.2-2009_11_24:r17632,17636,17676 Merged /alfresco/BRANCHES/DEV/BELARUS/V3.2-2009_11_09:r17599 Merged /alfresco/BRANCHES/V3.1:r17308 Merged /alfresco/BRANCHES/V3.2:r17620,17634,17644,17647-17649,17652,17658-17659,17661,17666,17678,17685,17695 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18165 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<!DOCTYPE sqlMap
|
|
PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
|
|
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
|
|
|
|
<sqlMap namespace="alfresco.content">
|
|
|
|
<insert id="insert_Mimetype" parameterClass="Mimetype" >
|
|
<include refid="alfresco.content.insert_Mimetype_AutoIncrement"/>
|
|
<selectKey resultClass="long" keyProperty="id" type="post">
|
|
KEY_COLUMN:GENERATED_KEY
|
|
</selectKey>
|
|
</insert>
|
|
|
|
<insert id="insert_Encoding" parameterClass="Encoding" >
|
|
<include refid="alfresco.content.insert_Encoding_AutoIncrement"/>
|
|
<selectKey resultClass="long" keyProperty="id" type="post">
|
|
KEY_COLUMN:GENERATED_KEY
|
|
</selectKey>
|
|
</insert>
|
|
|
|
<insert id="insert_ContentUrl" parameterMap="parameter_ContentUrl" >
|
|
<include refid="alfresco.content.insert_ContentUrl_AutoIncrement"/>
|
|
<selectKey resultClass="long" keyProperty="id" type="post">
|
|
KEY_COLUMN:GENERATED_KEY
|
|
</selectKey>
|
|
</insert>
|
|
|
|
<insert id="insert_ContentData" parameterMap="parameter_ContentData" >
|
|
<include refid="alfresco.content.insert_ContentData_AutoIncrement"/>
|
|
<selectKey resultClass="long" keyProperty="id" type="post">
|
|
KEY_COLUMN:GENERATED_KEY
|
|
</selectKey>
|
|
</insert>
|
|
|
|
</sqlMap> |