-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added the support for [SQL pipe syntax](https://research.google/pubs/pub1005959/) - Improved the `execute_query` with an interactive web UI and more functionality. - Added new and improved SQL language features. - Improved documentation. GitOrigin-RevId: 88446a33c3a4498dab3f5cf2a1fe92c9f56d9723 Change-Id: Ia8ba13c3131dfc37b8ca9c60c9fd92752eac941d
- Loading branch information
1 parent
f6df697
commit f30c319
Showing
554 changed files
with
95,737 additions
and
16,427 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
6.2.0 | ||
6.5.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
licenses(["notice"]) # Apache v2.0 | ||
|
||
|
||
load("@rules_foreign_cc//foreign_cc:defs.bzl", "boost_build") | ||
|
||
filegroup( | ||
name = "all_srcs", | ||
srcs = glob(["**"]), | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
boost_build( | ||
name = "boost", | ||
bootstrap_options = ["--without-icu"], | ||
lib_source = ":all_srcs", | ||
out_static_libs = select({ | ||
"//conditions:default": [ | ||
"libboost_atomic.a", | ||
"libboost_filesystem.a", | ||
"libboost_program_options.a", | ||
"libboost_regex.a", | ||
"libboost_system.a", | ||
"libboost_thread.a", | ||
], | ||
}), | ||
user_options = [ | ||
"-j4", | ||
"--with-filesystem", | ||
"--with-program_options", | ||
"--with-regex", | ||
"--with-system", | ||
"--with-thread", | ||
"variant=release", | ||
"link=static", | ||
"threading=multi", | ||
], | ||
visibility = ["//visibility:public"], | ||
) |
Oops, something went wrong.