~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/tests/r/select_cpuinfo.result

  • Committer: patrick crews
  • Date: 2011-01-26 21:35:28 UTC
  • mfrom: (2088.9.25 project_steve_austin)
  • mto: This revision was merged to the branch mainline in revision 2121.
  • Revision ID: gleebix@gmail.com-20110126213528-rounf54hyridrak4
Re-merge with trunk to fix make-distcheck

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DROP TABLE IF EXISTS t1;
2
 
CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="../../filesystem_ln/select_cpuinfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=":";
 
2
CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/select_cpuinfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=":";
3
3
SELECT * FROM t1;
4
4
address sizes   apicid  bogomips        cache size      cache_alignment clflush size    core id cpu MHz cpu cores       cpu family      cpuid level     flags   fpu     fpu_exception   initial apicid  model   model name      physical id     power management        processor       siblings        stepping        vendor_id       wp
5
5
36 bits physical, 48 bits virtual       0       5999.27 6144 KB 64      64      0       2000.000        2       6       13      fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good nopl pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 lahf_lm        yes     yes     0       23      Intel(R) Core(TM)2 Duo CPU     E8400  @ 3.00GHz 0       NULL    0       2       10      GenuineIntel    yes
31
31
  `stepping` VARCHAR(3),
32
32
  `vendor_id` VARCHAR(13),
33
33
  `wp` VARCHAR(4)
34
 
) ENGINE=FILESYSTEM FILE='../../filesystem_ln/select_cpuinfo.data', FORMAT='KEY_VALUE', COL_SEPARATOR=':' COLLATE = utf8_general_ci
 
34
) ENGINE=FILESYSTEM FILE='VARDIR/filesystem_ln/select_cpuinfo.data', FORMAT='KEY_VALUE', COL_SEPARATOR=':' COLLATE = utf8_general_ci
35
35
DROP TABLE t1;