mirror of https://github.com/adamdruppe/arsd.git
arsd.postgres: Add fast path for field name conversion
Skip the slow std.uni.toLower call unless it's necessary.
This commit is contained in:
parent
4fb3ea691d
commit
7a4cb05709
10
postgres.d
10
postgres.d
|
@ -179,13 +179,21 @@ class PostgreSql : Database {
|
|||
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 {
|
||||
// name for associative array to result index
|
||||
int getFieldIndex(string field) {
|
||||
if(mapping is null)
|
||||
makeFieldMapping();
|
||||
field = field.toLower;
|
||||
field = field.toLowerFast;
|
||||
if(field in mapping)
|
||||
return mapping[field];
|
||||
else throw new Exception("no mapping " ~ field);
|
||||
|
|
Loading…
Reference in New Issue