- Feb 23, 1998
-
-
Bruce Momjian authored
-
- Feb 21, 1998
-
-
Marc G. Fournier authored
below is the patch to have views to override the permission checks for the accessed tables. Now we can do the following: CREATE VIEW db_user AS SELECT usename, usesysid, usecreatedb, usetrace, usecatupd, '**********'::text as passwd, valuntil FROM pg_user; REVOKE ALL ON pg_user FROM public; REVOKE ALL ON db_user FROM public; GRANT SELECT ON db_user TO public;
-
- Feb 13, 1998
-
-
Vadim B. Mikheev authored
(Have to re-visit readfuncs.c)
-
- Feb 10, 1998
-
-
Bruce Momjian authored
-
- Jan 22, 1998
-
-
Bruce Momjian authored
-
- Jan 20, 1998
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Add lock to i386 asm.
-
- Jan 19, 1998
-
-
Bruce Momjian authored
-
- Jan 17, 1998
-
-
Bruce Momjian authored
with supporting code. Creates SubLink node in gram.y. psql.c patch for newatttypmod field.
-
Bruce Momjian authored
varchar length. Cleans up code so attlen is always length. Removed varchar() hack added earlier. Will fix bug in selecting varchar() fields, and varchar() can be variable length.
-
- Jan 15, 1998
-
-
Bruce Momjian authored
Pass List* of Aggregs into executor, and create needed array there. No longer need to double-processs Aggregs with second copy in Query. Fix crash when doing: select sum(x+1) from test where 1 > 0;
-
- Jan 11, 1998
-
-
Bruce Momjian authored
-
- Jan 09, 1998
-
-
Bruce Momjian authored
-
- Jan 04, 1998
-
-
Bruce Momjian authored
-
- Dec 24, 1997
-
-
Bruce Momjian authored
-
- Dec 23, 1997
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Thomas G. Lockhart authored
Add non-working code which is commented-out to copy GroupClause structures.
-
- Dec 18, 1997
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Nov 25, 1997
-
-
Bruce Momjian authored
-
- Nov 21, 1997
-
-
Bruce Momjian authored
-
- Nov 02, 1997
-
-
Vadim B. Mikheev authored
-
- Sep 19, 1997
-
-
Vadim B. Mikheev authored
-
- Sep 13, 1997
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Sep 08, 1997
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
-
- Sep 07, 1997
-
-
Bruce Momjian authored
-
- Sep 04, 1997
-
-
Vadim B. Mikheev authored
-
- Apr 10, 1997
-
-
Vadim B. Mikheev authored
-
- Nov 13, 1996
-
-
Marc G. Fournier authored
Changes: * Unique index capability works using the syntax 'create unique index'. * Duplicate OID's in the system tables are removed. I put little scripts called 'duplicate_oids' and 'find_oid' in include/catalog that help to find and remove duplicate OID's. I also moved 'unused_oids' from backend/catalog to include/catalog, since it has to be in the same directory as the include files in order to work. * The backend tries converting the name of a function or aggregate to all lowercase if the original name given doesn't work (mostly for compatibility with ODBC). * You can 'SELECT NULL' to your heart's content. * I put my _bt_updateitem fix in instead, which uses _bt_insertonpg so that even if the new key is so big that the page has to be split, everything still works. * All literal references to system catalog OID's have been replaced with references to define'd constants from the catalog header files. * I added a couple of node copy functions. I think this was a preliminary attempt to get rules to work.
-
- Nov 08, 1996
-
-
Bruce Momjian authored
-
- Aug 19, 1996
-
-
Marc G. Fournier authored
Here's a couple more small fixes that I've made to make my runtime checker happy with the code. More along the lines of those that I sent in the past, ie, a pointer to an array != the name of an array. The last patch is that I mailed about yesterday -- I got two replies of "do it", so it's done. As far as I can tell, however, the function in question is never called by pg95, so either way it can't hurt... From: "Kurt J. Lidl" <lidl@va.pubnix.com>
-
- Jul 09, 1996
-