Skip to content
Snippets Groups Projects
Commit ac5b75e8 authored by Paolo Guagliardo's avatar Paolo Guagliardo
Browse files

Add comment on encoding

parent 7b123a98
No related branches found
No related tags found
No related merge requests found
......@@ -196,8 +196,8 @@ public class Database {
break;
}
}
/* In all other cases, we simply execute the SQL expression
* (corresponding to the given RA expression) in SQLite.
/* In all other cases, we directly execute the SQL query that
* corresponds to the given RA expression.
*/
try {
var stmt = conn.createStatement();
......@@ -222,6 +222,11 @@ public class Database {
}
}
/* We encode relation names as hexadecimal strings because identifiers
* are case-insensitive in SQL while they are case-sensitive in REAL.
* We also need a prefix in the name because identifiers in SQL cannot
* start with a digit.
*/
public static String encode(String name) {
return PREFIX + HexFormat.of().formatHex(name.getBytes());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment