Changeset: 66c95442585c for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=66c95442585c
Modified Files:
sql/server/rel_updates.c
Branch: iot
Log Message:
Allow direct basket updates.
diffs (25 lines):
diff --git a/sql/server/rel_updates.c b/sql/server/rel_updates.c
--- a/sql/server/rel_updates.c
+++ b/sql/server/rel_updates.c
@@ -379,8 +379,8 @@ insert_allowed(mvc *sql, sql_table *t, c
return sql_error(sql, 02, "%s: cannot %s view '%s'", op,
opname, tname);
} else if (isMergeTable(t)) {
return sql_error(sql, 02, "%s: cannot %s merge table '%s'", op,
opname, tname);
- } else if (isStream(t)) {
- return sql_error(sql, 02, "%s: cannot %s stream '%s'", op,
opname, tname);
+ //} else if (isStream(t)) {
+ //return sql_error(sql, 02, "%s: cannot %s stream '%s'", op,
opname, tname);
} else if (t->access == TABLE_READONLY) {
return sql_error(sql, 02, "%s: cannot %s read only table '%s'",
op, opname, tname);
}
@@ -410,8 +410,8 @@ update_allowed(mvc *sql, sql_table *t, c
return sql_error(sql, 02, "%s: cannot %s view '%s'", op,
opname, tname);
} else if (isMergeTable(t)) {
return sql_error(sql, 02, "%s: cannot %s merge table '%s'", op,
opname, tname);
- } else if (isStream(t)) {
- return sql_error(sql, 02, "%s: cannot %s stream '%s'", op,
opname, tname);
+ //} else if (isStream(t)) {
+ //return sql_error(sql, 02, "%s: cannot %s stream '%s'", op,
opname, tname);
} else if (t->access == TABLE_READONLY || t->access ==
TABLE_APPENDONLY) {
return sql_error(sql, 02, "%s: cannot %s read or append only
table '%s'", op, opname, tname);
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list