Changeset: 4290eda628e7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4290eda628e7
Modified Files:
        clients/mapiclient/dump.c
Branch: Mar2011
Log Message:

Backed out changeset 6fa5d81627ca

CREATE VIEW ... AS should already be in the query, so with this
changeset we get it twice.  However, we need to find the problem why
describing the tables view doesn't show the CREATE VIEW bit.


diffs (13 lines):

diff --git a/clients/mapiclient/dump.c b/clients/mapiclient/dump.c
--- a/clients/mapiclient/dump.c
+++ b/clients/mapiclient/dump.c
@@ -785,8 +785,7 @@
 
        if (view) {
                /* the table is actually a view */
-               mnstr_printf(toConsole, "CREATE VIEW \"%s\".\"%s\" AS %s\n",
-                               schema, tname, view);
+               mnstr_printf(toConsole, "%s\n", view);
                goto doreturn;
        }
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to