提交 250d1812 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 3ec7a519
...@@ -283,12 +283,24 @@ java org.h2.test.TestAll timer ...@@ -283,12 +283,24 @@ java org.h2.test.TestAll timer
System.setProperty("h2.check2", "true"); System.setProperty("h2.check2", "true");
/* /*
maybe make cmd+enter work for mac?
docs & h2 console / tools: replace h2.jar with h2*.jar
create_100_tables.sql (show columns in h2 console for h2 databases)
postgresql generate_series?
is in-memory scan index re-using ids? is in-memory scan index re-using ids?
don't store default values (store a special value) don't store default values (store a special value)
build.sh from mac (test in Ubuntu) build.sh from mac (test in Ubuntu)
btree: maybe split at the insertion point btree: maybe split at the insertion point
split files (1 GB max size) split files (1 GB max size)
add a setting (that can be changed at runtime) to call fsync and delay on each commit
drop table emp;
drop table dept;
create table emp (empid integer, name varchar(255), deptid integer);
create table dept (deptid integer, dept_name varchar(255));
select * from emp natural join dept;
select deptid, name, dept_name from emp natural join dept;
(works for MySQL, PostgreSQL)
multithreaded kernel multithreaded kernel
......
...@@ -17,9 +17,11 @@ db8 = MySQL, com.mysql.jdbc.Driver, jdbc:mysql://localhost/test?jdbcCompliantTru ...@@ -17,9 +17,11 @@ db8 = MySQL, com.mysql.jdbc.Driver, jdbc:mysql://localhost/test?jdbcCompliantTru
# MySQL configuration: # MySQL configuration:
# create database test; # create database test;
# create user sa identified by 'sa'; # create user 'sa'@'localhost' identified by 'sa';
# use test; # use test;
# grant all on * to sa with grant option; # grant all on * to 'sa'@'localhost' with grant option;
# sudo mysqld_safe
# sudo mysqladmin shutdown
#db2 = MSSQLServer, com.microsoft.jdbc.sqlserver.SQLServerDriver, jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=test, test, test #db2 = MSSQLServer, com.microsoft.jdbc.sqlserver.SQLServerDriver, jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=test, test, test
#db2 = Oracle, oracle.jdbc.driver.OracleDriver, jdbc:oracle:thin:@localhost:1521:XE, client, client #db2 = Oracle, oracle.jdbc.driver.OracleDriver, jdbc:oracle:thin:@localhost:1521:XE, client, client
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论