~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to conf/in.zz

  • Committer: Andy Lester
  • Date: 2008-08-10 01:24:02 UTC
  • mto: (266.1.31 use-replace-funcs)
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: andy@petdance.com-20080810012402-poten4vrxv1y7rki
make things more const-correct

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
$tables = {
2
 
        rows => [100],
3
 
        primary_key => [ undef ]
4
 
};
5
 
 
6
 
$fields = {
7
 
        types => [ 'int' ],
8
 
        indexes => [ 'key' ]
9
 
};
10
 
 
11
 
$data = {
12
 
        numbers => [ '5' ]
13
 
}
14