- 19 Jul, 2002 1 commit
-
-
Bruce Momjian authored
* -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG
-
- 18 Jul, 2002 28 commits
-
-
Peter Eisentraut authored
extension to create binary compatible casts. Includes dependency tracking as well. pg_proc.proimplicit is now defunct, but will be removed in a separate commit. pg_dump provides a migration path from the previous scheme to declare casts. Dumping binary compatible casts is currently impossible, though.
-
Bruce Momjian authored
> * -Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)
-
Bruce Momjian authored
* Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
operator classes, both of which are schema-local and so should really be droppable.
-
Tom Lane authored
-
Tatsuo Ishii authored
-
Bruce Momjian authored
> * -Make sure all block numbers are unsigned to increase maximum table size
-
Bruce Momjian authored
statements. Unique indexes with CREATE INDEX. Basically, pg_constraint left outer'd to pg_index. Rod Taylor
-
Bruce Momjian authored
Used to report that GRANT could not find function nonexistant. Rod Taylor
-
Bruce Momjian authored
ExecStatusType BeginTransaction(); ExecStatusType EndTransaction(); Piotr Klaban
-
Bruce Momjian authored
reflects the changes in the tablefunc-fix patch that I sent in the other day. It also refers to "see contrib/tablefunc for more examples", which is next on my list of things to finish and submit. Joe Conway
-
Bruce Momjian authored
the 'expanded' output mode (\x). Neil Conway
-
Bruce Momjian authored
tests Brent Verner
-
Bruce Momjian authored
COPY x (a,d,c,b) from stdin; COPY x (a,c) to stdout; as well as the corresponding changes to pg_dump to use the new functionality. This functionality is not available when using the BINARY option. If a column is not specified in the COPY FROM statement, its default values will be used. In addition to this functionality, I tweaked a couple of the error messages emitted by the new COPY <options> checks. Brent Verner
-
Bruce Momjian authored
of about). Christopher Kings-Lynne
-
Bruce Momjian authored
Implements between (symmetric / asymmetric) as a node. Executes the left or right expression once, makes a Const out of the resulting Datum and executes the >=, <= portions out of the Const sets. Of course, the parser does a fair amount of preparatory work for this to happen. Rod Taylor
-
Bruce Momjian authored
Conway (BuildTupleFromCStrings sets NULL for pass-by-value types when intended value is 0). It also implements some other improvements suggested by Neil. Joe Conway
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tatsuo Ishii authored
changed since CREATE CONVERSION supported.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tatsuo Ishii authored
conversion procs and conversions are added in initdb. Currently supported conversions are: UTF-8(UNICODE) <--> SQL_ASCII, ISO-8859-1 to 16, EUC_JP, EUC_KR, EUC_CN, EUC_TW, SJIS, BIG5, GBK, GB18030, UHC, JOHAB, TCVN EUC_JP <--> SJIS EUC_TW <--> BIG5 MULE_INTERNAL <--> EUC_JP, SJIS, EUC_TW, BIG5 Note that initial contents of pg_conversion system catalog are created in the initdb process. So doing initdb required is ideal, it's possible to add them to your databases by hand, however. To accomplish this: psql -f your_postgresql_install_path/share/conversion_create.sql your_database So I did not bump up the version in cataversion.h. TODO: Add more conversion procs Add [CASCADE|RESTRICT] to DROP CONVERSION Add tuples to pg_depend Add regression tests Write docs Add SQL99 CONVERT command? -- Tatsuo Ishii
-
- 17 Jul, 2002 2 commits
-
-
Bruce Momjian authored
> * -Report failure to find readline or zlib at end of configure run
-
Bruce Momjian authored
AC_SEARCH_LIBS(getopt_long, [getopt])
-
- 16 Jul, 2002 9 commits
-
-
Tom Lane authored
functionality. Of note: dropping a table that has a SERIAL column defined now drops the associated sequence automatically.
-
Barry Lind authored
fixed bug in support for timestamp without time zone reported by Yuva Chandolu (ychandolu@ebates.com)
-
Bruce Momjian authored
check.
-
Bruce Momjian authored
-
Tom Lane authored
objects created during initdb (except for the system views, which I think do not need to be pinned).
-
Bruce Momjian authored
> > David Clark (dclarknospam@opsi.co.za) reports a bug with a severity > > Table 3-7 SQL Literal escaped octets shows the input escape > > representation for a single quote as '\\'' , but the third paragraph > > below table 3-8 SQL Output Escaped Octets says that the single quote > > must be input as '\'' > > Nice catch. '\'' is correct as shown in the example in Table 3-7. > > > > > Also in the same paragraph mentioned above it says input for the > > single quote must be '\'' (or '\\134') shouldn't this be (or '\\047') > > Also a bug. Should be '\\047', as you pointed out. > Here's a patch to fix the binary string doc errors. Joe Conway
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-