mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
* fixed ddl issues with cache type/size; removed shardwidth option; improved error message
(cherry picked from commit c88d60c9ab)
75 lines
1.6 KiB
Go
75 lines
1.6 KiB
Go
package defs
|
|
|
|
var createTable = TableTest{
|
|
name: "createTable",
|
|
SQLTests: []SQLTest{
|
|
{
|
|
name: "keyPartitionsSetTo0",
|
|
SQLs: sqls(
|
|
"create table foo (_id id, i1 int) keypartitions 0",
|
|
),
|
|
ExpErr: "invalid value '0' for key partitions (should be a number between 1-10000)",
|
|
},
|
|
{
|
|
name: "keyPartitionsSetTo10001",
|
|
SQLs: sqls(
|
|
"create table foo (_id id, i1 int) keypartitions 10001",
|
|
),
|
|
ExpErr: "invalid value '10001' for key partitions (should be a number between 1-10000)",
|
|
},
|
|
{
|
|
name: "commentInt",
|
|
SQLs: sqls(
|
|
"create table foo (_id id, i1 int) comment 34",
|
|
),
|
|
ExpErr: "string literal expected",
|
|
},
|
|
{
|
|
name: "commentStringNoQuote",
|
|
SQLs: sqls(
|
|
"create table foo (_id id, i1 int) comment bad",
|
|
),
|
|
ExpErr: "expected literal, found bad",
|
|
},
|
|
{
|
|
name: "commentString",
|
|
SQLs: sqls(
|
|
"create table bar (_id id, i1 int) comment 'this should work'",
|
|
),
|
|
},
|
|
},
|
|
}
|
|
|
|
var alterTable = TableTest{
|
|
name: "alterTable",
|
|
Table: tbl(
|
|
"alter_table_test",
|
|
srcHdrs(
|
|
srcHdr("_id", fldTypeID),
|
|
srcHdr("a_int", fldTypeInt),
|
|
),
|
|
),
|
|
SQLTests: []SQLTest{
|
|
{
|
|
name: "alterTableBadTable",
|
|
SQLs: sqls(
|
|
"alter table alter_table_test_foo add column a_int int",
|
|
),
|
|
ExpErr: "table 'alter_table_test_foo' not found",
|
|
},
|
|
{
|
|
name: "alterTableAddExistingCol",
|
|
SQLs: sqls(
|
|
"alter table alter_table_test add column a_int int",
|
|
),
|
|
ExpErr: "duplicate column 'a_int'",
|
|
},
|
|
{
|
|
name: "alterTableDropNonExistentCol",
|
|
SQLs: sqls(
|
|
"alter table alter_table_test drop column b_int",
|
|
),
|
|
ExpErr: "column 'b_int' not found",
|
|
},
|
|
},
|
|
}
|