Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1998-01-05Move variable.c to commands/ and aclchk.c to catalog/.Bruce Momjian
1998-01-05Change some ABORTS to ERROR. Add line number when COPY Failure.Bruce Momjian
1998-01-05Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian
1997-12-04Add 'GERMAN' option to DateStyle.Thomas G. Lockhart
1997-11-21Remove archive stuff.Bruce Momjian
1997-11-14Reformat parser table (cosmetic only).Thomas G. Lockhart
1997-11-10Do a more complete job of supporting time zone information.Thomas G. Lockhart
Try to save pre-existing TZ environment variable if possible. Includes code from Keith Parks.
1997-11-10Change quickdie elog notice to a single message.Thomas G. Lockhart
Clean up FloatExceptionHandler elog message source code.
1997-11-07Enable SET value = DEFAULT by passing null parameter to parsers.Thomas G. Lockhart
Enable SET TIME ZONE using TZ environment variable.
1997-10-30Add initial backend support for SET/SHOW/RESET TIME ZONE.Thomas G. Lockhart
Uses TZ environment variable. Needs additional schemes for brain-dead SQL92 time offsets.
1997-10-25Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian
1997-09-08Used modified version of indent that understands over 100 typedefs.Bruce Momjian
1997-09-08Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian
indenting. Also static variable indenting.
1997-09-07Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian
1997-08-12Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵Bruce Momjian
some (void) casts that are unnecessary.
1997-06-20Fix broken parsing for lists of options. Apparently broken when support wasThomas G. Lockhart
added for keyword=value options.
1997-06-03SET geqo TO 'on' restores _use_geqo_rels_ to GEQO_RELS, notVadim B. Mikheev
to last specified with 'on' #. What is better ?
1997-06-02SET var TO 'a=b'Vadim B. Mikheev
^^ is supported by get_token now. (SET geqo TO 'on=XXX' works now).
1997-05-20New VAR r_plans added to enable turn ON/OFFVadim B. Mikheev
using right-sided plans.
1997-05-16Improve informational messages for "show" command responses.Thomas G. Lockhart
1997-04-29SET geqo TO ON|OFFVadim B. Mikheev
1997-04-24Enable to set _cpu_page_wight_ & _cpu_index_page_wight_ viaVadim B. Mikheev
SET cost_heap(cost_index) TO ...
1997-04-231. SHOW/RESET var fixed.Vadim B. Mikheev
2. vacuum() call changed (ANALYZE).
1997-04-23To: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>Marc G. Fournier
Subject: Re: [PATCHES] SET DateStyle patches On Tue, 22 Apr 1997, Thomas Lockhart wrote: > Some more patches! These (try to) finish implementing SET variable TO value > for "DateStyle" (changed the name from simply "date" to be more descriptive). > This is based on code from Martin and Bruce (?), which was easy to modify. > The syntax is > > SET DateStyle TO 'iso' > SET DateStyle TO 'postgres' > SET DateStyle TO 'sql' > SET DateStyle TO 'european' > SET DateStyle TO 'noneuropean' > SET DateStyle TO 'us' (same as "noneuropean") > SET DateStyle TO 'default' (current same as "postgres,us") > > ("european" is just compared for the first 4 characters, and "noneuropean" > is compared for the first 7 to allow less typing). > > Multiple arguments are allowed, so SET datestyle TO 'sql,euro' is valid. > > My mods also try to implement "SHOW variable" and "RESET variable", but > that part just core dumps at the moment. I would guess that my errors > are obvious to someone who knows what they are doing with the parser stuff, > so if someone (Bruce and/or Martin??) could have it do the right thing > we will have a more complete set of what we need. > > Also, I would like to have a floating point precision global variable to > implement "SET precision TO 10" and perhaps "SET precision TO 10,2" for > float8 and float4, but I don't know how to do that for integer types rather > than strings. If someone is fixing the SHOW and RESET code, perhaps they can > add some hooks for me to do the floats while they are at it. > > I've left some remnants of variable structures in the source code which > I did not use in the interests of getting something working for v6.1. > We'll have time to clean things up for the next release...
1997-04-17From: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>Marc G. Fournier
Subject: [HACKERS] Patch: set date to euro/us postgres/iso/sql Here a patch that implements a SET date for use by the datetime stuff. The syntax is SET date TO 'val[,val,...]' where val is us (us dates), euro (european dates), postgres, iso or sql. Thomas is working on the integration in his datetime module. I just needed to get the patch out before it went stale :)
1997-04-02From: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>Marc G. Fournier
Subject: [HACKERS] Patch: SET var TO 'val' Here is a patch that adds a "SET variable TO 'somevalue'" capability to the parser, and then calls the SetPGVariable() function (which does just issue a elog(NOTICE) to see whether it works). That's the framework for adding timezone/date format/language/... stuff.
1997-03-25MIssed adding a file to the repositoryMarc G. Fournier