]> granicus.if.org Git - postgresql/commit
Implement SQL99 CREATE CAST and DROP CAST statements.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 22 Jun 2002 02:04:55 +0000 (02:04 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 22 Jun 2002 02:04:55 +0000 (02:04 +0000)
commit90edb265e396312e4a0c15d021745a944648e7ee
tree6ab71ee5aeca610b16a0c7b718322695785c23bc
parentcc8839a10b42462ba32e3261a97e9cf81a8d1e67
Implement SQL99 CREATE CAST and DROP CAST statements.
 Also implement alternative forms to expose the PostgreSQL CREATE FUNCTION
 features.
Implement syntax for READ ONLY and READ WRITE clauses in SET TRANSACTION.
 READ WRITE is already implemented (of course).
Implement syntax for "LIKE table" clause in CREATE TABLE. Should be fairly
 easy to complete since it resembles SELECT INTO.
Implement MATCH SIMPLE clause for foreign key definitions. This is explicit
 SQL99 syntax for the default behavior, so we now support it :)
Start implementation of shorthand for national character literals in
 scanner. For now, just swallow the leading "N", but sometime soon let's
 figure out how to pass leading type info from the scanner to the parser.
 We should use the same technique for binary and hex bit string literals,
 though it might be unusual to have two apparently independent literal
 types fold into the same storage type.
doc/src/sgml/features.sgml
src/backend/parser/gram.y
src/backend/parser/keywords.c
src/backend/parser/scan.l