Nope:
ERROR - Table 'cas.histotemp' doesn't exist
This is on OS X if that helps.
note that this article says that implicit temp tables in innodb don't
work right.
http://forum.percona.com/index.php/m/618/
but it's lacking in more detail..
Note that if I try this under:
solaris:
Database changed
mysql> create temporary table histotemp (
-> label varchar(255),
-> k int);
Query OK, 0 rows affected (0.51 sec)
it works,
under linux:
mysql> create temporary table histotemp (
-> label varchar(255),
-> k int);
Query OK, 0 rows affected (0.06 sec)
ok, and then in OS X:
mysql> create temporary table histotemp (
-> label varchar(255),
-> k int);
ERROR 1146 (42S02): Table 'cas.histotemp' doesn't exist
Weird that it's only my OS X version.
Let me build a new my.cnf and see what's up. I'm currently using
innodb_file_per_table and other strange 'features' of the innodb
engine.
I also get this:
90630 13:21:36 [Warning] Setting lower_case_table_names=2 because file
system for /Users/Bob/Development/mysql/data/ is case insensitive
so let me see why my instance is not working and I'll try again.
thanks for the quick followup.
bobm