WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ private void runCreateTableTests(CreateTableTestData testData) {
// Set of passing ITs
static Stream<Arguments> testCasesForCreateTablePass() {
List<Arguments> testCases = new ArrayList<>();

// create table with all types
testCases.add(
Arguments.of(
Expand Down Expand Up @@ -395,6 +396,27 @@ static Stream<Arguments> testCasesForCreateTablePass() {
}
""")));

// [data-api#1806]: table name "ann" must be quoted
testCases.add(
Arguments.of(
new CreateTableTestData(
"ann",
"""
{
"name": "ann",
"definition": {
"columns": {
"t": "text",
"v": {
"type": "vector",
"dimension": 5
}
},
"primaryKey": "t"
}
}
""")));

return testCases.stream();
}

Expand Down
Loading