File tree 2 files changed +1
-10
lines changed 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -99,11 +99,6 @@ char *mapFuncs[][2] = {
99
99
{"CURRENT_TIMESTAMP" , "odbc_timestamp" },
100
100
{"CURRENT_USER" , "odbc_current_user" },
101
101
{"SESSION_USER" , "odbc_session_user" },
102
- {"CURRENT_DATE" , "curdate" },
103
- {"CURRENT_TIME" , "curtime" },
104
- {"CURRENT_TIMESTAMP" , "odbc_timestamp" },
105
- {"CURRENT_USER" , "odbc_current_user" },
106
- {"SESSION_USER" , "odbc_session_user" },
107
102
/* { "CURDATE", "curdate" }, */
108
103
/* { "CURTIME", "curtime" }, */
109
104
/* { "DAYNAME", "dayname" }, */
Original file line number Diff line number Diff line change 1
1
-- PostgreSQL catalog extensions for ODBC compatibility
2
- -- $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/odbc.sql,v 1.5 2001/12/10 00:01:14 thomas Exp $
2
+ -- $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/odbc.sql,v 1.6 2001/12/10 00:11:06 thomas Exp $
3
3
4
4
-- ODBC functions are described here:
5
5
-- <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
145
145
SELECT current_timestamp;
146
146
' LANGUAGE SQL;
147
147
148
- CREATE OR REPLACE FUNCTION odbc_timestamp () RETURNS timestamp with time zone AS '
149
- SELECT current_timestamp;
150
- ' LANGUAGE SQL;
151
-
152
148
CREATE OR REPLACE FUNCTION dayname (timestamp ) RETURNS text AS '
153
149
SELECT to_char($1,' ' Day' ' );
154
150
' LANGUAGE SQL;
You can’t perform that action at this time.
0 commit comments