From f4f07fb437a28d1d9899607e3200d6732e627036 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Fri, 21 Oct 2011 08:35:27 +0200 Subject: Remove common_ from all table_prefix arguments in common tests --- common/wrapper/test.hxx | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'common/wrapper/test.hxx') diff --git a/common/wrapper/test.hxx b/common/wrapper/test.hxx index 70bb682..baf6346 100644 --- a/common/wrapper/test.hxx +++ b/common/wrapper/test.hxx @@ -39,17 +39,17 @@ struct object std::auto_ptr num; + #pragma db null std::auto_ptr str; - nullable_string nstr; - #pragma db id_column ("id") + nullable_string nstr; std::vector nstrs; #ifdef HAVE_TR1_MEMORY #pragma db null tr1_nullable_string tr1_str; - #pragma db value_null id_column("id") + #pragma db value_null std::vector tr1_strs; #endif }; @@ -84,7 +84,6 @@ struct comp2 std::string str; int num; - #pragma db id_column("id") index_column("i") std::vector strs; }; @@ -94,17 +93,14 @@ operator== (const comp2& x, const comp2& y) return x.str == y.str && x.num == y.num && x.strs == y.strs; } -#pragma db object table("comp_obj") +#pragma db object struct comp_object { #pragma db id auto unsigned long id_; std::auto_ptr c1; // Wrapped comp value. - - #pragma db id_column("id") index_column("i") std::vector > vc1; // Container of wrapped comp values. - std::auto_ptr c2; // Container inside wrapped comp value. }; @@ -114,12 +110,10 @@ struct comp_object struct comp3: comp2 { std::auto_ptr c1; - - #pragma db id_column("id") index_column("i") std::vector > vc1; }; -#pragma db object table("comp_obj2") +#pragma db object struct comp_object2 { #pragma db id auto @@ -136,7 +130,6 @@ struct comp_object2 struct cont_comp { int num; - #pragma db id_column("id") std::auto_ptr > strs; }; @@ -146,7 +139,7 @@ operator== (const cont_comp& x, const cont_comp& y) return x.num == y.num && *x.strs == *y.strs; } -#pragma db object table("cont_obj") +#pragma db object struct cont_object { #pragma db id auto -- cgit v1.1