package SQL::Translator::Parser::MySQL;
# -------------------------------------------------------------------
-# $Id: MySQL.pm,v 1.52 2006-02-22 22:54:12 kycl4rk Exp $
+# $Id: MySQL.pm,v 1.53 2006-03-16 19:24:02 kycl4rk Exp $
# -------------------------------------------------------------------
# Copyright (C) 2002-4 SQLFairy Authors
#
use strict;
use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
-$VERSION = sprintf "%d.%02d", q$Revision: 1.52 $ =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf "%d.%02d", q$Revision: 1.53 $ =~ /(\d+)\.(\d+)/;
$DEBUG = 0 unless defined $DEBUG;
use Data::Dumper;
}
}
+field_qualifier : /unique/i KEY(?)
+ {
+ $return = {
+ is_unique => 1,
+ }
+ }
+
+field_qualifier : KEY
+ {
+ $return = {
+ has_index => 1,
+ }
+ }
+
reference_definition : /references/i table_name parens_field_list(?) match_type(?) on_delete(?) on_update(?)
{
$return = {
}
}
+ if ( $fdata->{'has_index'} ) {
+ $table->add_index(
+ name => '',
+ type => 'NORMAL',
+ fields => $fdata->{'name'},
+ ) or die $table->error;
+ }
+
+ if ( $fdata->{'is_unique'} ) {
+ $table->add_constraint(
+ name => '',
+ type => 'UNIQUE',
+ fields => $fdata->{'name'},
+ ) or die $table->error;
+ }
+
if ( $field->data_type =~ /(set|enum)/i && !$field->size ) {
my %extra = $field->extra;
my $longest = 0;