|
|
|
Repeating test on 0.7.4 on Ubuntu, can't repeat this problem:
0: jdbc:sqlstream:> create global temporary table gtt(id integer primary key . . . . . . . . . > , textvalue varchar(20)) on commit preserve rows; No rows affected (0.821 seconds) 0: jdbc:sqlstream:> insert into gtt values(1,'test string'); 1 row affected (1.378 seconds) 0: jdbc:sqlstream:> select * from gtt; +-----+--------------+ | ID | TEXTVALUE | +-----+--------------+ | 1 | test string | +-----+--------------+ 1 row selected (1.039 seconds) 0: jdbc:sqlstream:> !quit Closing: com.sqlstream.aspen.jdbc.AspenRJConnection demo@bento:~/eigenbase/eigenbase-0.7.4/bin$ sqllineClient Connecting to jdbc:sqlstream:;sessionName='sqllineClient@/dev/pts/2:demo@bento' Connected to: SQLstream (version 1.1.2) Driver: SQLstreamJdbcDriver (version 1.1-distrib) Autocommit status: true Transaction isolation: TRANSACTION_REPEATABLE_READ sqlline version 1.0.4-jh by Marc Prud'hommeaux 0: jdbc:sqlstream:> set schema 'test'; No rows affected (0.187 seconds) 0: jdbc:sqlstream:> select * from gtt; +-----+------------+ | ID | TEXTVALUE | +-----+------------+ +-----+------------+ No rows selected (1.345 seconds) I can reproduce this with my latest development build, so the problem is still there. See also FRG-298. Suffice it to say that Farrago support for global temporary tables is currently quarter-baked. I'll update the status page accordingly.
|
||||||||||||||||||||||||||||||||||||||||||||
Can't reproduce on 0.7.4 windows as the server refuses to start (time for a separate bug report).