package SQL::Translator::Parser::Oracle;
# -------------------------------------------------------------------
-# $Id: Oracle.pm,v 1.7 2003-08-21 02:39:21 kycl4rk Exp $
+# $Id: Oracle.pm,v 1.8 2003-08-26 21:38:24 kycl4rk Exp $
# -------------------------------------------------------------------
# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>
#
use strict;
use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
-$VERSION = sprintf "%d.%02d", q$Revision: 1.7 $ =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf "%d.%02d", q$Revision: 1.8 $ =~ /(\d+)\.(\d+)/;
$DEBUG = 0 unless defined $DEBUG;
use Data::Dumper;
$GRAMMAR = q!
-{ my ( %tables, $table_order ) }
+{ my ( %tables, $table_order, @table_comments ) }
#
# The "eofile" rule makes the parser fail if any "statement" rule
eofile : /^\Z/
statement : create
- | comment
- | comment_on_table
- | comment_on_column
- | alter
- | <error>
+ | comment
+ | comment_on_table
+ | comment_on_column
+ | alter
+ | drop
+ | <error>
alter : /alter/i WORD /[^;]+/ ';'
+ { @table_comments = () }
+
+drop : /drop/i TABLE ';'
+
+drop : /drop/i WORD(s) ';'
+ { @table_comments = () }
create : create_table table_name '(' create_definition(s /,/) ')' table_option(s?) ';'
{
$tables{ $table_name }{'order'} = ++$table_order;
$tables{ $table_name }{'table_name'} = $table_name;
+ if ( @table_comments ) {
+ $tables{ $table_name }{'comments'} = [ @table_comments ];
+ @table_comments = ();
+ }
+
my $i = 1;
my @constraints;
for my $definition ( @{ $item[4] } ) {
# Create anything else (e.g., domain, function, etc.)
create : /create/i WORD /[^;]+/ ';'
+ { @table_comments = () }
global_temporary: /global/i /temporary/i
| <error>
comment : /^\s*(?:#|-{2}).*\n/
+ {
+ push @table_comments, $comment;
+ }
comment_on_table : /comment/i /on/i /table/i table_name /is/i comment_phrase ';'
{
NAME : /\w+/ { $item[1] }
+TABLE : /table/i
+
VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
{ $item[1] }
| /'.*?'/ # XXX doesn't handle embedded quotes