Downgrade global version - highest version in 9002 on cpan is 1.58 - thus go with...
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / Oracle.pm
CommitLineData
17cae8ab 1package SQL::Translator::Parser::Oracle;
2
3# -------------------------------------------------------------------
478f608d 4# Copyright (C) 2002-2009 SQLFairy Authors
17cae8ab 5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; version 2.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18# 02111-1307 USA
19# -------------------------------------------------------------------
20
21=head1 NAME
22
23SQL::Translator::Parser::Oracle - parser for Oracle
24
25=head1 SYNOPSIS
26
27 use SQL::Translator;
28 use SQL::Translator::Parser::Oracle;
29
30 my $translator = SQL::Translator->new;
31 $translator->parser("SQL::Translator::Parser::Oracle");
32
33=head1 DESCRIPTION
34
35From http://www.ss64.com/ora/table_c.html:
36
37 CREATE [GLOBAL TEMPORARY] TABLE [schema.]table (tbl_defs,...)
38 [ON COMMIT {DELETE|PRESERVE} ROWS]
39 [storage_options | CLUSTER cluster_name (col1, col2,... )
40 | ORGANIZATION {HEAP [storage_options]
41 | INDEX idx_organized_tbl_clause}]
42 [LOB_storage_clause][varray_clause][nested_storage_clause]
43 partitioning_options
44 [[NO]CACHE] [[NO]MONITORING] [PARALLEL parallel_clause]
45 [ENABLE enable_clause | DISABLE disable_clause]
46 [AS subquery]
47
48tbl_defs:
49 column datatype [DEFAULT expr] [column_constraint(s)]
17cae8ab 50 table_ref_constraint
51
52storage_options:
53 PCTFREE int
54 PCTUSED int
55 INITTRANS int
56 MAXTRANS int
57 STORAGE storage_clause
58 TABLESPACE tablespace
59 [LOGGING|NOLOGGING]
60
61idx_organized_tbl_clause:
62 storage_option(s) [PCTTHRESHOLD int]
63 [COMPRESS int|NOCOMPRESS]
64 [ [INCLUDING column_name] OVERFLOW [storage_option(s)] ]
65
66nested_storage_clause:
67 NESTED TABLE nested_item STORE AS storage_table
68 [RETURN AS {LOCATOR|VALUE} ]
69
70partitioning_options:
71 Partition_clause {ENABLE|DISABLE} ROW MOVEMENT
72
73Column Constraints
74(http://www.ss64.com/ora/clause_constraint_col.html)
75
76 CONSTRAINT constrnt_name {UNIQUE|PRIMARY KEY} constrnt_state
77
78 CONSTRAINT constrnt_name CHECK(condition) constrnt_state
79
80 CONSTRAINT constrnt_name [NOT] NULL constrnt_state
81
82 CONSTRAINT constrnt_name REFERENCES [schema.]table[(column)]
83 [ON DELETE {CASCADE|SET NULL}] constrnt_state
84
85constrnt_state
86 [[NOT] DEFERRABLE] [INITIALLY {IMMEDIATE|DEFERRED}]
87 [RELY | NORELY] [USING INDEX using_index_clause]
88 [ENABLE|DISABLE] [VALIDATE|NOVALIDATE]
89 [EXCEPTIONS INTO [schema.]table]
90
3b2be65a 91Note that probably not all of the above syntax is supported, but the grammar
92was altered to better handle the syntax created by DDL::Oracle.
93
17cae8ab 94=cut
95
96use strict;
da06ac74 97use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
4ab3763d 98$VERSION = '1.59';
17cae8ab 99$DEBUG = 0 unless defined $DEBUG;
100
101use Data::Dumper;
102use Parse::RecDescent;
103use Exporter;
104use base qw(Exporter);
105
106@EXPORT_OK = qw(parse);
107
108# Enable warnings within the Parse::RecDescent module.
109$::RD_ERRORS = 1; # Make sure the parser dies when it encounters an error
110$::RD_WARN = 1; # Enable warnings. This will warn on unused rules &c.
111$::RD_HINT = 1; # Give out hints to help fix problems.
112
3b668c81 113$GRAMMAR = q`
17cae8ab 114
dc7506f7 115{ my ( %tables, %indices, %constraints, $table_order, @table_comments, %views, $view_order, %procedures, $proc_order ) }
17cae8ab 116
117#
118# The "eofile" rule makes the parser fail if any "statement" rule
119# fails. Otherwise, the first successful match by a "statement"
120# won't cause the failure needed to know that the parse, as a whole,
121# failed. -ky
122#
87053733 123startrule : statement(s) eofile
124 {
125 $return = {
6a36a3d8 126 tables => \%tables,
127 indices => \%indices,
128 constraints => \%constraints,
dc7506f7 129 views => \%views,
130 procedures => \%procedures,
87053733 131 };
132 }
17cae8ab 133
134eofile : /^\Z/
135
87053733 136statement : remark
3b668c81 137 | run
87053733 138 | prompt
139 | create
f77a985b 140 | table_comment
067e3cf4 141 | comment_on_table
142 | comment_on_column
143 | alter
144 | drop
145 | <error>
17cae8ab 146
44567b47 147alter : /alter/i WORD /[^;]+/ ';'
067e3cf4 148 { @table_comments = () }
149
150drop : /drop/i TABLE ';'
151
152drop : /drop/i WORD(s) ';'
153 { @table_comments = () }
44567b47 154
87053733 155create : create_table table_name '(' create_definition(s /,/) ')' table_option(s?) ';'
17cae8ab 156 {
157 my $table_name = $item{'table_name'};
158 $tables{ $table_name }{'order'} = ++$table_order;
159 $tables{ $table_name }{'table_name'} = $table_name;
160
067e3cf4 161 if ( @table_comments ) {
162 $tables{ $table_name }{'comments'} = [ @table_comments ];
163 @table_comments = ();
164 }
165
17cae8ab 166 my $i = 1;
167 my @constraints;
87053733 168 for my $definition ( @{ $item[4] } ) {
17cae8ab 169 if ( $definition->{'type'} eq 'field' ) {
170 my $field_name = $definition->{'name'};
171 $tables{ $table_name }{'fields'}{ $field_name } =
172 { %$definition, order => $i };
173 $i++;
174
17cae8ab 175 for my $constraint ( @{ $definition->{'constraints'} || [] } ) {
176 $constraint->{'fields'} = [ $field_name ];
177 push @{ $tables{ $table_name }{'constraints'} },
178 $constraint;
179 }
180 }
181 elsif ( $definition->{'type'} eq 'constraint' ) {
182 $definition->{'type'} = $definition->{'constraint_type'};
f77a985b 183 push @{ $tables{ $table_name }{'constraints'} }, $definition;
17cae8ab 184 }
185 else {
186 push @{ $tables{ $table_name }{'indices'} }, $definition;
187 }
188 }
189
87053733 190 for my $option ( @{ $item[6] } ) {
7c4cf567 191 push @{ $tables{ $table_name }{'table_options'} }, $option;
17cae8ab 192 }
193
194 1;
195 }
196
7f6504d3 197create : create_index index_name /on/i table_name index_expr table_option(?) ';'
b85a95ec 198 {
3b668c81 199 my $table_name = $item[4];
200 if ( $item[1] ) {
6a36a3d8 201 push @{ $constraints{ $table_name } }, {
3b668c81 202 name => $item[2],
6a36a3d8 203 type => 'unique',
3b668c81 204 fields => $item[5],
6a36a3d8 205 };
206 }
207 else {
208 push @{ $indices{ $table_name } }, {
3b668c81 209 name => $item[2],
6a36a3d8 210 type => 'normal',
3b668c81 211 fields => $item[5],
6a36a3d8 212 };
213 }
b85a95ec 214 }
215
7f6504d3 216index_expr: parens_word_list
217 { $item[1] }
218 | '(' WORD parens_word_list ')'
c4222efd 219 {
220 my $arg_list = join(",", @{$item[3]});
221 $return = "$item[2]($arg_list)";
222 }
7f6504d3 223
dc7506f7 224create : /create/i /or replace/i /procedure/i table_name not_end m#^/$#im
225 {
226 @table_comments = ();
227 my $proc_name = $item[4];
228 # Hack to strip owner from procedure name
229 $proc_name =~ s#.*\.##;
230 my $owner = '';
231 my $sql = "$item[1] $item[2] $item[3] $item[4] $item[5]";
232
233 $procedures{ $proc_name }{'order'} = ++$proc_order;
234 $procedures{ $proc_name }{'name'} = $proc_name;
235 $procedures{ $proc_name }{'owner'} = $owner;
236 $procedures{ $proc_name }{'sql'} = $sql;
237 }
238
239not_end: m#.*?(?=^/$)#ism
240
241create : /create/i /or replace/i /force/i /view/i table_name not_delimiter ';'
242 {
243 @table_comments = ();
244 my $view_name = $item[5];
245 # Hack to strip owner from view name
246 $view_name =~ s#.*\.##;
247 my $sql = "$item[1] $item[2] $item[3] $item[4] $item[5] $item[6] $item[7]";
248
249 $views{ $view_name }{'order'} = ++$view_order;
250 $views{ $view_name }{'name'} = $view_name;
251 $views{ $view_name }{'sql'} = $sql;
252 }
253
254not_delimiter: /.*?(?=;)/is
255
17cae8ab 256# Create anything else (e.g., domain, function, etc.)
3b668c81 257create : ...!create_table ...!create_index /create/i WORD /[^;]+/ ';'
067e3cf4 258 { @table_comments = () }
17cae8ab 259
3b668c81 260create_index : /create/i UNIQUE(?) /index/i
ae8a4ce3 261 { $return = @{$item[2]} }
3b668c81 262
263index_name : NAME '.' NAME
264 { $item[3] }
265 | NAME
266 { $item[1] }
267
17cae8ab 268global_temporary: /global/i /temporary/i
269
270table_name : NAME '.' NAME
271 { $item[3] }
272 | NAME
273 { $item[1] }
274
275create_definition : field
276 | table_constraint
277 | <error>
278
f77a985b 279table_comment : comment
280 {
281 my $comment = $item[1];
282 $return = $comment;
283 push @table_comments, $comment;
284 }
285
17cae8ab 286comment : /^\s*(?:#|-{2}).*\n/
067e3cf4 287 {
39129b47 288 my $comment = $item[1];
289 $comment =~ s/^\s*(#|-{2})\s*//;
290 $comment =~ s/\s*$//;
291 $return = $comment;
f77a985b 292 }
293
294comment : /\/\*/ /[^\*]+/ /\*\//
295 {
296 my $comment = $item[2];
297 $comment =~ s/^\s*|\s*$//g;
298 $return = $comment;
067e3cf4 299 }
17cae8ab 300
87053733 301remark : /^REM\s+.*\n/
302
3b668c81 303run : /^(RUN|\/)\s+.*\n/
304
87053733 305prompt : /prompt/i /(table|index|sequence|trigger)/i ';'
306
307prompt : /prompt\s+create\s+.*\n/i
308
947dfd86 309comment_on_table : /comment/i /on/i /table/i table_name /is/i comment_phrase ';'
17cae8ab 310 {
947dfd86 311 push @{ $tables{ $item{'table_name'} }{'comments'} }, $item{'comment_phrase'};
17cae8ab 312 }
313
947dfd86 314comment_on_column : /comment/i /on/i /column/i column_name /is/i comment_phrase ';'
17cae8ab 315 {
316 my $table_name = $item[4]->{'table'};
317 my $field_name = $item[4]->{'field'};
318 push @{ $tables{ $table_name }{'fields'}{ $field_name }{'comments'} },
947dfd86 319 $item{'comment_phrase'};
17cae8ab 320 }
321
322column_name : NAME '.' NAME
323 { $return = { table => $item[1], field => $item[3] } }
324
947dfd86 325comment_phrase : /'.*?'/
326 {
327 my $val = $item[1];
328 $val =~ s/^'|'$//g;
329 $return = $val;
330 }
17cae8ab 331
332field : comment(s?) field_name data_type field_meta(s?) comment(s?)
333 {
947dfd86 334 my ( $is_pk, $default, @constraints );
335 my $null = 1;
17cae8ab 336 for my $meta ( @{ $item[4] } ) {
947dfd86 337 if ( $meta->{'type'} eq 'default' ) {
338 $default = $meta;
339 next;
340 }
341 elsif ( $meta->{'type'} eq 'not_null' ) {
342 $null = 0;
343 next;
344 }
345 elsif ( $meta->{'type'} eq 'primary_key' ) {
346 $is_pk = 1;
347 }
348
349 push @constraints, $meta if $meta->{'supertype'} eq 'constraint';
17cae8ab 350 }
351
947dfd86 352 my @comments = ( @{ $item[1] }, @{ $item[5] } );
17cae8ab 353
354 $return = {
355 type => 'field',
356 name => $item{'field_name'},
357 data_type => $item{'data_type'}{'type'},
358 size => $item{'data_type'}{'size'},
17cae8ab 359 null => $null,
360 default => $default->{'value'},
947dfd86 361 is_primary_key => $is_pk,
17cae8ab 362 constraints => [ @constraints ],
947dfd86 363 comments => [ @comments ],
17cae8ab 364 }
365 }
366 | <error>
367
368field_name : NAME
369
7f6504d3 370data_type : ora_data_type data_size(?)
17cae8ab 371 {
372 $return = {
373 type => $item[1],
374 size => $item[2][0] || '',
375 }
376 }
7f6504d3 377
378data_size : '(' VALUE(s /,/) data_size_modifier(?) ')'
379 { $item[2] }
380
381data_size_modifier: /byte/i
382 | /char/i
17cae8ab 383
3b668c81 384column_constraint : constraint_name(?) column_constraint_type constraint_state(s?)
17cae8ab 385 {
386 my $desc = $item{'column_constraint_type'};
387 my $type = $desc->{'type'};
388 my $fields = $desc->{'fields'} || [];
389 my $expression = $desc->{'expression'} || '';
390
391 $return = {
947dfd86 392 supertype => 'constraint',
393 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 394 type => $type,
395 expression => $type eq 'check' ? $expression : '',
40c5e2f4 396 deferrable => $item{'deferrable'},
17cae8ab 397 deferred => $item{'deferred'},
398 reference_table => $desc->{'reference_table'},
399 reference_fields => $desc->{'reference_fields'},
400# match_type => $desc->{'match_type'},
100684f3 401# on_update => $desc->{'on_update'},
17cae8ab 402 }
403 }
404
405constraint_name : /constraint/i NAME { $item[2] }
406
c72b8f32 407column_constraint_type : /not\s+null/i { $return = { type => 'not_null' } }
3294d624 408 | /unique/i
17cae8ab 409 { $return = { type => 'unique' } }
c72b8f32 410 | /primary\s+key/i
17cae8ab 411 { $return = { type => 'primary_key' } }
947dfd86 412 | /check/i '(' /[^)]+/ ')'
c72b8f32 413 { $return = { type => 'check', expression => $item[3] } }
100684f3 414 | /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 415 {
416 $return = {
417 type => 'foreign_key',
418 reference_table => $item[2],
419 reference_fields => $item[3][0],
420# match_type => $item[4][0],
100684f3 421 on_delete => $item[5][0],
17cae8ab 422 }
423 }
424
3b668c81 425constraint_state : deferrable { $return = { type => $item[1] } }
426 | deferred { $return = { type => $item[1] } }
427 | /(no)?rely/i { $return = { type => $item[1] } }
17cae8ab 428# | /using/i /index/i using_index_clause
3b668c81 429# { $return = { type => 'using_index', index => $item[3] } }
430 | /(dis|en)able/i { $return = { type => $item[1] } }
431 | /(no)?validate/i { $return = { type => $item[1] } }
432 | /exceptions/i /into/i table_name
433 { $return = { type => 'exceptions_into', table => $item[3] } }
17cae8ab 434
435deferrable : /not/i /deferrable/i
436 { $return = 'not_deferrable' }
437 | /deferrable/i
438 { $return = 'deferrable' }
439
440deferred : /initially/i /(deferred|immediate)/i { $item[2] }
441
442ora_data_type :
947dfd86 443 /(n?varchar2|varchar)/i { $return = 'varchar2' }
17cae8ab 444 |
445 /n?char/i { $return = 'character' }
446 |
00e41431 447 /n?dec/i { $return = 'decimal' }
448 |
17cae8ab 449 /number/i { $return = 'number' }
450 |
87053733 451 /integer/i { $return = 'integer' }
452 |
17cae8ab 453 /(pls_integer|binary_integer)/i { $return = 'integer' }
454 |
3b668c81 455 /interval\s+day/i { $return = 'interval day' }
17cae8ab 456 |
3b668c81 457 /interval\s+year/i { $return = 'interval year' }
17cae8ab 458 |
3b668c81 459 /long\s+raw/i { $return = 'long raw' }
17cae8ab 460 |
60979a72 461 /(long|date|timestamp|raw|rowid|urowid|mlslabel|clob|nclob|blob|bfile|float|double)/i { $item[1] }
17cae8ab 462
463parens_value_list : '(' VALUE(s /,/) ')'
464 { $item[2] }
465
466parens_word_list : '(' WORD(s /,/) ')'
467 { $item[2] }
468
469field_meta : default_val
947dfd86 470 | column_constraint
17cae8ab 471
472default_val : /default/i /(?:')?[\w\d.-]*(?:')?/
473 {
b85a95ec 474 my $val = $item[2];
475 $val =~ s/'//g if defined $val;
17cae8ab 476 $return = {
947dfd86 477 supertype => 'constraint',
478 type => 'default',
17cae8ab 479 value => $val,
480 }
481 }
3294d624 482 | /null/i
483 {
484 $return = {
485 supertype => 'constraint',
486 type => 'default',
487 value => 'NULL',
488 }
489 }
17cae8ab 490
491create_table : /create/i global_temporary(?) /table/i
492
7c4cf567 493table_option : /organization/i WORD
494 {
495 $return = { 'ORGANIZATION' => $item[2] }
496 }
497
498table_option : /nomonitoring/i
499 {
500 $return = { 'NOMONITORING' => undef }
501 }
502
503table_option : /parallel/i '(' key_value(s) ')'
504 {
505 $return = { 'PARALLEL' => $item[3] }
506 }
507
508key_value : WORD VALUE
509 {
510 $return = { $item[1], $item[2] }
511 }
512
17cae8ab 513table_option : /[^;]+/
514
3b668c81 515table_constraint : comment(s?) constraint_name(?) table_constraint_type deferrable(?) deferred(?) constraint_state(s?) comment(s?)
17cae8ab 516 {
517 my $desc = $item{'table_constraint_type'};
518 my $type = $desc->{'type'};
519 my $fields = $desc->{'fields'};
520 my $expression = $desc->{'expression'};
521 my @comments = ( @{ $item[1] }, @{ $item[-1] } );
522
523 $return = {
947dfd86 524 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 525 type => 'constraint',
526 constraint_type => $type,
527 fields => $type ne 'check' ? $fields : [],
528 expression => $type eq 'check' ? $expression : '',
40c5e2f4 529 deferrable => $item{'deferrable(?)'},
947dfd86 530 deferred => $item{'deferred(?)'},
17cae8ab 531 reference_table => $desc->{'reference_table'},
532 reference_fields => $desc->{'reference_fields'},
533# match_type => $desc->{'match_type'}[0],
100684f3 534 on_delete => $desc->{'on_delete'} || $desc->{'on_delete_do'},
535 on_update => $desc->{'on_update'} || $desc->{'on_update_do'},
17cae8ab 536 comments => [ @comments ],
537 }
538 }
539
3b668c81 540table_constraint_type : /primary key/i '(' NAME(s /,/) ')'
17cae8ab 541 {
542 $return = {
543 type => 'primary_key',
544 fields => $item[3],
545 }
546 }
547 |
548 /unique/i '(' NAME(s /,/) ')'
549 {
550 $return = {
551 type => 'unique',
552 fields => $item[3],
553 }
554 }
555 |
556 /check/ '(' /(.+)/ ')'
557 {
558 $return = {
559 type => 'check',
560 expression => $item[3],
561 }
562 }
563 |
100684f3 564 /foreign key/i '(' NAME(s /,/) ')' /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 565 {
566 $return = {
567 type => 'foreign_key',
568 fields => $item[3],
569 reference_table => $item[6],
570 reference_fields => $item[7][0],
188a97b5 571# match_type => $item[8][0],
572 on_delete => $item[8][0],
573# on_update => $item[9][0],
17cae8ab 574 }
575 }
576
100684f3 577on_delete : /on delete/i WORD(s)
188a97b5 578 { join(' ', @{$item[2]}) }
17cae8ab 579
6a36a3d8 580UNIQUE : /unique/i { $return = 1 }
581
17cae8ab 582WORD : /\w+/
583
584NAME : /\w+/ { $item[1] }
585
067e3cf4 586TABLE : /table/i
587
17cae8ab 588VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
589 { $item[1] }
590 | /'.*?'/ # XXX doesn't handle embedded quotes
591 { $item[1] }
592 | /NULL/
593 { 'NULL' }
594
3b668c81 595`;
17cae8ab 596
597# -------------------------------------------------------------------
598sub parse {
599 my ( $translator, $data ) = @_;
a74de73b 600 my $parser = Parse::RecDescent->new($GRAMMAR);
17cae8ab 601
602 local $::RD_TRACE = $translator->trace ? 1 : undef;
603 local $DEBUG = $translator->debug;
604
605 unless (defined $parser) {
606 return $translator->error("Error instantiating Parse::RecDescent ".
607 "instance: Bad grammer");
608 }
609
87053733 610 my $result = $parser->startrule( $data );
17cae8ab 611 die "Parse failed.\n" unless defined $result;
c72b8f32 612 if ( $DEBUG ) {
613 warn "Parser results =\n", Dumper($result), "\n";
614 }
947dfd86 615
6a36a3d8 616 my $schema = $translator->schema;
617 my $indices = $result->{'indices'};
618 my $constraints = $result->{'constraints'};
619 my @tables = sort {
87053733 620 $result->{'tables'}{ $a }{'order'}
621 <=>
622 $result->{'tables'}{ $b }{'order'}
623 } keys %{ $result->{'tables'} };
947dfd86 624
625 for my $table_name ( @tables ) {
87053733 626 my $tdata = $result->{'tables'}{ $table_name };
627 next unless $tdata->{'table_name'};
947dfd86 628 my $table = $schema->add_table(
629 name => $tdata->{'table_name'},
44567b47 630 comments => $tdata->{'comments'},
947dfd86 631 ) or die $schema->error;
632
7c4cf567 633 $table->options( $tdata->{'table_options'} );
634
947dfd86 635 my @fields = sort {
636 $tdata->{'fields'}->{$a}->{'order'}
637 <=>
638 $tdata->{'fields'}->{$b}->{'order'}
639 } keys %{ $tdata->{'fields'} };
640
641 for my $fname ( @fields ) {
642 my $fdata = $tdata->{'fields'}{ $fname };
643 my $field = $table->add_field(
644 name => $fdata->{'name'},
645 data_type => $fdata->{'data_type'},
646 size => $fdata->{'size'},
647 default_value => $fdata->{'default'},
648 is_auto_increment => $fdata->{'is_auto_inc'},
649 is_nullable => $fdata->{'null'},
44567b47 650 comments => $fdata->{'comments'},
947dfd86 651 ) or die $table->error;
947dfd86 652 }
653
87053733 654 push @{ $tdata->{'indices'} }, @{ $indices->{ $table_name } || [] };
6a36a3d8 655 push @{ $tdata->{'constraints'} },
656 @{ $constraints->{ $table_name } || [] };
87053733 657
947dfd86 658 for my $idata ( @{ $tdata->{'indices'} || [] } ) {
659 my $index = $table->add_index(
660 name => $idata->{'name'},
661 type => uc $idata->{'type'},
662 fields => $idata->{'fields'},
663 ) or die $table->error;
664 }
665
666 for my $cdata ( @{ $tdata->{'constraints'} || [] } ) {
667 my $constraint = $table->add_constraint(
668 name => $cdata->{'name'},
669 type => $cdata->{'type'},
670 fields => $cdata->{'fields'},
671 reference_table => $cdata->{'reference_table'},
672 reference_fields => $cdata->{'reference_fields'},
673 match_type => $cdata->{'match_type'} || '',
100684f3 674 on_delete => $cdata->{'on_delete'} || $cdata->{'on_delete_do'},
675 on_update => $cdata->{'on_update'} || $cdata->{'on_update_do'},
947dfd86 676 ) or die $table->error;
677 }
678 }
dc7506f7 679
680 my @procedures = sort {
681 $result->{procedures}->{ $a }->{'order'} <=> $result->{procedures}->{ $b }->{'order'}
682 } keys %{ $result->{procedures} };
683 foreach my $proc_name (@procedures) {
684 $schema->add_procedure(
685 name => $proc_name,
686 owner => $result->{procedures}->{$proc_name}->{owner},
687 sql => $result->{procedures}->{$proc_name}->{sql},
688 );
689 }
690
691 my @views = sort {
692 $result->{views}->{ $a }->{'order'} <=> $result->{views}->{ $b }->{'order'}
693 } keys %{ $result->{views} };
694 foreach my $view_name (keys %{ $result->{views} }) {
695 $schema->add_view(
696 name => $view_name,
697 sql => $result->{views}->{$view_name}->{sql},
698 );
699 }
947dfd86 700
f62bd16c 701 return 1;
17cae8ab 702}
703
7041;
705
947dfd86 706# -------------------------------------------------------------------
707# Something there is that doesn't love a wall.
708# Robert Frost
709# -------------------------------------------------------------------
710
17cae8ab 711=pod
712
713=head1 AUTHOR
714
715Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
716
717=head1 SEE ALSO
718
3b2be65a 719SQL::Translator, Parse::RecDescent, DDL::Oracle.
17cae8ab 720
721=cut