Skip to content

Commit

Permalink
MONDRIAN: Cleaned up test case
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 9178]
  • Loading branch information
Will Gorman committed Apr 26, 2007
1 parent c9dd3f5 commit 5eff16c
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion testsrc/main/mondrian/test/BasicQueryTest.java
Expand Up @@ -2860,7 +2860,25 @@ public void testCatalogHierarchyBasedOnView2() {
"]]>\n" +
" </SQL>\n" +
" <SQL dialect=\"mysql\"><![CDATA[\n" +
"SELECT `product`.`product_id`, `product_class`.`product_family`, `product_class`.`product_department`, `product_class`.`product_category`, `product_class`.`product_subcategory`, `product`.`brand_name`, `product`.`product_name` \n" +
"SELECT `product`.`product_id`,\n" +
"`product`.`brand_name`,\n" +
"`product`.`product_name`,\n" +
"`product`.`SKU`,\n" +
"`product`.`SRP`,\n" +
"`product`.`gross_weight`,\n" +
"`product`.`net_weight`,\n" +
"`product`.`recyclable_package`,\n" +
"`product`.`low_fat`,\n" +
"`product`.`units_per_case`,\n" +
"`product`.`cases_per_pallet`,\n" +
"`product`.`shelf_width`,\n" +
"`product`.`shelf_height`,\n" +
"`product`.`shelf_depth`,\n" +
"`product_class`.`product_class_id`,\n" +
"`product_class`.`product_family`,\n" +
"`product_class`.`product_department`,\n" +
"`product_class`.`product_category`,\n" +
"`product_class`.`product_subcategory` \n" +
"FROM `product`, `product_class`\n" +
"WHERE `product`.`product_class_id` = `product_class`.`product_class_id`\n" +
"]]>\n" +
Expand Down

0 comments on commit 5eff16c

Please sign in to comment.