Merge pull request #489 from VPanteleev-S7/fast-to-lower

[RFC] arsd.postgres: Add fast path for field name conversion
This commit is contained in:
Adam D. Ruppe 2025-03-23 16:39:53 -04:00 committed by GitHub
commit e18822c432
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

View File

@ -179,13 +179,21 @@ class PostgreSql : Database {
PGconn* conn; PGconn* conn;
} }
private string toLowerFast(string s) {
import std.ascii : isUpper;
foreach (c; s)
if (c >= 0x80 || isUpper(c))
return toLower(s);
return s;
}
/// ///
class PostgresResult : ResultSet { class PostgresResult : ResultSet {
// name for associative array to result index // name for associative array to result index
int getFieldIndex(string field) { int getFieldIndex(string field) {
if(mapping is null) if(mapping is null)
makeFieldMapping(); makeFieldMapping();
field = field.toLower; field = field.toLowerFast;
if(field in mapping) if(field in mapping)
return mapping[field]; return mapping[field];
else throw new Exception("no mapping " ~ field); else throw new Exception("no mapping " ~ field);