Commit b4cda8bb authored by Marko Mäkelä's avatar Marko Mäkelä

After-merge fix for GCC

GCC does not like MY_ATTRIBUTE((nonnull)) on a reference-to-pointer
parameter. clang did not flag an issue wit that.
parent 913e33e4
......@@ -4304,7 +4304,7 @@ row_merge_rename_tables_dict(
@param[in,out] index index
@param[in] add_v new virtual columns added along with add index call
@return DB_SUCCESS or error code */
MY_ATTRIBUTE((nonnull(1,2,3), warn_unused_result))
MY_ATTRIBUTE((nonnull(1,2), warn_unused_result))
static
dberr_t
row_merge_create_index_graph(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment