diff options
author | ctrlaltca <> | 2012-11-18 20:26:25 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-11-18 20:26:25 +0000 |
commit | 43233000543984eda49768edde65076fb9c2468c (patch) | |
tree | 48578b1c5485c1f3342796cf7efa024882efd726 /tests/unit/SQLMap/maps/MySql/Document.xml | |
parent | 6dff17fee04f8b8a1f35ec8e9afe65ae32b2684c (diff) |
dropped old tests referring to unexisting components (NOTE: this includes what seems a test suite for an older version of SQLMap)
Diffstat (limited to 'tests/unit/SQLMap/maps/MySql/Document.xml')
-rw-r--r-- | tests/unit/SQLMap/maps/MySql/Document.xml | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/tests/unit/SQLMap/maps/MySql/Document.xml b/tests/unit/SQLMap/maps/MySql/Document.xml deleted file mode 100644 index 40608c97..00000000 --- a/tests/unit/SQLMap/maps/MySql/Document.xml +++ /dev/null @@ -1,53 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?>
-<sqlMap namespace="Document" >
- <resultMap id="document" class="Document">
- <result property="Id" column="Document_Id"/>
- <result property="Title" column="Document_Title"/>
- <discriminator column="Document_Type" type="string"/>
- <subMap value="Book" resultMapping="book" />
- <subMap value="Newspaper" resultMapping="newspaper" />
- </resultMap>
-
- <resultMap id="document-custom-handler" class="Document">
- <result property="Id" column="Document_Id"/>
- <result property="Title" column="Document_Title"/>
- <discriminator column="Document_Type" typeHandler="CustomInheritance"/>
- <subMap value="Book" resultMapping="book" />
- <subMap value="Newspaper" resultMapping="newspaper" />
- </resultMap>
-
- <resultMap id="book" class="Book" extends="document">
- <result property="PageNumber" column="Document_PageNumber"/>
- </resultMap>
-
- <resultMap id="newspaper" class="Newspaper" extends="document">
- <result property="City" column="Document_City"/>
- </resultMap>
-
-
- <statement id="GetAllDocument"
- resultMap="document">
- select
- *
- from Documents
- order by Document_Type, Document_Id
- </statement>
-
- <select id="GetTypedCollection"
- listClass="DocumentCollection"
- resultMap="document">
- select
- *
- from Documents
- order by Document_Type, Document_Id
- </select>
-
- <select id="GetAllDocumentWithCustomTypeHandler"
- resultMap="document-custom-handler">
- select
- *
- from Documents
- order by Document_Type, Document_Id
- </select>
-
-</sqlMap>
\ No newline at end of file |