Implement SQL99 CREATE CAST and DROP CAST statements.
authorThomas G. Lockhart <[email protected]>
Sat, 22 Jun 2002 02:04:55 +0000 (02:04 +0000)
committerThomas G. Lockhart <[email protected]>
Sat, 22 Jun 2002 02:04:55 +0000 (02:04 +0000)
commitd961396e9ffe05d45259a413f2caa62ff83d08ef
tree66e5b8ce0bd97e81ed49c4bdecdf07e7c34868b4
parent88c56745d3e89ea93a0cd8ba6a51d766e7b17071
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