-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathSQLDialect.td
More file actions
40 lines (26 loc) · 889 Bytes
/
SQLDialect.td
File metadata and controls
40 lines (26 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//===- SQLDialect.td - SQL dialect -----------*- tablegen -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef SQL_DIALECT
#define SQL_DIALECT
include "mlir/IR/SymbolInterfaces.td"
include "mlir/Interfaces/SideEffectInterfaces.td"
include "mlir/Interfaces/CallInterfaces.td"
include "mlir/Interfaces/CastInterfaces.td"
def SQL_Dialect : Dialect {
let summary = "A dialect for SQL languages in MLIR.";
let description = [{
TBD
}];
let name = "sql";
let cppNamespace = "::mlir::sql";
let useDefaultTypePrinterParser = 1;
let extraClassDeclaration = [{
void registerTypes();
}];
}
#endif // SQL_DIALECT