diff options
-rw-r--r-- | common/schema/embedded/order/makefile | 8 | ||||
-rw-r--r-- | common/schema/namespace/test.hxx | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/common/schema/embedded/order/makefile b/common/schema/embedded/order/makefile index b706345..8fe897f 100644 --- a/common/schema/embedded/order/makefile +++ b/common/schema/embedded/order/makefile @@ -63,10 +63,10 @@ $(dist): export extra_dist := $(data_dist) $(call vc9projs,$(name)) \ $(call vc10projs,$(name)) $(call vc11projs,$(name)) $(dist): $(call dist-data,$(sources) $(headers) $(data_dist)) - $(call meta-automake,../../../../template/Makefile.am) - $(call meta-vc9projs,../../../../template/template,$(name)) - $(call meta-vc10projs,../../../../template/template,$(name)) - $(call meta-vc11projs,../../../../template/template,$(name)) + $(call meta-automake,../../../template/Makefile.am) + $(call meta-vc9projs,../../../template/template,$(name)) + $(call meta-vc10projs,../../../template/template,$(name)) + $(call meta-vc11projs,../../../template/template,$(name)) # Test. # diff --git a/common/schema/namespace/test.hxx b/common/schema/namespace/test.hxx index 44d5c60..70b19aa 100644 --- a/common/schema/namespace/test.hxx +++ b/common/schema/namespace/test.hxx @@ -147,10 +147,10 @@ struct object_view std::string str; }; -#pragma db view table(DB_SCHEMA."schema_object_1") +#pragma db view table(DB_SCHEMA."schema_ns_object_1") struct table_view { - #pragma db column(DB_SCHEMA."schema_object_1"."str") + #pragma db column(DB_SCHEMA."schema_ns_object_1"."str") std::string str; }; |