- 26 Oct, 1999 1 commit
-
-
Bruce Momjian authored
The following patch extends the COMMENT ON functionality to the rest of the database objects beyond just tables, columns, and views. The grammer of the COMMENT ON statement now looks like: COMMENT ON [ [ DATABASE | INDEX | RULE | SEQUENCE | TABLE | TYPE | VIEW ] <objname> | COLUMN <relation>.<attribute> | AGGREGATE <aggname> <aggtype> | FUNCTION <funcname> (arg1, arg2, ...) | OPERATOR <op> (leftoperand_typ rightoperand_typ) | TRIGGER <triggername> ON relname> Mike Mascari (mascarim@yahoo.com)
-
- 25 Oct, 1999 3 commits
-
-
Tom Lane authored
eliminating some wildly inconsistent coding in various parts of the system. I set MAXPGPATH = 1024 in config.h.in. If anyone is really convinced that there ought to be a configure-time test to set the value, go right ahead ... but I think it's a waste of time.
-
Tom Lane authored
postgres.c's declaration of 'char pg_pathname[...]'. I dunno when these ports were last used, but they are sure broken now...
-
Byron Nikolaidis authored
-
- 24 Oct, 1999 2 commits
-
-
Tom Lane authored
when an initdb-forcing change has been applied within a development cycle. PG_VERSION serves this purpose for official releases, but we can't bump the PG_VERSION number every time we make a change to the catalogs during development. Instead, increase the catalog version number to warn other developers that you've made an incompatible change. See my mail to pghackers for more info.
-
Tom Lane authored
might think ... in fact doesn't do much of anything at the moment ...
-
- 23 Oct, 1999 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
pg_dump and interfaces/odbc still need some work.)
-
Bruce Momjian authored
-
- 22 Oct, 1999 6 commits
-
-
Tom Lane authored
fix recently applied to backend's lexer). I see that YY_USES_REJECT still gets defined for this lexer, which means it's going to have trouble parsing really long tokens. Not sure if it's worth doing anything about that or not; I don't have the interest right now to understand why ecpg's additions to the syntax cause this problem...
-
Bruce Momjian authored
-
Bruce Momjian authored
TODO list. Vince
-
Bruce Momjian authored
This patch fix a TODO list item. * require SELECT DISTINCT target list to have all ORDER BY columns example ogawa=> select distinct x from t1 order by y; ERROR: ORDER BY columns must appear in SELECT DISTINCT target list --- Atsushi Ogawa
-
Bruce Momjian authored
-
Tom Lane authored
-
- 21 Oct, 1999 5 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
23 Jul 99. Not sure why this didn't get applied before...
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 19 Oct, 1999 1 commit
-
-
Tom Lane authored
logfile.c wanted ... seems easier to fix BufFileSeek.
-
- 18 Oct, 1999 7 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
in the backend. Still a few stragglers, but we're getting closer to being rid of query length limits...
-
Tom Lane authored
boundary-condition bug in myinput() which caused flex scanner to fail on tokens larger than a bufferload. Turns out flex doesn't want null- terminated input ... and if it gives you a 1-character buffer, you'd better supply a character, not a null, lest you be thought to be reporting end of input.
-
Bruce Momjian authored
-
- 17 Oct, 1999 5 commits
-
-
Tom Lane authored
topmost SELECT node after rearranging query tree.
-
Tom Lane authored
proc_exit time. I discovered that if the frontend closes the connection when you're inside a transaction block, there is nothing ensuring that temp files go away ... I wonder whether proc_exit ought to try to do an explicit transaction abort?
-
Tom Lane authored
-
Tom Lane authored
a generalized module 'tuplesort.c' that can sort either HeapTuples or IndexTuples, and is not tied to execution of a Sort node. Clean up memory leakages in sorting, and replace nbtsort.c's private implementation of mergesorting with calls to tuplesort.c.
-
Tom Lane authored
-
- 16 Oct, 1999 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
recycle storage within sort temp file on a block-by-block basis. This reduces peak disk usage to essentially just the volume of data being sorted, whereas it had been about 4x the data volume before.
-
Tatsuo Ishii authored
this is neccesary to make sure that the backend and the database uses same RELSEG_SIZE.
-
- 15 Oct, 1999 4 commits
-
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
>From the ORACLE 7 SQL Language Reference Manual: ----------------------------------------------------- COMMENT Purpose: To add a comment about a table, view, snapshot, or column into the data dictionary. Prerequisites: The table, view, or snapshot must be in your own schema or you must have COMMENT ANY TABLE system privilege. Syntax: COMMENT ON [ TABLE table ] | [ COLUMN table.column] IS 'text' You can effectively drop a comment from the database by setting it to the empty string ''. ----------------------------------------------------- Example: COMMENT ON TABLE workorders IS 'Maintains base records for workorder information'; COMMENT ON COLUMN workorders.hours IS 'Number of hours the engineer worked on the task'; to drop a comment: COMMENT ON COLUMN workorders.hours IS ''; The current patch will simply perform the insert into pg_description, as per the TODO. And, of course, when the table is dropped, any comments relating to it or any of its attributes are also dropped. I haven't looked at the ODBC source yet, but I do know from an ODBC client standpoint that the standard does support the notion of table and column comments. Hopefully the ODBC driver is already fetching these values from pg_description, but if not, it should be trivial. Hope this makes the grade, Mike Mascari (mascarim@yahoo.com)
-