-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Upstream Spice AI changes to
datafusion-federation
(#51)
Co-authored-by: sgrebnov <[email protected]> Co-authored-by: yfu <[email protected]> Co-authored-by: Qianqian <[email protected]> Co-authored-by: Michiel De Backker <[email protected]> Co-authored-by: Suriya Kandaswamy <[email protected]> Co-authored-by: Suriya Kandaswamy <[email protected]> Co-authored-by: hozan23 <[email protected]> Co-authored-by: hozan23 <[email protected]>
- Loading branch information
1 parent
c8fa466
commit af09abe
Showing
17 changed files
with
2,264 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
/node_modules | ||
package-lock.json | ||
package.json | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in library 'datafusion_federation'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--lib", | ||
"--package=datafusion-federation" | ||
], | ||
"filter": { | ||
"name": "datafusion_federation", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug example 'sqlite'", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--example=sqlite", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "sqlite", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in example 'sqlite'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--example=sqlite", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "sqlite", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug example 'flight-sql'", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--example=flight-sql", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "flight-sql", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in example 'flight-sql'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--example=flight-sql", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "flight-sql", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug example 'postgres-partial'", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--example=postgres-partial", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "postgres-partial", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in example 'postgres-partial'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--example=postgres-partial", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "postgres-partial", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug example 'sqlite-partial'", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--example=sqlite-partial", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "sqlite-partial", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in example 'sqlite-partial'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--example=sqlite-partial", | ||
"--package=datafusion-federation-examples" | ||
], | ||
"filter": { | ||
"name": "sqlite-partial", | ||
"kind": "example" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in library 'datafusion_federation_flight_sql'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--lib", | ||
"--package=datafusion-federation-flight-sql" | ||
], | ||
"filter": { | ||
"name": "datafusion_federation_flight_sql", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in library 'datafusion_federation_sql'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--lib", | ||
"--package=datafusion-federation-sql" | ||
], | ||
"filter": { | ||
"name": "datafusion_federation_sql", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.