Changeset: 05daab1e75bf for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/05daab1e75bf
Modified Files:
sql/backends/monet5/sql_user.c
Branch: Jun2023
Log Message:
fix compilation, set single bit using true/false
diffs (15 lines):
diff --git a/sql/backends/monet5/sql_user.c b/sql/backends/monet5/sql_user.c
--- a/sql/backends/monet5/sql_user.c
+++ b/sql/backends/monet5/sql_user.c
@@ -221,9 +221,9 @@ parse_schema_path_str(mvc *m, str schema
throw(SQL, "sql.schema_path",
SQLSTATE(HY013) MAL_MALLOC_FAIL);
}
if (strcmp(next_schema, "sys") == 0)
- m->schema_path_has_sys = 1;
+ m->schema_path_has_sys = true;
else if (strcmp(next_schema, "tmp") ==
0)
- m->schema_path_has_tmp = 1;
+ m->schema_path_has_tmp = true;
}
bp = 0;
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]