sim732 / h2database

Automatically exported from code.google.com/p/h2database
0 stars 0 forks source link

CREATE ALIAS NOCACHE Patch #534

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The function org.h2.expression.JavaFunction#isFast return always False, that 
means it will create a temporary file containing the whole content of the 
returned ResultSet.

The following branch add a NOCACHE keyword to change the default behavior of 
creating temporary files.

https://github.com/nicolas-f/H2-Mirror/tree/nocache

Original issue reported on code.google.com by nico.de...@gmail.com on 4 Dec 2013 at 7:57

GoogleCodeExporter commented 9 years ago
Thanks a lot Nicolas!

I changed the syntax a little, and updated various bits of the patch to make 
the code easier to read.

The syntax is now CREATE ALIAS .. NOBUFFER

Original comment by noelgrandin on 4 Dec 2013 at 8:50