We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cf895e commit 7dbe22dCopy full SHA for 7dbe22d
src/lib/Sympa/DatabaseDriver/SQLite.pm
@@ -64,6 +64,14 @@ sub connect {
64
$self->__dbh->func(5000, 'busy_timeout');
65
}
66
67
+ # Compatibility with other drivers.
68
+ # concat_ws(): Since 6.2.XX.
69
+ $self->__dbh->func('concat_ws', -1, sub {
70
+ my $sep = shift;
71
+ return undef unless defined $sep;
72
+ return join $sep, grep {defined} @_;
73
+ }, 'create_function');
74
+
75
return 1;
76
77
0 commit comments