From: Mike Bayer Date: Wed, 26 Apr 2006 14:55:05 +0000 (+0000) Subject: localtime/localtimestamp dont seem to need the underscore for postgres/mysql, making... X-Git-Tag: rel_0_1_7~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e16a345ea8d4e74019ed71b72aaff9d8f080d922;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git localtime/localtimestamp dont seem to need the underscore for postgres/mysql, making that default --- diff --git a/lib/sqlalchemy/ansisql.py b/lib/sqlalchemy/ansisql.py index 40e9466512..7aefea0ba2 100644 --- a/lib/sqlalchemy/ansisql.py +++ b/lib/sqlalchemy/ansisql.py @@ -19,8 +19,8 @@ ANSI_FUNCS = HashSet([ 'CURRENT_TIME', 'CURRENT_TIMESTAMP', 'CURRENT_DATE', -'LOCAL_TIME', -'LOCAL_TIMESTAMP', +'LOCALTIME', +'LOCALTIMESTAMP', 'CURRENT_USER', 'SESSION_USER', 'USER'