mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Remove duplicate lines from previous patch attempt. Trouble with my
DSL line at home broke things right in the middle of an update. :(
This commit is contained in:
parent
abbd64cddf
commit
9ed2ac291b
@ -99,11 +99,6 @@ char *mapFuncs[][2] = {
|
||||
{"CURRENT_TIMESTAMP", "odbc_timestamp"},
|
||||
{"CURRENT_USER", "odbc_current_user"},
|
||||
{"SESSION_USER", "odbc_session_user"},
|
||||
{"CURRENT_DATE", "curdate"},
|
||||
{"CURRENT_TIME", "curtime"},
|
||||
{"CURRENT_TIMESTAMP", "odbc_timestamp"},
|
||||
{"CURRENT_USER", "odbc_current_user"},
|
||||
{"SESSION_USER", "odbc_session_user"},
|
||||
/* { "CURDATE", "curdate" }, */
|
||||
/* { "CURTIME", "curtime" }, */
|
||||
/* { "DAYNAME", "dayname" }, */
|
||||
|
@ -1,5 +1,5 @@
|
||||
-- PostgreSQL catalog extensions for ODBC compatibility
|
||||
-- $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/odbc.sql,v 1.5 2001/12/10 00:01:14 thomas Exp $
|
||||
-- $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/odbc.sql,v 1.6 2001/12/10 00:11:06 thomas Exp $
|
||||
|
||||
-- ODBC functions are described here:
|
||||
-- <http://msdn.microsoft.com/library/en-us/odbc/htm/odbcscalar_functions.asp>
|
||||
@ -145,10 +145,6 @@ CREATE OR REPLACE FUNCTION odbc_timestamp() RETURNS timestamp with time zone AS
|
||||
SELECT current_timestamp;
|
||||
' LANGUAGE SQL;
|
||||
|
||||
CREATE OR REPLACE FUNCTION odbc_timestamp() RETURNS timestamp with time zone AS '
|
||||
SELECT current_timestamp;
|
||||
' LANGUAGE SQL;
|
||||
|
||||
CREATE OR REPLACE FUNCTION dayname(timestamp) RETURNS text AS '
|
||||
SELECT to_char($1,''Day'');
|
||||
' LANGUAGE SQL;
|
||||
|
Loading…
Reference in New Issue
Block a user