Gitiles
Code Review
Sign In
asterix-gerrit.ics.uci.edu
/
asterixdb
/
669d8f620eca1dfc423004128481926fc13ba421
/
.
/
asterix-app
/
src
/
test
/
resources
/
fuzzyjoin
/
pub
/
020-drop-dblp.aql
blob: c82183b42c71365ba55f81afd9caca7d2a3e025f [
file
] [
log
] [
blame
]
use
dataverse fuzzy1
;
declare type
DBLPType
as
open
{
id
:
int32
,
dblpid
:
string
,
title
:
string
,
authors
:
string
,
misc
:
string
}
declare nodegroup group1 on nc1
,
nc2
;
declare dataset DBLP
(
DBLPType
)
primary key id on group1
;
drop dataset DBLP
;