eclipse-vertx / vertx-sql-client

High performance reactive SQL Client written in Java
Apache License 2.0
894 stars 200 forks source link

[DB2] Creating temporary tables #747

Open aguibert opened 4 years ago

aguibert commented 4 years ago

Over in https://github.com/hibernate/hibernate-reactive/pull/325 they were trying to create temporary tables and this was not working (no stack trace at the moment).

An example of the SQL being used is:

declare global temporary table foo(id int)
gavinking commented 4 years ago

@aguibert Alright, so I managed to get it to work using

create global temporary table

instead of:

declare global temporary table

And by running:

create user temporary tablespace hreact1 managed by system using ('hreact')

when the test suite starts.

So this is now no longer a high priority for me.

(Please feel free to close the issue if you prefer.)