X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Fmutation.c;h=967ad157d0cdbc819753f9b6aa0289538e1cc747;hb=HEAD;hp=0dcd16fec9b54b38d04be7439fcdac887f918752;hpb=8706009e555bb9fa04a5679e4be2c7c67506802b;p=sliver-openvswitch.git diff --git a/ovsdb/mutation.c b/ovsdb/mutation.c index 0dcd16fec..967ad157d 100644 --- a/ovsdb/mutation.c +++ b/ovsdb/mutation.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010, 2011 Nicira, Inc. +/* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,6 +95,12 @@ ovsdb_mutation_from_json(const struct ovsdb_table_schema *ts, "No column %s in table %s.", column_name, ts->name); } + if (!m->column->mutable) { + return ovsdb_syntax_error(json, "constraint violation", + "Cannot mutate immutable column %s in " + "table %s.", column_name, ts->name); + } + ovsdb_type_clone(&m->type, &m->column->type); mutator_name = json_string(array->elems[1]); @@ -144,7 +150,7 @@ ovsdb_mutation_from_json(const struct ovsdb_table_schema *ts, break; default: - NOT_REACHED(); + OVS_NOT_REACHED(); } exit: @@ -300,7 +306,7 @@ mutate_scalar(const struct ovsdb_type *dst_type, struct ovsdb_datum *dst, } } } else { - NOT_REACHED(); + OVS_NOT_REACHED(); } for (i = 0; i < dst->n; i++) { @@ -381,7 +387,7 @@ ovsdb_mutation_set_execute(struct ovsdb_row *row, break; default: - NOT_REACHED(); + OVS_NOT_REACHED(); } if (error) { return error;