Mercurial > pub > Impl
view Lib/Schema/DB/Constraint/Index.pm @ 62:c64bd1bf727d
Web application
Page query handler
author | wizard |
---|---|
date | Fri, 12 Mar 2010 16:23:46 +0300 |
parents | 16ada169ca75 |
children | 4267a2ac3d46 |
line wrap: on
line source
package Schema::DB::Constraint::Index; use strict; use Common; use base qw(Schema::DB::Constraint); sub CTOR { my $this = shift; $this->SUPER::CTOR(@_); my %colnames; not grep { $colnames{$_}++ } $this->Columns or die new Exception('Each column in the index can occur only once'); } 1;