Just committed some changes...

From: Thomas Lockhart <lockhart(at)alumni(dot)caltech(dot)edu>
To: Hackers List <pgsql-hackers(at)postgresql(dot)org>
Subject: Just committed some changes...
Date: 2000-07-14 16:14:28
Message-ID: 396F3C64.5D4F0ADF@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I've committed some changes which implement a few new things.

From the CVS log:

Implement nested block comments in the backend and in psql.
Include updates for the comment.sql regression test.
Implement SET SESSION CHARACTERISTICS and SET DefaultXactIsoLevel.
Implement SET SESSION CHARACTERISTICS TRANSACTION COMMIT
and SET AutoCommit in the parser only.
Need to add code to actually do something.
Implement WITHOUT TIME ZONE type qualifier.
Define SCHEMA keyword, along with stubbed-out grammar.
Implement "[IN|INOUT|OUT] [varname] type" function arguments
in parser only; INOUT and OUT throws an elog(ERROR).
Add PATH as a type-specific token, since PATH is in SQL99
to support schema resource search and resolution.

Since some of these changes involve tokens in the parser, you may need
to do a "make clean all install" to get everything sync'd. afaict this
is because we propagate a few of the gram.y token values deeper into the
backend...

- Thomas

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-07-14 19:29:35 Index column "opt_type" slated for destruction
Previous Message Thomas Lockhart 2000-07-14 16:11:35 Re: Problem with error detection in libpq?