diff --git a/be/CMakeLists.txt b/be/CMakeLists.txt index 392d83091265de..97f477ab16e1cf 100644 --- a/be/CMakeLists.txt +++ b/be/CMakeLists.txt @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/be/src/aes/CMakeLists.txt b/be/src/aes/CMakeLists.txt index e0e3825569c2f0..0e6177c5e6a920 100644 --- a/be/src/aes/CMakeLists.txt +++ b/be/src/aes/CMakeLists.txt @@ -1,13 +1,8 @@ -# Modifications copyright (C) 2017, Baidu.com, Inc. -# Copyright 2017 The Apache Software Foundation +# Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # @@ -17,6 +12,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# under the License. # where to put generated libraries set(LIBRARY_OUTPUT_PATH "${BUILD_DIR}/src/aes") diff --git a/be/src/aes/my_aes.cpp b/be/src/aes/my_aes.cpp index 66cf04e2aa2149..4cae2f8e02fa65 100644 --- a/be/src/aes/my_aes.cpp +++ b/be/src/aes/my_aes.cpp @@ -1,21 +1,18 @@ -/* Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ - - -//#include -//#include #include "my_aes.h" #include "my_aes_impl.h" #include diff --git a/be/src/aes/my_aes.h b/be/src/aes/my_aes.h index c4817e471b1644..d65987e51d0ad4 100644 --- a/be/src/aes/my_aes.h +++ b/be/src/aes/my_aes.h @@ -1,22 +1,21 @@ +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. + #ifndef MY_AES_INCLUDED #define MY_AES_INCLUDED -/* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ - - /* Header file for my_aes.c */ /* Wrapper to give simple interface for MySQL to AES standard encryption */ diff --git a/be/src/aes/my_aes_impl.h b/be/src/aes/my_aes_impl.h index f4fd26fb5dab6a..82c710c5e2f8e7 100644 --- a/be/src/aes/my_aes_impl.h +++ b/be/src/aes/my_aes_impl.h @@ -1,17 +1,17 @@ -/* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. #ifndef BDG_PALO_BE_EXPRS_MY_AES_IMPL_H #define BDG_PALO_BE_EXPRS_MY_AES_IMPL_H diff --git a/be/src/aes/my_aes_openssl.cpp b/be/src/aes/my_aes_openssl.cpp index fbf40ebd674c36..72f3eb64476896 100644 --- a/be/src/aes/my_aes_openssl.cpp +++ b/be/src/aes/my_aes_openssl.cpp @@ -1,20 +1,18 @@ -/* Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved. +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ - -//#include -//#include #include "my_aes.h" #include "my_aes_impl.h" #include diff --git a/be/src/agent/CMakeLists.txt b/be/src/agent/CMakeLists.txt index b59c58fd4c2791..c89a44eadb314b 100644 --- a/be/src/agent/CMakeLists.txt +++ b/be/src/agent/CMakeLists.txt @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/be/src/agent/agent_server.cpp b/be/src/agent/agent_server.cpp index b3e5503b48d1f6..53adfa8ac3cbcf 100644 --- a/be/src/agent/agent_server.cpp +++ b/be/src/agent/agent_server.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/agent_server.h b/be/src/agent/agent_server.h index c0dc9087f236d9..bc354c65b1b8e5 100644 --- a/be/src/agent/agent_server.h +++ b/be/src/agent/agent_server.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/cgroups_mgr.cpp b/be/src/agent/cgroups_mgr.cpp index 9d7e98743b1c11..a5405ca0a051ca 100644 --- a/be/src/agent/cgroups_mgr.cpp +++ b/be/src/agent/cgroups_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/cgroups_mgr.h b/be/src/agent/cgroups_mgr.h index b62a56cecc282a..a2d04ab3f78023 100644 --- a/be/src/agent/cgroups_mgr.h +++ b/be/src/agent/cgroups_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/file_downloader.cpp b/be/src/agent/file_downloader.cpp index 7bf55cf85c6927..efa261dc962f66 100644 --- a/be/src/agent/file_downloader.cpp +++ b/be/src/agent/file_downloader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/file_downloader.h b/be/src/agent/file_downloader.h index 70d5ce29c514f9..40be7b323feb59 100644 --- a/be/src/agent/file_downloader.h +++ b/be/src/agent/file_downloader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/heartbeat_server.cpp b/be/src/agent/heartbeat_server.cpp index 75cfff0a3c238e..e0f99cf941b8ce 100644 --- a/be/src/agent/heartbeat_server.cpp +++ b/be/src/agent/heartbeat_server.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/heartbeat_server.h b/be/src/agent/heartbeat_server.h index 4d4e541eb1a5e6..f701390ca83d43 100644 --- a/be/src/agent/heartbeat_server.h +++ b/be/src/agent/heartbeat_server.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/pusher.cpp b/be/src/agent/pusher.cpp index 9b9a4e0e63623d..d8b68763b47298 100644 --- a/be/src/agent/pusher.cpp +++ b/be/src/agent/pusher.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/pusher.h b/be/src/agent/pusher.h index a574999bec6ad0..1cf36d931f4b58 100644 --- a/be/src/agent/pusher.h +++ b/be/src/agent/pusher.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/status.h b/be/src/agent/status.h index 7402b3029bdd32..7a377af166cf81 100644 --- a/be/src/agent/status.h +++ b/be/src/agent/status.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/task_worker_pool.cpp b/be/src/agent/task_worker_pool.cpp index 29ec78d41ab87f..19bcdae6963627 100644 --- a/be/src/agent/task_worker_pool.cpp +++ b/be/src/agent/task_worker_pool.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/task_worker_pool.h b/be/src/agent/task_worker_pool.h index 74cd050b3a307f..02fe0bdf5c7c87 100644 --- a/be/src/agent/task_worker_pool.h +++ b/be/src/agent/task_worker_pool.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/topic_listener.h b/be/src/agent/topic_listener.h index c76473bb90605d..285015b25d4f69 100644 --- a/be/src/agent/topic_listener.h +++ b/be/src/agent/topic_listener.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/topic_subscriber.cpp b/be/src/agent/topic_subscriber.cpp index bea2c8f2f49a10..f2d7161bbccf11 100644 --- a/be/src/agent/topic_subscriber.cpp +++ b/be/src/agent/topic_subscriber.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/topic_subscriber.h b/be/src/agent/topic_subscriber.h index 0b85646b524908..8762bf3dc7f2a3 100644 --- a/be/src/agent/topic_subscriber.h +++ b/be/src/agent/topic_subscriber.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/user_resource_listener.cpp b/be/src/agent/user_resource_listener.cpp index 7061bad864a80c..09dd7fb402bc7b 100644 --- a/be/src/agent/user_resource_listener.cpp +++ b/be/src/agent/user_resource_listener.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/user_resource_listener.h b/be/src/agent/user_resource_listener.h index 9d36a2d2c7c535..bf6935c16ecc9d 100644 --- a/be/src/agent/user_resource_listener.h +++ b/be/src/agent/user_resource_listener.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/utils.cpp b/be/src/agent/utils.cpp index bb64e3ae06e629..ed423fdb8a0c37 100644 --- a/be/src/agent/utils.cpp +++ b/be/src/agent/utils.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/agent/utils.h b/be/src/agent/utils.h index f2e86c0acf4b02..46e58a9fb41f24 100644 --- a/be/src/agent/utils.h +++ b/be/src/agent/utils.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_reader.cpp b/be/src/exec/broker_reader.cpp index 5dabf52fd743a2..9fba753a6086cf 100644 --- a/be/src/exec/broker_reader.cpp +++ b/be/src/exec/broker_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_reader.h b/be/src/exec/broker_reader.h index 8eb8735f41c3a7..f4501a81d55711 100644 --- a/be/src/exec/broker_reader.h +++ b/be/src/exec/broker_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_scan_node.cpp b/be/src/exec/broker_scan_node.cpp index ca437dad1f8aab..b95ed61ef206fd 100644 --- a/be/src/exec/broker_scan_node.cpp +++ b/be/src/exec/broker_scan_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_scan_node.h b/be/src/exec/broker_scan_node.h index d84f69e235e38e..9427aa5a59504d 100644 --- a/be/src/exec/broker_scan_node.h +++ b/be/src/exec/broker_scan_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_scanner.cpp b/be/src/exec/broker_scanner.cpp index 151d0fb6bea495..1143a68f2a31b9 100644 --- a/be/src/exec/broker_scanner.cpp +++ b/be/src/exec/broker_scanner.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_scanner.h b/be/src/exec/broker_scanner.h index 620e367e8a4e8a..522781f70f1823 100644 --- a/be/src/exec/broker_scanner.h +++ b/be/src/exec/broker_scanner.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_writer.cpp b/be/src/exec/broker_writer.cpp index 184b35a5b97465..069995871ffa56 100644 --- a/be/src/exec/broker_writer.cpp +++ b/be/src/exec/broker_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/broker_writer.h b/be/src/exec/broker_writer.h index e84b4687526f33..a89abccef43380 100644 --- a/be/src/exec/broker_writer.h +++ b/be/src/exec/broker_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/csv_scan_node.cpp b/be/src/exec/csv_scan_node.cpp index 52f1a1980b416c..5bcfdb480f18bd 100644 --- a/be/src/exec/csv_scan_node.cpp +++ b/be/src/exec/csv_scan_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/csv_scan_node.h b/be/src/exec/csv_scan_node.h index 10a23c6431f4bf..dd0d2ddf8c8ac7 100644 --- a/be/src/exec/csv_scan_node.h +++ b/be/src/exec/csv_scan_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/csv_scanner.cpp b/be/src/exec/csv_scanner.cpp index 5324bb79751a93..268d0100aa751d 100644 --- a/be/src/exec/csv_scanner.cpp +++ b/be/src/exec/csv_scanner.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/csv_scanner.h b/be/src/exec/csv_scanner.h index 5454863e7f41b8..cf4b5ab9311e44 100644 --- a/be/src/exec/csv_scanner.h +++ b/be/src/exec/csv_scanner.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/empty_set_node.cpp b/be/src/exec/empty_set_node.cpp index b20f2495a1ec06..993c06efd31e14 100644 --- a/be/src/exec/empty_set_node.cpp +++ b/be/src/exec/empty_set_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/empty_set_node.h b/be/src/exec/empty_set_node.h index d13aee24702b41..7cdf4cf09dfd22 100644 --- a/be/src/exec/empty_set_node.h +++ b/be/src/exec/empty_set_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/file_writer.h b/be/src/exec/file_writer.h index 913c7cd4c836f3..5a934d483bb200 100644 --- a/be/src/exec/file_writer.h +++ b/be/src/exec/file_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/local_file_reader.cpp b/be/src/exec/local_file_reader.cpp index ef25f9455f82ec..612afa983ba132 100644 --- a/be/src/exec/local_file_reader.cpp +++ b/be/src/exec/local_file_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/local_file_writer.cpp b/be/src/exec/local_file_writer.cpp index 32b35630d11f83..382905e3271599 100644 --- a/be/src/exec/local_file_writer.cpp +++ b/be/src/exec/local_file_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/local_file_writer.h b/be/src/exec/local_file_writer.h index f38299d46b02d1..0876e5d896743b 100644 --- a/be/src/exec/local_file_writer.h +++ b/be/src/exec/local_file_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/mysql_scan_node.cpp b/be/src/exec/mysql_scan_node.cpp index ba2a12a3c0c4e9..39ac3ffa065637 100644 --- a/be/src/exec/mysql_scan_node.cpp +++ b/be/src/exec/mysql_scan_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/mysql_scan_node.h b/be/src/exec/mysql_scan_node.h index 7196c9e95ea06a..302494fb651739 100644 --- a/be/src/exec/mysql_scan_node.h +++ b/be/src/exec/mysql_scan_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/mysql_scanner.cpp b/be/src/exec/mysql_scanner.cpp index 0ca4b4fead67ed..078bc638f02f44 100644 --- a/be/src/exec/mysql_scanner.cpp +++ b/be/src/exec/mysql_scanner.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/mysql_scanner.h b/be/src/exec/mysql_scanner.h index 3482b431fb20f7..b046fb75dcd382 100644 --- a/be/src/exec/mysql_scanner.h +++ b/be/src/exec/mysql_scanner.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_common.cpp b/be/src/exec/olap_common.cpp index 7331b1a21ef5a8..42dc8986197605 100644 --- a/be/src/exec/olap_common.cpp +++ b/be/src/exec/olap_common.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_common.h b/be/src/exec/olap_common.h index 0f2a408e29de44..4212daf4a9b887 100644 --- a/be/src/exec/olap_common.h +++ b/be/src/exec/olap_common.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_meta_reader.cpp b/be/src/exec/olap_meta_reader.cpp index 7da201b7e488b6..88106b138d9363 100644 --- a/be/src/exec/olap_meta_reader.cpp +++ b/be/src/exec/olap_meta_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_meta_reader.h b/be/src/exec/olap_meta_reader.h index a6e5dcd4b78264..207edf14936fc1 100644 --- a/be/src/exec/olap_meta_reader.h +++ b/be/src/exec/olap_meta_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_rewrite_node.cpp b/be/src/exec/olap_rewrite_node.cpp index 2e4b6e142b446c..64e49dc5ac831f 100644 --- a/be/src/exec/olap_rewrite_node.cpp +++ b/be/src/exec/olap_rewrite_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_rewrite_node.h b/be/src/exec/olap_rewrite_node.h index d0b7dfc4aba39c..69bb244421ea5a 100644 --- a/be/src/exec/olap_rewrite_node.h +++ b/be/src/exec/olap_rewrite_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_scan_node.cpp b/be/src/exec/olap_scan_node.cpp index 3e0b8f32389924..4def6f886418d5 100644 --- a/be/src/exec/olap_scan_node.cpp +++ b/be/src/exec/olap_scan_node.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_scan_node.h b/be/src/exec/olap_scan_node.h index d28412f8c739f3..e5869fbde912ba 100644 --- a/be/src/exec/olap_scan_node.h +++ b/be/src/exec/olap_scan_node.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_scanner.cpp b/be/src/exec/olap_scanner.cpp index cd57584fba70fd..20f5719796133b 100644 --- a/be/src/exec/olap_scanner.cpp +++ b/be/src/exec/olap_scanner.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_scanner.h b/be/src/exec/olap_scanner.h index a10fac4417d0c8..af554a58831136 100644 --- a/be/src/exec/olap_scanner.h +++ b/be/src/exec/olap_scanner.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/olap_utils.h b/be/src/exec/olap_utils.h index 220c3987c4df2a..12e6808d7bf4f9 100644 --- a/be/src/exec/olap_utils.h +++ b/be/src/exec/olap_utils.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exec/pl_task_root.h b/be/src/exec/pl_task_root.h index e69de29bb2d1d6..2015cc2a20b808 100644 --- a/be/src/exec/pl_task_root.h +++ b/be/src/exec/pl_task_root.h @@ -0,0 +1,53 @@ +// Modifications copyright (C) 2017, Baidu.com, Inc. +// Copyright 2017 The Apache Software Foundation. + +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + +#pragma once + +#include "exec/exec_node.h" + +namespace palo { + +// Pull load task root +class PlTaskRoot : public ExecNode { +public: + PlTaskRoot(ObjectPool* pool, const TPlanNode& tnode, const DescriptorTbl& descs); + virtual ~PlTaskRoot(); + + virtual Status init(const TPlanNode& tnode); + virtual Status prepare(RuntimeState* state); + virtual Status open(RuntimeState* state); + virtual Status get_next(RuntimeState* state, RowBatch* row_batch, bool* eos); + virtual Status close(RuntimeState* state); + + // the number of senders needs to be set after the c'tor, because it's not + // recorded in TPlanNode, and before calling prepare() + void set_num_senders(int num_senders) { + _num_senders = num_senders; + } + +protected: + virtual void debug_string(int indentation_level, std::stringstream* out) const; + +private: + int _num_senders; // needed for _stream_recvr construction +}; + +} + diff --git a/be/src/exec/scanner_ir.cpp b/be/src/exec/scanner_ir.cpp index e69de29bb2d1d6..2cda71bc52c557 100644 --- a/be/src/exec/scanner_ir.cpp +++ b/be/src/exec/scanner_ir.cpp @@ -0,0 +1,62 @@ +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. + +#ifdef IR_COMPILE +extern "C" +bool ir_string_to_bool(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::string_to_bool(s, len, result); +} + +extern "C" +int8_t ir_string_to_int8(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::string_to_int(s, len, result); +} + +extern "C" +int16_t ir_string_to_int16(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::string_to_int(s, len, result); +} + +extern "C" +int32_t ir_string_to_int32(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::string_to_int(s, len, result); +} + +extern "C" +int64_t ir_string_to_int64(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::StringToInt(s, len, result); +} + +extern "C" +float ir_string_to_float(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::StringToFloat(s, len, result); +} + +extern "C" +double ir_string_to_double(const char* s, int len, StringParser::ParseResult* result) { + return StringParser::StringToFloat(s, len, result); +} + +extern "C" +bool ir_is_null_string(const char* data, int len) { + return data == NULL || (len == 2 && data[0] == '\\' && data[1] == 'N'); +} + +extern "C" +bool ir_generic_is_null_string(const char* s, int slen, const char* n, int nlen) { + return s == NULL || (slen == nlen && StringCompare(s, slen, n, nlen, slen) == 0); +} +#endif +} diff --git a/be/src/exprs/json_functions.cpp b/be/src/exprs/json_functions.cpp index 11feead887be8b..ecfd7db5efad11 100644 --- a/be/src/exprs/json_functions.cpp +++ b/be/src/exprs/json_functions.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/exprs/json_functions.h b/be/src/exprs/json_functions.h index ea25ce374b5965..191b24b0cd26e7 100644 --- a/be/src/exprs/json_functions.h +++ b/be/src/exprs/json_functions.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/gen_cpp/CMakeLists.txt b/be/src/gen_cpp/CMakeLists.txt index 3638c40ee3c621..9f9155019c03c2 100644 --- a/be/src/gen_cpp/CMakeLists.txt +++ b/be/src/gen_cpp/CMakeLists.txt @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/be/src/http/action/checksum_action.cpp b/be/src/http/action/checksum_action.cpp index f5926c4fb7bee5..b819f2a6748528 100644 --- a/be/src/http/action/checksum_action.cpp +++ b/be/src/http/action/checksum_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/checksum_action.h b/be/src/http/action/checksum_action.h index 0ee4290c779079..52793c6fc944df 100644 --- a/be/src/http/action/checksum_action.h +++ b/be/src/http/action/checksum_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/health_action.cpp b/be/src/http/action/health_action.cpp index 7b7a7c2afdede0..7888339c502802 100644 --- a/be/src/http/action/health_action.cpp +++ b/be/src/http/action/health_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/health_action.h b/be/src/http/action/health_action.h index 888f04f674fc70..04e133f49f17d5 100644 --- a/be/src/http/action/health_action.h +++ b/be/src/http/action/health_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/mini_load.cpp b/be/src/http/action/mini_load.cpp index b7f29639fa6410..49b66166392c53 100644 --- a/be/src/http/action/mini_load.cpp +++ b/be/src/http/action/mini_load.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/mini_load.h b/be/src/http/action/mini_load.h index 6beb8f8300d6e4..751eb1c3f961c1 100644 --- a/be/src/http/action/mini_load.h +++ b/be/src/http/action/mini_load.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/pprof_actions.cpp b/be/src/http/action/pprof_actions.cpp index 65d188ad376f99..ddab483326e57b 100644 --- a/be/src/http/action/pprof_actions.cpp +++ b/be/src/http/action/pprof_actions.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/pprof_actions.h b/be/src/http/action/pprof_actions.h index d1762789e46325..84ebc37bee026a 100644 --- a/be/src/http/action/pprof_actions.h +++ b/be/src/http/action/pprof_actions.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/reload_tablet_action.cpp b/be/src/http/action/reload_tablet_action.cpp index ff96fedee4bb49..9177178347f804 100644 --- a/be/src/http/action/reload_tablet_action.cpp +++ b/be/src/http/action/reload_tablet_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/reload_tablet_action.h b/be/src/http/action/reload_tablet_action.h index 853193c07df284..0ba8df2cda3a12 100644 --- a/be/src/http/action/reload_tablet_action.h +++ b/be/src/http/action/reload_tablet_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/snapshot_action.cpp b/be/src/http/action/snapshot_action.cpp index 25cc4b9324d602..2d70323354454e 100644 --- a/be/src/http/action/snapshot_action.cpp +++ b/be/src/http/action/snapshot_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/action/snapshot_action.h b/be/src/http/action/snapshot_action.h index 46142142a09f97..3cd5c8f99c32cf 100644 --- a/be/src/http/action/snapshot_action.h +++ b/be/src/http/action/snapshot_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/default_path_handlers.cpp b/be/src/http/default_path_handlers.cpp index 2279d3c62d5e73..9c8060823777f6 100644 --- a/be/src/http/default_path_handlers.cpp +++ b/be/src/http/default_path_handlers.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/default_path_handlers.h b/be/src/http/default_path_handlers.h index ed0aac53b22b05..7947b92417ee68 100644 --- a/be/src/http/default_path_handlers.h +++ b/be/src/http/default_path_handlers.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/download_action.cpp b/be/src/http/download_action.cpp index 410a5def97fdb3..59bdd301563545 100644 --- a/be/src/http/download_action.cpp +++ b/be/src/http/download_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/download_action.h b/be/src/http/download_action.h index a92755af17ee71..2c62296d9781b1 100644 --- a/be/src/http/download_action.h +++ b/be/src/http/download_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_channel.cpp b/be/src/http/http_channel.cpp index 6271d10c33a7c8..0c1fd50c742355 100644 --- a/be/src/http/http_channel.cpp +++ b/be/src/http/http_channel.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_channel.h b/be/src/http/http_channel.h index 4574c13aae3a0f..d80e4b3c72f5bc 100644 --- a/be/src/http/http_channel.h +++ b/be/src/http/http_channel.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_handler.h b/be/src/http/http_handler.h index 37a409534faac4..967d0da505dc97 100644 --- a/be/src/http/http_handler.h +++ b/be/src/http/http_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_headers.cpp b/be/src/http/http_headers.cpp index e50ce5efc5766a..7b369d35c8fb49 100644 --- a/be/src/http/http_headers.cpp +++ b/be/src/http/http_headers.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_headers.h b/be/src/http/http_headers.h index c1dfdc0acc9cea..acee169492eb2f 100644 --- a/be/src/http/http_headers.h +++ b/be/src/http/http_headers.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_method.cpp b/be/src/http/http_method.cpp index cbe2cd6e5844d1..8ade35f051fd4c 100644 --- a/be/src/http/http_method.cpp +++ b/be/src/http/http_method.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_method.h b/be/src/http/http_method.h index ef1319a830ec5d..bd112438fb5ff2 100644 --- a/be/src/http/http_method.h +++ b/be/src/http/http_method.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_parser.cpp b/be/src/http/http_parser.cpp index 433aa3c6f15c7f..e8d17cac015170 100644 --- a/be/src/http/http_parser.cpp +++ b/be/src/http/http_parser.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_parser.h b/be/src/http/http_parser.h index c000f77c405e51..ca9bc635f5eb05 100644 --- a/be/src/http/http_parser.h +++ b/be/src/http/http_parser.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_request.cpp b/be/src/http/http_request.cpp index bbbb9e1cec31d6..d319b7a94ca247 100644 --- a/be/src/http/http_request.cpp +++ b/be/src/http/http_request.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_request.h b/be/src/http/http_request.h index ebc2d1ac3e0a29..e412482988cf17 100644 --- a/be/src/http/http_request.h +++ b/be/src/http/http_request.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_response.cpp b/be/src/http/http_response.cpp index f4ae5181dbca99..86125086ccd25c 100644 --- a/be/src/http/http_response.cpp +++ b/be/src/http/http_response.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_response.h b/be/src/http/http_response.h index afd1ac5df2bee7..bd7fc397ce5640 100644 --- a/be/src/http/http_response.h +++ b/be/src/http/http_response.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_status.cpp b/be/src/http/http_status.cpp index 6403151d67c6f9..98d198d08ba4c8 100644 --- a/be/src/http/http_status.cpp +++ b/be/src/http/http_status.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/http_status.h b/be/src/http/http_status.h index 44779a2d65acfc..e76180c35c9d7e 100644 --- a/be/src/http/http_status.h +++ b/be/src/http/http_status.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/mongoose.h b/be/src/http/mongoose.h index 708cf7359b05a2..42abdcb00b8258 100644 --- a/be/src/http/mongoose.h +++ b/be/src/http/mongoose.h @@ -1,22 +1,17 @@ -// Copyright (c) 2004-2012 Sergey Lyubka -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. +// http://www.apache.org/licenses/LICENSE-2.0 // -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// 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. #ifndef MONGOOSE_HEADER_INCLUDED #define MONGOOSE_HEADER_INCLUDED diff --git a/be/src/http/monitor_action.cpp b/be/src/http/monitor_action.cpp index 4564ee3e6c8fd9..760ffecbffe724 100644 --- a/be/src/http/monitor_action.cpp +++ b/be/src/http/monitor_action.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/monitor_action.h b/be/src/http/monitor_action.h index dec42506d0bca0..3135d63b54d4d0 100644 --- a/be/src/http/monitor_action.h +++ b/be/src/http/monitor_action.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/rest_monitor_iface.h b/be/src/http/rest_monitor_iface.h index abfb101d4046a8..7fe92226e4c598 100644 --- a/be/src/http/rest_monitor_iface.h +++ b/be/src/http/rest_monitor_iface.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/web_page_handler.cpp b/be/src/http/web_page_handler.cpp index a3a91f1443e378..c9052eef849755 100644 --- a/be/src/http/web_page_handler.cpp +++ b/be/src/http/web_page_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/web_page_handler.h b/be/src/http/web_page_handler.h index 13a7b8f6ee5b15..9d1b9d3052e0bd 100644 --- a/be/src/http/web_page_handler.h +++ b/be/src/http/web_page_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/webserver.cpp b/be/src/http/webserver.cpp index 4b8c36f705dae1..b5618c711ad637 100644 --- a/be/src/http/webserver.cpp +++ b/be/src/http/webserver.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/http/webserver.h b/be/src/http/webserver.h index 516ee1f9820a35..bc96bdcf1a7d52 100644 --- a/be/src/http/webserver.h +++ b/be/src/http/webserver.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/CMakeLists.txt b/be/src/olap/CMakeLists.txt index e7201a922dd2fb..a7329fb57a0a17 100644 --- a/be/src/olap/CMakeLists.txt +++ b/be/src/olap/CMakeLists.txt @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/be/src/olap/atomic.h b/be/src/olap/atomic.h index 2e8208ef1c9fc8..3dc7fc318c0704 100644 --- a/be/src/olap/atomic.h +++ b/be/src/olap/atomic.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/base_expansion_handler.cpp b/be/src/olap/base_expansion_handler.cpp index 50c499febd1601..321a1cd6e50b7f 100644 --- a/be/src/olap/base_expansion_handler.cpp +++ b/be/src/olap/base_expansion_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/base_expansion_handler.h b/be/src/olap/base_expansion_handler.h index 08384b59166e27..cf14a3c2aea7c3 100644 --- a/be/src/olap/base_expansion_handler.h +++ b/be/src/olap/base_expansion_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/bhp_lib.h b/be/src/olap/bhp_lib.h index 9cb8f9547052a7..1e1c9f168b0963 100644 --- a/be/src/olap/bhp_lib.h +++ b/be/src/olap/bhp_lib.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bit_field_reader.cpp b/be/src/olap/column_file/bit_field_reader.cpp index 2a7ccb65761535..9bcce3e6c14237 100644 --- a/be/src/olap/column_file/bit_field_reader.cpp +++ b/be/src/olap/column_file/bit_field_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bit_field_reader.h b/be/src/olap/column_file/bit_field_reader.h index c1e47041935dd4..a6dbf3323bfd26 100644 --- a/be/src/olap/column_file/bit_field_reader.h +++ b/be/src/olap/column_file/bit_field_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bit_field_writer.cpp b/be/src/olap/column_file/bit_field_writer.cpp index ca6b7662208936..b5dac6d5434e07 100644 --- a/be/src/olap/column_file/bit_field_writer.cpp +++ b/be/src/olap/column_file/bit_field_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bit_field_writer.h b/be/src/olap/column_file/bit_field_writer.h index b485b31855295f..e38fb8d6b0583d 100644 --- a/be/src/olap/column_file/bit_field_writer.h +++ b/be/src/olap/column_file/bit_field_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bloom_filter.hpp b/be/src/olap/column_file/bloom_filter.hpp index 38da78af98b8a6..cc1971ae835d0e 100644 --- a/be/src/olap/column_file/bloom_filter.hpp +++ b/be/src/olap/column_file/bloom_filter.hpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bloom_filter_reader.cpp b/be/src/olap/column_file/bloom_filter_reader.cpp index 672fec156dad6d..89eee9093a02c7 100644 --- a/be/src/olap/column_file/bloom_filter_reader.cpp +++ b/be/src/olap/column_file/bloom_filter_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bloom_filter_reader.h b/be/src/olap/column_file/bloom_filter_reader.h index c6d8ed24f9d48f..044aa4d7d1f5f0 100644 --- a/be/src/olap/column_file/bloom_filter_reader.h +++ b/be/src/olap/column_file/bloom_filter_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bloom_filter_writer.cpp b/be/src/olap/column_file/bloom_filter_writer.cpp index 03050a3775ed34..3f0447374bebb2 100644 --- a/be/src/olap/column_file/bloom_filter_writer.cpp +++ b/be/src/olap/column_file/bloom_filter_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/bloom_filter_writer.h b/be/src/olap/column_file/bloom_filter_writer.h index 30cba807d8004c..0c70dc083d80fe 100644 --- a/be/src/olap/column_file/bloom_filter_writer.h +++ b/be/src/olap/column_file/bloom_filter_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/byte_buffer.cpp b/be/src/olap/column_file/byte_buffer.cpp index b511031abd410a..4404bb9807120b 100644 --- a/be/src/olap/column_file/byte_buffer.cpp +++ b/be/src/olap/column_file/byte_buffer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/byte_buffer.h b/be/src/olap/column_file/byte_buffer.h index e87b1b0b9b67d1..c2abb8c4b31de1 100644 --- a/be/src/olap/column_file/byte_buffer.h +++ b/be/src/olap/column_file/byte_buffer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_data.cpp b/be/src/olap/column_file/column_data.cpp index 578ce8d523dd2f..185b1adb61fd08 100644 --- a/be/src/olap/column_file/column_data.cpp +++ b/be/src/olap/column_file/column_data.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_data.h b/be/src/olap/column_file/column_data.h index 35f88ff1a1abe4..96892188700fbe 100644 --- a/be/src/olap/column_file/column_data.h +++ b/be/src/olap/column_file/column_data.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_reader.cpp b/be/src/olap/column_file/column_reader.cpp index 4bc59bc0995a75..f25e502375019b 100644 --- a/be/src/olap/column_file/column_reader.cpp +++ b/be/src/olap/column_file/column_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_reader.h b/be/src/olap/column_file/column_reader.h index 62a0a6ac58a101..17144ea2e268e3 100644 --- a/be/src/olap/column_file/column_reader.h +++ b/be/src/olap/column_file/column_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_writer.cpp b/be/src/olap/column_file/column_writer.cpp index 1053383bb5e43b..3fb8c54909f977 100755 --- a/be/src/olap/column_file/column_writer.cpp +++ b/be/src/olap/column_file/column_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/column_writer.h b/be/src/olap/column_file/column_writer.h index c22d143234e900..7e8ece7416ccac 100644 --- a/be/src/olap/column_file/column_writer.h +++ b/be/src/olap/column_file/column_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/compress.cpp b/be/src/olap/column_file/compress.cpp index c3e225ce5ce246..01c97dc5bab15f 100644 --- a/be/src/olap/column_file/compress.cpp +++ b/be/src/olap/column_file/compress.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/compress.h b/be/src/olap/column_file/compress.h index 1a2403e0ebde20..76e108fa13812d 100644 --- a/be/src/olap/column_file/compress.h +++ b/be/src/olap/column_file/compress.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/data_writer.cpp b/be/src/olap/column_file/data_writer.cpp index df8a4d848fdc9e..4d7e87dc7c2e95 100644 --- a/be/src/olap/column_file/data_writer.cpp +++ b/be/src/olap/column_file/data_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/data_writer.h b/be/src/olap/column_file/data_writer.h index baf8518b806ae0..9bb074f43833fe 100644 --- a/be/src/olap/column_file/data_writer.h +++ b/be/src/olap/column_file/data_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/file_stream.cpp b/be/src/olap/column_file/file_stream.cpp index 6a0a0d0a1fc858..00063b46a85b0a 100755 --- a/be/src/olap/column_file/file_stream.cpp +++ b/be/src/olap/column_file/file_stream.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/file_stream.h b/be/src/olap/column_file/file_stream.h index 7e96275ddcc50f..4875f0e53db2f5 100755 --- a/be/src/olap/column_file/file_stream.h +++ b/be/src/olap/column_file/file_stream.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/in_stream.cpp b/be/src/olap/column_file/in_stream.cpp index 92b335f4da9d3d..b339b606ca6581 100644 --- a/be/src/olap/column_file/in_stream.cpp +++ b/be/src/olap/column_file/in_stream.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/in_stream.h b/be/src/olap/column_file/in_stream.h index 4e9a9d02db88db..94b44b54965dcd 100644 --- a/be/src/olap/column_file/in_stream.h +++ b/be/src/olap/column_file/in_stream.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/out_stream.cpp b/be/src/olap/column_file/out_stream.cpp index 748993bb775c38..972746f2cf630b 100644 --- a/be/src/olap/column_file/out_stream.cpp +++ b/be/src/olap/column_file/out_stream.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/out_stream.h b/be/src/olap/column_file/out_stream.h index f09ff8403de14d..effa26b8940f2e 100644 --- a/be/src/olap/column_file/out_stream.h +++ b/be/src/olap/column_file/out_stream.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_byte_reader.cpp b/be/src/olap/column_file/run_length_byte_reader.cpp index 941572e749335e..d1cc53019f4b15 100644 --- a/be/src/olap/column_file/run_length_byte_reader.cpp +++ b/be/src/olap/column_file/run_length_byte_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_byte_reader.h b/be/src/olap/column_file/run_length_byte_reader.h index 5821338ff44254..7918adacb72270 100644 --- a/be/src/olap/column_file/run_length_byte_reader.h +++ b/be/src/olap/column_file/run_length_byte_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_byte_writer.cpp b/be/src/olap/column_file/run_length_byte_writer.cpp index 57b4c42d08af2c..df123804be27d8 100644 --- a/be/src/olap/column_file/run_length_byte_writer.cpp +++ b/be/src/olap/column_file/run_length_byte_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_byte_writer.h b/be/src/olap/column_file/run_length_byte_writer.h index 390d59b190b6d9..a139e69f797d65 100644 --- a/be/src/olap/column_file/run_length_byte_writer.h +++ b/be/src/olap/column_file/run_length_byte_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_integer_reader.cpp b/be/src/olap/column_file/run_length_integer_reader.cpp index c5e3064419ea2e..2f58ad1d4a9113 100644 --- a/be/src/olap/column_file/run_length_integer_reader.cpp +++ b/be/src/olap/column_file/run_length_integer_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_integer_reader.h b/be/src/olap/column_file/run_length_integer_reader.h index df4e3ee381f2ef..461160517b72c6 100644 --- a/be/src/olap/column_file/run_length_integer_reader.h +++ b/be/src/olap/column_file/run_length_integer_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_integer_writer.cpp b/be/src/olap/column_file/run_length_integer_writer.cpp index 61691f2148bf69..f890dec2dab9f3 100644 --- a/be/src/olap/column_file/run_length_integer_writer.cpp +++ b/be/src/olap/column_file/run_length_integer_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/run_length_integer_writer.h b/be/src/olap/column_file/run_length_integer_writer.h index 93541415bba6bf..9c5dfd3135dbb7 100644 --- a/be/src/olap/column_file/run_length_integer_writer.h +++ b/be/src/olap/column_file/run_length_integer_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/segment_reader.cpp b/be/src/olap/column_file/segment_reader.cpp index aaf05acb4a1ef6..f4b493f42895a1 100644 --- a/be/src/olap/column_file/segment_reader.cpp +++ b/be/src/olap/column_file/segment_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/segment_reader.h b/be/src/olap/column_file/segment_reader.h index 4d0ca8758fbdd3..b3738fe06645e5 100644 --- a/be/src/olap/column_file/segment_reader.h +++ b/be/src/olap/column_file/segment_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/segment_writer.cpp b/be/src/olap/column_file/segment_writer.cpp index 8b7bd30c73ce34..c5d14eac90edc6 100644 --- a/be/src/olap/column_file/segment_writer.cpp +++ b/be/src/olap/column_file/segment_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/segment_writer.h b/be/src/olap/column_file/segment_writer.h index 244067d7e09201..e1e9c0d5a082c0 100644 --- a/be/src/olap/column_file/segment_writer.h +++ b/be/src/olap/column_file/segment_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/serialize.cpp b/be/src/olap/column_file/serialize.cpp index 06e3e96cbe693e..c9842f6e3ecc6c 100644 --- a/be/src/olap/column_file/serialize.cpp +++ b/be/src/olap/column_file/serialize.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/serialize.h b/be/src/olap/column_file/serialize.h index 42e6463a2662b3..a6c469710e2dfa 100644 --- a/be/src/olap/column_file/serialize.h +++ b/be/src/olap/column_file/serialize.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_common.cpp b/be/src/olap/column_file/stream_index_common.cpp index cccc4a56cef227..302877780fcfae 100755 --- a/be/src/olap/column_file/stream_index_common.cpp +++ b/be/src/olap/column_file/stream_index_common.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_common.h b/be/src/olap/column_file/stream_index_common.h index dab908aef4a11e..19a08a387fbf94 100755 --- a/be/src/olap/column_file/stream_index_common.h +++ b/be/src/olap/column_file/stream_index_common.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_reader.cpp b/be/src/olap/column_file/stream_index_reader.cpp index 1edb328851d3cf..1ed2245d64c8fe 100755 --- a/be/src/olap/column_file/stream_index_reader.cpp +++ b/be/src/olap/column_file/stream_index_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_reader.h b/be/src/olap/column_file/stream_index_reader.h index 7c4d3da1ef4184..893c645833a1a2 100755 --- a/be/src/olap/column_file/stream_index_reader.h +++ b/be/src/olap/column_file/stream_index_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_writer.cpp b/be/src/olap/column_file/stream_index_writer.cpp index 78d1c1c8187748..e410921993fef8 100755 --- a/be/src/olap/column_file/stream_index_writer.cpp +++ b/be/src/olap/column_file/stream_index_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_index_writer.h b/be/src/olap/column_file/stream_index_writer.h index 5cc5d065b69730..8f536ad468b231 100755 --- a/be/src/olap/column_file/stream_index_writer.h +++ b/be/src/olap/column_file/stream_index_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_name.cpp b/be/src/olap/column_file/stream_name.cpp index 63a5254f1490bc..664bf31957e3dc 100755 --- a/be/src/olap/column_file/stream_name.cpp +++ b/be/src/olap/column_file/stream_name.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/column_file/stream_name.h b/be/src/olap/column_file/stream_name.h index 3ce8439bed44d0..af2b5d017548f9 100755 --- a/be/src/olap/column_file/stream_name.h +++ b/be/src/olap/column_file/stream_name.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/command_executor.cpp b/be/src/olap/command_executor.cpp index dfc388ca485d70..98f3c951fff2c6 100755 --- a/be/src/olap/command_executor.cpp +++ b/be/src/olap/command_executor.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/command_executor.h b/be/src/olap/command_executor.h index 64d6cac73f10c8..87b9a242fb6e7d 100644 --- a/be/src/olap/command_executor.h +++ b/be/src/olap/command_executor.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/cumulative_handler.cpp b/be/src/olap/cumulative_handler.cpp index 684176d7586959..c553af31e84bb1 100755 --- a/be/src/olap/cumulative_handler.cpp +++ b/be/src/olap/cumulative_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/cumulative_handler.h b/be/src/olap/cumulative_handler.h index ae89d5c8f8a25d..4e2edb9e00eddf 100755 --- a/be/src/olap/cumulative_handler.h +++ b/be/src/olap/cumulative_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/delete_handler.cpp b/be/src/olap/delete_handler.cpp index 828461e197e951..d66e7ec7cf775a 100644 --- a/be/src/olap/delete_handler.cpp +++ b/be/src/olap/delete_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/delete_handler.h b/be/src/olap/delete_handler.h index 3636e60dc47104..d1cdd7e3a9baff 100644 --- a/be/src/olap/delete_handler.h +++ b/be/src/olap/delete_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/field.cpp b/be/src/olap/field.cpp index 57946ebbf6bf38..a57d67f67ed76b 100644 --- a/be/src/olap/field.cpp +++ b/be/src/olap/field.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/field.h b/be/src/olap/field.h index a38ded3e2275d3..72ccf0917596c2 100644 --- a/be/src/olap/field.h +++ b/be/src/olap/field.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/file_helper.cpp b/be/src/olap/file_helper.cpp index 43c7b051c2dcf8..79fcac40ddaa46 100644 --- a/be/src/olap/file_helper.cpp +++ b/be/src/olap/file_helper.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/file_helper.h b/be/src/olap/file_helper.h index 05bf06ba00e3d4..cfe17f45dc6b9c 100644 --- a/be/src/olap/file_helper.h +++ b/be/src/olap/file_helper.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/i_data.cpp b/be/src/olap/i_data.cpp index 4f0d7c93ee2ee1..be11be09437dce 100644 --- a/be/src/olap/i_data.cpp +++ b/be/src/olap/i_data.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/i_data.h b/be/src/olap/i_data.h index 1f89e3a32284c0..04f844b10c99b6 100644 --- a/be/src/olap/i_data.h +++ b/be/src/olap/i_data.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/lru_cache.cpp b/be/src/olap/lru_cache.cpp index 23c748a1c88df7..c0e79b7e4d6587 100644 --- a/be/src/olap/lru_cache.cpp +++ b/be/src/olap/lru_cache.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/lru_cache.h b/be/src/olap/lru_cache.h index d3079a03cba667..df73193307068d 100644 --- a/be/src/olap/lru_cache.h +++ b/be/src/olap/lru_cache.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/merger.cpp b/be/src/olap/merger.cpp index 19183e4e221e35..6efd8ba6e3ebf2 100644 --- a/be/src/olap/merger.cpp +++ b/be/src/olap/merger.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/merger.h b/be/src/olap/merger.h index 5de199ff964bc6..786ae6ef36feb4 100644 --- a/be/src/olap/merger.h +++ b/be/src/olap/merger.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_common.h b/be/src/olap/olap_common.h index f8ac03e10f0497..b061a4cf39ffaf 100644 --- a/be/src/olap/olap_common.h +++ b/be/src/olap/olap_common.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_cond.cpp b/be/src/olap/olap_cond.cpp index 86ebbd469568bd..e27ce80ffb5869 100644 --- a/be/src/olap/olap_cond.cpp +++ b/be/src/olap/olap_cond.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_cond.h b/be/src/olap/olap_cond.h index bf6609a98b326b..74d8afea9535ba 100644 --- a/be/src/olap/olap_cond.h +++ b/be/src/olap/olap_cond.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_data.cpp b/be/src/olap/olap_data.cpp index dda4dd65d9c564..e0b770a03dc6e4 100644 --- a/be/src/olap/olap_data.cpp +++ b/be/src/olap/olap_data.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_data.h b/be/src/olap/olap_data.h index 24c7bde5197c35..9ad732cf951a5b 100644 --- a/be/src/olap/olap_data.h +++ b/be/src/olap/olap_data.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_define.h b/be/src/olap/olap_define.h index 05d63d3001157e..85543aa7e3157e 100644 --- a/be/src/olap/olap_define.h +++ b/be/src/olap/olap_define.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_engine.cpp b/be/src/olap/olap_engine.cpp index 43a267ba292e95..8f244d75d2e8ea 100644 --- a/be/src/olap/olap_engine.cpp +++ b/be/src/olap/olap_engine.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_engine.h b/be/src/olap/olap_engine.h index bcff88e9a06156..7b4a01fa275a4f 100644 --- a/be/src/olap/olap_engine.h +++ b/be/src/olap/olap_engine.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_header.cpp b/be/src/olap/olap_header.cpp index 07b6c7f5629abd..18ebcc5d63fd3f 100644 --- a/be/src/olap/olap_header.cpp +++ b/be/src/olap/olap_header.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_header.h b/be/src/olap/olap_header.h index e5f8f5399832fa..2a99cbc02a5994 100644 --- a/be/src/olap/olap_header.h +++ b/be/src/olap/olap_header.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_index.cpp b/be/src/olap/olap_index.cpp index 396647e3787cf8..79fbfcd13d4660 100644 --- a/be/src/olap/olap_index.cpp +++ b/be/src/olap/olap_index.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_index.h b/be/src/olap/olap_index.h index ef263522a9f2f3..a8ff2b92acbdf4 100644 --- a/be/src/olap/olap_index.h +++ b/be/src/olap/olap_index.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_main.cpp b/be/src/olap/olap_main.cpp index 5382a79c9aff30..bc6bc1371d21c1 100755 --- a/be/src/olap/olap_main.cpp +++ b/be/src/olap/olap_main.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_main.h b/be/src/olap/olap_main.h index 8da1597ca61fa7..0f9618d0d0ad48 100755 --- a/be/src/olap/olap_main.h +++ b/be/src/olap/olap_main.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_reader.cpp b/be/src/olap/olap_reader.cpp index 756cc42d7fcf4a..c7db569ac6be69 100644 --- a/be/src/olap/olap_reader.cpp +++ b/be/src/olap/olap_reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_reader.h b/be/src/olap/olap_reader.h index 8dce05b2bb659e..0c773219e3253e 100644 --- a/be/src/olap/olap_reader.h +++ b/be/src/olap/olap_reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_rootpath.cpp b/be/src/olap/olap_rootpath.cpp index ef819b61cf1c1d..ba18e3acb3a204 100644 --- a/be/src/olap/olap_rootpath.cpp +++ b/be/src/olap/olap_rootpath.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_rootpath.h b/be/src/olap/olap_rootpath.h index 3febb56b653b99..a94016deab4d18 100644 --- a/be/src/olap/olap_rootpath.h +++ b/be/src/olap/olap_rootpath.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_server.cpp b/be/src/olap/olap_server.cpp index a09a57933c8d07..a62d58b41c678b 100644 --- a/be/src/olap/olap_server.cpp +++ b/be/src/olap/olap_server.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_server.h b/be/src/olap/olap_server.h index 9ef6bf27dcefba..980c28751b916c 100644 --- a/be/src/olap/olap_server.h +++ b/be/src/olap/olap_server.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_snapshot.cpp b/be/src/olap/olap_snapshot.cpp index 84c38db92716fa..08a6769719b097 100644 --- a/be/src/olap/olap_snapshot.cpp +++ b/be/src/olap/olap_snapshot.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_snapshot.h b/be/src/olap/olap_snapshot.h index be55ce2d6db732..6c959f2a98707d 100644 --- a/be/src/olap/olap_snapshot.h +++ b/be/src/olap/olap_snapshot.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_table.cpp b/be/src/olap/olap_table.cpp index 4db6daff49a4b9..5aeb484a222336 100644 --- a/be/src/olap/olap_table.cpp +++ b/be/src/olap/olap_table.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/olap_table.h b/be/src/olap/olap_table.h index 46364370c2cf12..7e3bf244b80043 100644 --- a/be/src/olap/olap_table.h +++ b/be/src/olap/olap_table.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/push_handler.cpp b/be/src/olap/push_handler.cpp index e53d0e291fb132..d35165cab48833 100644 --- a/be/src/olap/push_handler.cpp +++ b/be/src/olap/push_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/push_handler.h b/be/src/olap/push_handler.h index e4684ec831e240..02b8f0c68734d5 100644 --- a/be/src/olap/push_handler.h +++ b/be/src/olap/push_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/reader.cpp b/be/src/olap/reader.cpp index 7fe042a119b2e7..499328a68e0632 100644 --- a/be/src/olap/reader.cpp +++ b/be/src/olap/reader.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/reader.h b/be/src/olap/reader.h index d6dcdb4ff80ca5..1f184cefc9d53e 100644 --- a/be/src/olap/reader.h +++ b/be/src/olap/reader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/row_block.cpp b/be/src/olap/row_block.cpp index cf31fa277b5461..f21f82c3c03aee 100644 --- a/be/src/olap/row_block.cpp +++ b/be/src/olap/row_block.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/row_block.h b/be/src/olap/row_block.h index a67694f56b402c..69f1fbeb455a6a 100644 --- a/be/src/olap/row_block.h +++ b/be/src/olap/row_block.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/row_cursor.cpp b/be/src/olap/row_cursor.cpp index 2354b81cadba37..df7b10a801e436 100644 --- a/be/src/olap/row_cursor.cpp +++ b/be/src/olap/row_cursor.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/row_cursor.h b/be/src/olap/row_cursor.h index 22739d237f8ee3..8abf31d9823bd0 100644 --- a/be/src/olap/row_cursor.h +++ b/be/src/olap/row_cursor.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/schema_change.cpp b/be/src/olap/schema_change.cpp index bc603c7886a990..9024e5f0b9df72 100644 --- a/be/src/olap/schema_change.cpp +++ b/be/src/olap/schema_change.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/schema_change.h b/be/src/olap/schema_change.h index 1ea75bbc6a93d4..7d123820fe4dd7 100644 --- a/be/src/olap/schema_change.h +++ b/be/src/olap/schema_change.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/utils.cpp b/be/src/olap/utils.cpp index e89335e7bb29cd..3c472cbf826de2 100644 --- a/be/src/olap/utils.cpp +++ b/be/src/olap/utils.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/utils.h b/be/src/olap/utils.h index e2ffb49fc2dc52..839c1c439f23a4 100644 --- a/be/src/olap/utils.h +++ b/be/src/olap/utils.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/writer.cpp b/be/src/olap/writer.cpp index e9a43e7f68c777..b57ea64441710c 100644 --- a/be/src/olap/writer.cpp +++ b/be/src/olap/writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/olap/writer.h b/be/src/olap/writer.h index 86245fad7b20d8..1f8f5d60ac21b5 100644 --- a/be/src/olap/writer.h +++ b/be/src/olap/writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/CMakeLists.txt b/be/src/rpc/CMakeLists.txt index 98e9d223e2850d..00988928daceeb 100644 --- a/be/src/rpc/CMakeLists.txt +++ b/be/src/rpc/CMakeLists.txt @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/be/src/rpc/application_handler.h b/be/src/rpc/application_handler.h index 6dd100f502be40..b2884850fc3bf0 100644 --- a/be/src/rpc/application_handler.h +++ b/be/src/rpc/application_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/application_queue.h b/be/src/rpc/application_queue.h index 04ca30004319c3..df4b6f14df2c1b 100644 --- a/be/src/rpc/application_queue.h +++ b/be/src/rpc/application_queue.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/application_queue_interface.h b/be/src/rpc/application_queue_interface.h index 42b46f471e1cb1..6f9bcded8f0a4b 100644 --- a/be/src/rpc/application_queue_interface.h +++ b/be/src/rpc/application_queue_interface.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/byte_string.h b/be/src/rpc/byte_string.h index 2133b54296dbe9..8144ab6b7bd42a 100644 --- a/be/src/rpc/byte_string.h +++ b/be/src/rpc/byte_string.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/checksum.cpp b/be/src/rpc/checksum.cpp index b3715829924c50..8bf662d5e2cc02 100644 --- a/be/src/rpc/checksum.cpp +++ b/be/src/rpc/checksum.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/checksum.h b/be/src/rpc/checksum.h index 2a5551fe487de9..b6ead033228d36 100644 --- a/be/src/rpc/checksum.h +++ b/be/src/rpc/checksum.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/clock.h b/be/src/rpc/clock.h index aadc8b5c60442e..3639e42a2153ff 100644 --- a/be/src/rpc/clock.h +++ b/be/src/rpc/clock.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm.cpp b/be/src/rpc/comm.cpp index 22bf45f0cf9c57..645bb55578990e 100644 --- a/be/src/rpc/comm.cpp +++ b/be/src/rpc/comm.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm.h b/be/src/rpc/comm.h index 666596641d3aa7..0d2066a9845f47 100644 --- a/be/src/rpc/comm.h +++ b/be/src/rpc/comm.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm_address.cpp b/be/src/rpc/comm_address.cpp index 9eb3fcc9e8ac33..4b7ef1ed4e78e7 100644 --- a/be/src/rpc/comm_address.cpp +++ b/be/src/rpc/comm_address.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm_address.h b/be/src/rpc/comm_address.h index 2e4f7291d81e2d..969fcc9df8254e 100644 --- a/be/src/rpc/comm_address.h +++ b/be/src/rpc/comm_address.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm_buf.h b/be/src/rpc/comm_buf.h index b21cb1a4e4963a..ecd78a556bb2d0 100644 --- a/be/src/rpc/comm_buf.h +++ b/be/src/rpc/comm_buf.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm_header.cpp b/be/src/rpc/comm_header.cpp index 0a4e82d9e488ea..ec588535bcb6d0 100644 --- a/be/src/rpc/comm_header.cpp +++ b/be/src/rpc/comm_header.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/comm_header.h b/be/src/rpc/comm_header.h index e669bd791df5ca..4b359843e6d66d 100644 --- a/be/src/rpc/comm_header.h +++ b/be/src/rpc/comm_header.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/compat.h b/be/src/rpc/compat.h index 267939dfe9bb2e..c1bf97ec021a28 100644 --- a/be/src/rpc/compat.h +++ b/be/src/rpc/compat.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/compat_c.h b/be/src/rpc/compat_c.h index a7876b5f9113df..f8c7b3fac3d5ba 100644 --- a/be/src/rpc/compat_c.h +++ b/be/src/rpc/compat_c.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/connection_handler_factory.h b/be/src/rpc/connection_handler_factory.h index 3efa188707fa05..7356621d6735d6 100644 --- a/be/src/rpc/connection_handler_factory.h +++ b/be/src/rpc/connection_handler_factory.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/connection_initializer.h b/be/src/rpc/connection_initializer.h index 6b4c9ff494dd80..2bd84561351131 100644 --- a/be/src/rpc/connection_initializer.h +++ b/be/src/rpc/connection_initializer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/connection_manager.cpp b/be/src/rpc/connection_manager.cpp index 6f5e4f7905195a..d48a7522ee904e 100644 --- a/be/src/rpc/connection_manager.cpp +++ b/be/src/rpc/connection_manager.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/connection_manager.h b/be/src/rpc/connection_manager.h index daa2e1cf4e7caf..cae973d73a7b84 100644 --- a/be/src/rpc/connection_manager.h +++ b/be/src/rpc/connection_manager.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/dispatch_handler.h b/be/src/rpc/dispatch_handler.h index b9147d37a3fe46..501c56e64569d6 100644 --- a/be/src/rpc/dispatch_handler.h +++ b/be/src/rpc/dispatch_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/dispatch_handler_synchronizer.cpp b/be/src/rpc/dispatch_handler_synchronizer.cpp index 06b6d5cfceb6b9..0e4012b8dc6adf 100644 --- a/be/src/rpc/dispatch_handler_synchronizer.cpp +++ b/be/src/rpc/dispatch_handler_synchronizer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/dispatch_handler_synchronizer.h b/be/src/rpc/dispatch_handler_synchronizer.h index 6b463d7ecb8ca2..5211f2c9f7a3b5 100644 --- a/be/src/rpc/dispatch_handler_synchronizer.h +++ b/be/src/rpc/dispatch_handler_synchronizer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/dynamic_buffer.h b/be/src/rpc/dynamic_buffer.h index 87ee4dbe5abfe4..d96c7a4420ce0a 100644 --- a/be/src/rpc/dynamic_buffer.h +++ b/be/src/rpc/dynamic_buffer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/endian_c.h b/be/src/rpc/endian_c.h index d331aae24f13de..5ab85dc5fd8206 100644 --- a/be/src/rpc/endian_c.h +++ b/be/src/rpc/endian_c.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/error.cpp b/be/src/rpc/error.cpp index 87cf3b569763c9..f5ed421119e862 100644 --- a/be/src/rpc/error.cpp +++ b/be/src/rpc/error.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/error.h b/be/src/rpc/error.h index a0dc92fbbe5d27..878d6e80b95f41 100644 --- a/be/src/rpc/error.h +++ b/be/src/rpc/error.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/event.cpp b/be/src/rpc/event.cpp index 15ffe650bf9a97..6102259e2c21a8 100644 --- a/be/src/rpc/event.cpp +++ b/be/src/rpc/event.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/event.h b/be/src/rpc/event.h index ddb635cc7f95c7..ca99c0d4e3356d 100644 --- a/be/src/rpc/event.h +++ b/be/src/rpc/event.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/expire_timer.h b/be/src/rpc/expire_timer.h index 13e9629db7974b..1508a43d48e277 100644 --- a/be/src/rpc/expire_timer.h +++ b/be/src/rpc/expire_timer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/fast_clock.cpp b/be/src/rpc/fast_clock.cpp index f41df689ce3927..d6362837692883 100644 --- a/be/src/rpc/fast_clock.cpp +++ b/be/src/rpc/fast_clock.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/fast_clock.h b/be/src/rpc/fast_clock.h index cd371d8d5e4ca5..d6af960bffc6eb 100644 --- a/be/src/rpc/fast_clock.h +++ b/be/src/rpc/fast_clock.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/file_utils.cpp b/be/src/rpc/file_utils.cpp index 2023b67f80a6a5..ea0ae7c7355ced 100644 --- a/be/src/rpc/file_utils.cpp +++ b/be/src/rpc/file_utils.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/file_utils.h b/be/src/rpc/file_utils.h index 17e054fb25226e..3d98cc4189eca4 100644 --- a/be/src/rpc/file_utils.h +++ b/be/src/rpc/file_utils.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/handler_map.cpp b/be/src/rpc/handler_map.cpp index f453acdc72e6f9..a87b13a2ddfee7 100644 --- a/be/src/rpc/handler_map.cpp +++ b/be/src/rpc/handler_map.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/handler_map.h b/be/src/rpc/handler_map.h index b83f7be8ecd9ed..d1c9ff98d585a5 100644 --- a/be/src/rpc/handler_map.h +++ b/be/src/rpc/handler_map.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/inet_addr.cpp b/be/src/rpc/inet_addr.cpp index f8a3d777dd71ab..c8604e6911767f 100644 --- a/be/src/rpc/inet_addr.cpp +++ b/be/src/rpc/inet_addr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/inet_addr.h b/be/src/rpc/inet_addr.h index f4429a830ce4b9..5339fdcb99ded8 100644 --- a/be/src/rpc/inet_addr.h +++ b/be/src/rpc/inet_addr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler.cpp b/be/src/rpc/io_handler.cpp index e20638ee23ac41..f825bc464a639f 100644 --- a/be/src/rpc/io_handler.cpp +++ b/be/src/rpc/io_handler.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler.h b/be/src/rpc/io_handler.h index cca50708581e08..99542d98b19a8e 100644 --- a/be/src/rpc/io_handler.h +++ b/be/src/rpc/io_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_accept.cpp b/be/src/rpc/io_handler_accept.cpp index 8ba28a00bc71eb..88c5c0b7f15e64 100644 --- a/be/src/rpc/io_handler_accept.cpp +++ b/be/src/rpc/io_handler_accept.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_accept.h b/be/src/rpc/io_handler_accept.h index 7c8f6fe3d14021..1662dfe2658a08 100644 --- a/be/src/rpc/io_handler_accept.h +++ b/be/src/rpc/io_handler_accept.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_data.cpp b/be/src/rpc/io_handler_data.cpp index 940a511dee8009..e088d256ff11aa 100644 --- a/be/src/rpc/io_handler_data.cpp +++ b/be/src/rpc/io_handler_data.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_data.h b/be/src/rpc/io_handler_data.h index f064afda7c05b0..067c48dac107db 100644 --- a/be/src/rpc/io_handler_data.h +++ b/be/src/rpc/io_handler_data.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_datagram.cpp b/be/src/rpc/io_handler_datagram.cpp index 7fb19d7a3432a5..33faa8f40f412c 100644 --- a/be/src/rpc/io_handler_datagram.cpp +++ b/be/src/rpc/io_handler_datagram.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_datagram.h b/be/src/rpc/io_handler_datagram.h index e4c65deacd343a..dd6f7a968af7f7 100644 --- a/be/src/rpc/io_handler_datagram.h +++ b/be/src/rpc/io_handler_datagram.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_raw.cpp b/be/src/rpc/io_handler_raw.cpp index 365eb21190251f..7cca87524ef10f 100644 --- a/be/src/rpc/io_handler_raw.cpp +++ b/be/src/rpc/io_handler_raw.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/io_handler_raw.h b/be/src/rpc/io_handler_raw.h index 67c8140809ed3a..30ce98dd0a4bfd 100644 --- a/be/src/rpc/io_handler_raw.h +++ b/be/src/rpc/io_handler_raw.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/poll_event.cpp b/be/src/rpc/poll_event.cpp index 8674446091b022..c44cfca0481863 100644 --- a/be/src/rpc/poll_event.cpp +++ b/be/src/rpc/poll_event.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/poll_event.h b/be/src/rpc/poll_event.h index 51fec135b1d57f..b728ad9995e3b3 100644 --- a/be/src/rpc/poll_event.h +++ b/be/src/rpc/poll_event.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/poll_timeout.h b/be/src/rpc/poll_timeout.h index 7af4fb4cda0335..149eaff7909ad7 100644 --- a/be/src/rpc/poll_timeout.h +++ b/be/src/rpc/poll_timeout.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/protocol.cpp b/be/src/rpc/protocol.cpp index f96bdf15534b69..1b533c5f85efdb 100644 --- a/be/src/rpc/protocol.cpp +++ b/be/src/rpc/protocol.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/protocol.h b/be/src/rpc/protocol.h index 537850513787fb..9aa1d455176d19 100644 --- a/be/src/rpc/protocol.h +++ b/be/src/rpc/protocol.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/proxy_map.cpp b/be/src/rpc/proxy_map.cpp index 1634f3217f5eb6..495dca8ea95604 100644 --- a/be/src/rpc/proxy_map.cpp +++ b/be/src/rpc/proxy_map.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/proxy_map.h b/be/src/rpc/proxy_map.h index dd4ff15da4a60f..51bf417b8b7ec6 100644 --- a/be/src/rpc/proxy_map.h +++ b/be/src/rpc/proxy_map.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/random.cpp b/be/src/rpc/random.cpp index 273121438ae1db..f208cd74c9672a 100644 --- a/be/src/rpc/random.cpp +++ b/be/src/rpc/random.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/random.h b/be/src/rpc/random.h index b83bd235b9bbca..6b40425fdf006a 100644 --- a/be/src/rpc/random.h +++ b/be/src/rpc/random.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/raw_socket_handler.h b/be/src/rpc/raw_socket_handler.h index f4db454eb965b3..f753370bed59cd 100644 --- a/be/src/rpc/raw_socket_handler.h +++ b/be/src/rpc/raw_socket_handler.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor.cpp b/be/src/rpc/reactor.cpp index 940a76313d6efd..5ffc6f8455c5e3 100644 --- a/be/src/rpc/reactor.cpp +++ b/be/src/rpc/reactor.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor.h b/be/src/rpc/reactor.h index 4e0fb617c377e7..9ee567665f922f 100644 --- a/be/src/rpc/reactor.h +++ b/be/src/rpc/reactor.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor_factory.cpp b/be/src/rpc/reactor_factory.cpp index 728471fe8af05a..d3dde46aa7a9eb 100644 --- a/be/src/rpc/reactor_factory.cpp +++ b/be/src/rpc/reactor_factory.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor_factory.h b/be/src/rpc/reactor_factory.h index 511795212b56e8..4b5e32cf98a624 100644 --- a/be/src/rpc/reactor_factory.h +++ b/be/src/rpc/reactor_factory.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor_runner.cpp b/be/src/rpc/reactor_runner.cpp index c0a64279945f55..aed564b411eaff 100644 --- a/be/src/rpc/reactor_runner.cpp +++ b/be/src/rpc/reactor_runner.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/reactor_runner.h b/be/src/rpc/reactor_runner.h index 421fb2b878ac26..06f64207d2025f 100644 --- a/be/src/rpc/reactor_runner.h +++ b/be/src/rpc/reactor_runner.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/request_cache.cpp b/be/src/rpc/request_cache.cpp index b31c0888a8f25f..38e5e1613a0f4a 100644 --- a/be/src/rpc/request_cache.cpp +++ b/be/src/rpc/request_cache.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/request_cache.h b/be/src/rpc/request_cache.h index 9e84d734ceeb78..1a47ebe7095e5e 100644 --- a/be/src/rpc/request_cache.h +++ b/be/src/rpc/request_cache.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/response_callback.cpp b/be/src/rpc/response_callback.cpp index 0d1321fac39939..e858e340daf570 100644 --- a/be/src/rpc/response_callback.cpp +++ b/be/src/rpc/response_callback.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/response_callback.h b/be/src/rpc/response_callback.h index b896a2a8eac3a5..be94b2d3f78c97 100644 --- a/be/src/rpc/response_callback.h +++ b/be/src/rpc/response_callback.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/scope_guard.h b/be/src/rpc/scope_guard.h index 441a52bd329c8e..9d6aec9dd23028 100644 --- a/be/src/rpc/scope_guard.h +++ b/be/src/rpc/scope_guard.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/serialization.h b/be/src/rpc/serialization.h index ece557bee3dfe5..eb977a54f09135 100644 --- a/be/src/rpc/serialization.h +++ b/be/src/rpc/serialization.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/serialization_c.h b/be/src/rpc/serialization_c.h index 7fa797fd2983d4..c7c49f44f1533d 100644 --- a/be/src/rpc/serialization_c.h +++ b/be/src/rpc/serialization_c.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/sock_addr_map.h b/be/src/rpc/sock_addr_map.h index b3003d21dc608a..48366b8d845467 100644 --- a/be/src/rpc/sock_addr_map.h +++ b/be/src/rpc/sock_addr_map.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/static_buffer.h b/be/src/rpc/static_buffer.h index 5aaa0df72892a0..cfec10678f5355 100644 --- a/be/src/rpc/static_buffer.h +++ b/be/src/rpc/static_buffer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/string_ext.h b/be/src/rpc/string_ext.h index 8af102850fc479..b511ffb07f6453 100644 --- a/be/src/rpc/string_ext.h +++ b/be/src/rpc/string_ext.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/timer.h b/be/src/rpc/timer.h index c0768ebcccd6a4..c6f00419bfe414 100644 --- a/be/src/rpc/timer.h +++ b/be/src/rpc/timer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/util.cpp b/be/src/rpc/util.cpp index c1a9593f5ff44f..e1d2003e77ebd1 100644 --- a/be/src/rpc/util.cpp +++ b/be/src/rpc/util.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/rpc/util.h b/be/src/rpc/util.h index cc8d31567ef989..430a38fb3c7e89 100644 --- a/be/src/rpc/util.h +++ b/be/src/rpc/util.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/broker_mgr.cpp b/be/src/runtime/broker_mgr.cpp index 63f28af32b13b3..7463331eaec478 100644 --- a/be/src/runtime/broker_mgr.cpp +++ b/be/src/runtime/broker_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/broker_mgr.h b/be/src/runtime/broker_mgr.h index baf6b682201014..d931ed204304bb 100644 --- a/be/src/runtime/broker_mgr.h +++ b/be/src/runtime/broker_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/data_spliter.cpp b/be/src/runtime/data_spliter.cpp index 20f4137446baab..bed04f85d2be28 100644 --- a/be/src/runtime/data_spliter.cpp +++ b/be/src/runtime/data_spliter.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/data_spliter.h b/be/src/runtime/data_spliter.h index b5496c4efd1441..c80232e5eb214b 100644 --- a/be/src/runtime/data_spliter.h +++ b/be/src/runtime/data_spliter.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/datetime_value.cpp b/be/src/runtime/datetime_value.cpp index aef70ce2b55f67..8f695c625c437c 100644 --- a/be/src/runtime/datetime_value.cpp +++ b/be/src/runtime/datetime_value.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/datetime_value.h b/be/src/runtime/datetime_value.h index 41fe2f6e70eff9..13f298b7f7ff4e 100644 --- a/be/src/runtime/datetime_value.h +++ b/be/src/runtime/datetime_value.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/decimal_value.cpp b/be/src/runtime/decimal_value.cpp index 68aee53e88c58e..c724497263a5e8 100755 --- a/be/src/runtime/decimal_value.cpp +++ b/be/src/runtime/decimal_value.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/decimal_value.h b/be/src/runtime/decimal_value.h index d5213190cd48a0..0aef67480a913b 100755 --- a/be/src/runtime/decimal_value.h +++ b/be/src/runtime/decimal_value.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_sink.cpp b/be/src/runtime/dpp_sink.cpp index 6ff778609f9869..55c5f882348a26 100644 --- a/be/src/runtime/dpp_sink.cpp +++ b/be/src/runtime/dpp_sink.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_sink.h b/be/src/runtime/dpp_sink.h index 80c57d2de87acd..8765816455e9de 100644 --- a/be/src/runtime/dpp_sink.h +++ b/be/src/runtime/dpp_sink.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_sink_internal.cpp b/be/src/runtime/dpp_sink_internal.cpp index 94e1cd1585fd99..b0b11a603fc009 100644 --- a/be/src/runtime/dpp_sink_internal.cpp +++ b/be/src/runtime/dpp_sink_internal.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_sink_internal.h b/be/src/runtime/dpp_sink_internal.h index 5d2dc33544ac1e..241feded0d8af7 100644 --- a/be/src/runtime/dpp_sink_internal.h +++ b/be/src/runtime/dpp_sink_internal.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_writer.cpp b/be/src/runtime/dpp_writer.cpp index afdb1daf573d8a..7649ed53b4e129 100644 --- a/be/src/runtime/dpp_writer.cpp +++ b/be/src/runtime/dpp_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/dpp_writer.h b/be/src/runtime/dpp_writer.h index 3d571a33c18d0f..74bf070c88b1bf 100644 --- a/be/src/runtime/dpp_writer.h +++ b/be/src/runtime/dpp_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/etl_job_mgr.cpp b/be/src/runtime/etl_job_mgr.cpp index 9bba89748ff935..4d21188a114055 100644 --- a/be/src/runtime/etl_job_mgr.cpp +++ b/be/src/runtime/etl_job_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/etl_job_mgr.h b/be/src/runtime/etl_job_mgr.h index e3aceec2983041..c0bfaf95310fc6 100644 --- a/be/src/runtime/etl_job_mgr.h +++ b/be/src/runtime/etl_job_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/export_sink.cpp b/be/src/runtime/export_sink.cpp index 2b2f9403c8127e..c60fa3cb03c3af 100644 --- a/be/src/runtime/export_sink.cpp +++ b/be/src/runtime/export_sink.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/export_sink.h b/be/src/runtime/export_sink.h index 8fe8c3a624b0e3..3224ff3f972daa 100644 --- a/be/src/runtime/export_sink.h +++ b/be/src/runtime/export_sink.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/export_task_mgr.cpp b/be/src/runtime/export_task_mgr.cpp index d17ab0648db269..122147697d57f2 100644 --- a/be/src/runtime/export_task_mgr.cpp +++ b/be/src/runtime/export_task_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/export_task_mgr.h b/be/src/runtime/export_task_mgr.h index 3dda6874deee11..ff9e2e7fac257b 100644 --- a/be/src/runtime/export_task_mgr.h +++ b/be/src/runtime/export_task_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/load_path_mgr.cpp b/be/src/runtime/load_path_mgr.cpp index a65dbc9c0d7980..5433b20bb9a384 100644 --- a/be/src/runtime/load_path_mgr.cpp +++ b/be/src/runtime/load_path_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/load_path_mgr.h b/be/src/runtime/load_path_mgr.h index 4480f4ac4ff000..07d5cf430ffcdd 100644 --- a/be/src/runtime/load_path_mgr.h +++ b/be/src/runtime/load_path_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/mysql_table_sink.cpp b/be/src/runtime/mysql_table_sink.cpp index d5a8cb26324a42..ba872129bb67ff 100644 --- a/be/src/runtime/mysql_table_sink.cpp +++ b/be/src/runtime/mysql_table_sink.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/mysql_table_sink.h b/be/src/runtime/mysql_table_sink.h index bbea514685ab33..999d0b9c1e9b39 100644 --- a/be/src/runtime/mysql_table_sink.h +++ b/be/src/runtime/mysql_table_sink.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/mysql_table_writer.cpp b/be/src/runtime/mysql_table_writer.cpp index 74b37d86aa8dfe..7fcd5ec9e53e9c 100644 --- a/be/src/runtime/mysql_table_writer.cpp +++ b/be/src/runtime/mysql_table_writer.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/mysql_table_writer.h b/be/src/runtime/mysql_table_writer.h index 13f8ca09158b79..2c7a8131bbdb94 100644 --- a/be/src/runtime/mysql_table_writer.h +++ b/be/src/runtime/mysql_table_writer.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/pull_load_task_mgr.cpp b/be/src/runtime/pull_load_task_mgr.cpp index ba4a59531854b9..c2d82275e68f67 100644 --- a/be/src/runtime/pull_load_task_mgr.cpp +++ b/be/src/runtime/pull_load_task_mgr.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/pull_load_task_mgr.h b/be/src/runtime/pull_load_task_mgr.h index 627feb92654a07..54c5094b536dc8 100644 --- a/be/src/runtime/pull_load_task_mgr.h +++ b/be/src/runtime/pull_load_task_mgr.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/vectorized_row_batch.cpp b/be/src/runtime/vectorized_row_batch.cpp index 462eb11311cf6f..f113183905520a 100644 --- a/be/src/runtime/vectorized_row_batch.cpp +++ b/be/src/runtime/vectorized_row_batch.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/runtime/vectorized_row_batch.h b/be/src/runtime/vectorized_row_batch.h index f62424a54f5652..e650e8f6ed0bea 100644 --- a/be/src/runtime/vectorized_row_batch.h +++ b/be/src/runtime/vectorized_row_batch.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/service/CMakeLists.txt b/be/src/service/CMakeLists.txt index 5491a83a66ada8..82e2e54f2e9531 100644 --- a/be/src/service/CMakeLists.txt +++ b/be/src/service/CMakeLists.txt @@ -1,13 +1,8 @@ -# Modifications copyright (C) 2017, Baidu.com, Inc. -# Copyright 2017 The Apache Software Foundation - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +# 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 # diff --git a/be/src/service/palo_main.cpp b/be/src/service/palo_main.cpp index b75dc5f910f455..1852596722ea60 100644 --- a/be/src/service/palo_main.cpp +++ b/be/src/service/palo_main.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/service/receiver_dispatcher.h b/be/src/service/receiver_dispatcher.h index 630cc8fb6d8de1..99c16b5e89bdd3 100644 --- a/be/src/service/receiver_dispatcher.h +++ b/be/src/service/receiver_dispatcher.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/src/util/CMakeLists.txt b/be/src/util/CMakeLists.txt index 45a71ca26272f3..1ad99b786092dd 100644 --- a/be/src/util/CMakeLists.txt +++ b/be/src/util/CMakeLists.txt @@ -35,7 +35,6 @@ add_library(Util STATIC disk_info.cpp hash_util.hpp palo_metrics.cpp - logging.cpp mem_info.cpp metrics.cpp murmur_hash3.cpp diff --git a/be/src/util/logging.cpp b/be/src/util/logging.cpp deleted file mode 100644 index e69de29bb2d1d6..00000000000000 diff --git a/be/test/agent/agent_server_test.cpp b/be/test/agent/agent_server_test.cpp index cb5dedfb03b55a..ec2e6f2a91d05c 100644 --- a/be/test/agent/agent_server_test.cpp +++ b/be/test/agent/agent_server_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/cgroups_mgr_test.cpp b/be/test/agent/cgroups_mgr_test.cpp index 6cfe41466fb8de..60f69ce47d4982 100644 --- a/be/test/agent/cgroups_mgr_test.cpp +++ b/be/test/agent/cgroups_mgr_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/file_downloader_test.cpp b/be/test/agent/file_downloader_test.cpp index e927970ebb3b05..da52c23bc90e9f 100644 --- a/be/test/agent/file_downloader_test.cpp +++ b/be/test/agent/file_downloader_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/heartbeat_server_test.cpp b/be/test/agent/heartbeat_server_test.cpp index a0a7aee1df8d96..70edfa74eb799e 100644 --- a/be/test/agent/heartbeat_server_test.cpp +++ b/be/test/agent/heartbeat_server_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/mock_file_downloader.h b/be/test/agent/mock_file_downloader.h index 8d7fb6b3f896d5..8318c3ff6fb95d 100644 --- a/be/test/agent/mock_file_downloader.h +++ b/be/test/agent/mock_file_downloader.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/mock_pusher.h b/be/test/agent/mock_pusher.h index 846aa45555aa72..fb01bd4e9b7206 100644 --- a/be/test/agent/mock_pusher.h +++ b/be/test/agent/mock_pusher.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/mock_task_worker_pool.h b/be/test/agent/mock_task_worker_pool.h index ed61b7a7afe980..94a29bd199d0eb 100644 --- a/be/test/agent/mock_task_worker_pool.h +++ b/be/test/agent/mock_task_worker_pool.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/mock_utils.h b/be/test/agent/mock_utils.h index 50ca73a79a4723..0f377669a3532a 100644 --- a/be/test/agent/mock_utils.h +++ b/be/test/agent/mock_utils.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/pusher_test.cpp b/be/test/agent/pusher_test.cpp index 04be36fe80443c..4ee785c1f90154 100644 --- a/be/test/agent/pusher_test.cpp +++ b/be/test/agent/pusher_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/task_worker_pool_test.cpp b/be/test/agent/task_worker_pool_test.cpp index d5be331f920dfa..b13f47b0096b06 100644 --- a/be/test/agent/task_worker_pool_test.cpp +++ b/be/test/agent/task_worker_pool_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/agent/utils_test.cpp b/be/test/agent/utils_test.cpp index afdce8ad5ec732..5aae2d0439df04 100644 --- a/be/test/agent/utils_test.cpp +++ b/be/test/agent/utils_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/common/resource_tls_test.cpp b/be/test/common/resource_tls_test.cpp index d3bc70564093a6..1ffafd427e13df 100644 --- a/be/test/common/resource_tls_test.cpp +++ b/be/test/common/resource_tls_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/broker_reader_test.cpp b/be/test/exec/broker_reader_test.cpp index 4d6905d5d4ffce..caeb0ead5defb1 100644 --- a/be/test/exec/broker_reader_test.cpp +++ b/be/test/exec/broker_reader_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/broker_scan_node_test.cpp b/be/test/exec/broker_scan_node_test.cpp index 3092f29f502b0a..164dc98b39e645 100644 --- a/be/test/exec/broker_scan_node_test.cpp +++ b/be/test/exec/broker_scan_node_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/broker_scanner_test.cpp b/be/test/exec/broker_scanner_test.cpp index 8dd6bd11cecaf9..de882abbdd85ff 100644 --- a/be/test/exec/broker_scanner_test.cpp +++ b/be/test/exec/broker_scanner_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/csv_scan_bench_test.cpp b/be/test/exec/csv_scan_bench_test.cpp index 7c5b519cfe22e3..e5de036ce7885d 100644 --- a/be/test/exec/csv_scan_bench_test.cpp +++ b/be/test/exec/csv_scan_bench_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/csv_scan_node_test.cpp b/be/test/exec/csv_scan_node_test.cpp index 6834fef371cb26..293c5ea1fa0c66 100644 --- a/be/test/exec/csv_scan_node_test.cpp +++ b/be/test/exec/csv_scan_node_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/csv_scanner_test.cpp b/be/test/exec/csv_scanner_test.cpp index 9730b8e39f083b..b87a4bba71f839 100644 --- a/be/test/exec/csv_scanner_test.cpp +++ b/be/test/exec/csv_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/hash_table_test.cpp b/be/test/exec/hash_table_test.cpp index 97de0fbab081a2..9e739ea3b9919b 100644 --- a/be/test/exec/hash_table_test.cpp +++ b/be/test/exec/hash_table_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/mysql_scan_node_test.cpp b/be/test/exec/mysql_scan_node_test.cpp index 2d31a2e3ba6190..b4fb228f935ff3 100644 --- a/be/test/exec/mysql_scan_node_test.cpp +++ b/be/test/exec/mysql_scan_node_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/mysql_scanner_test.cpp b/be/test/exec/mysql_scanner_test.cpp index a93f2b69f15be1..32b80e5edeea0f 100644 --- a/be/test/exec/mysql_scanner_test.cpp +++ b/be/test/exec/mysql_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/new_olap_scan_node_test.cpp b/be/test/exec/new_olap_scan_node_test.cpp index a44e9dc7d502c7..16c0c0cb64e046 100644 --- a/be/test/exec/new_olap_scan_node_test.cpp +++ b/be/test/exec/new_olap_scan_node_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/olap_common_test.cpp b/be/test/exec/olap_common_test.cpp index a252e79ec0db4c..59103c5cd2528a 100644 --- a/be/test/exec/olap_common_test.cpp +++ b/be/test/exec/olap_common_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/olap_scan_node_test.cpp b/be/test/exec/olap_scan_node_test.cpp index 4b29a65b051828..6107759e3c74bb 100644 --- a/be/test/exec/olap_scan_node_test.cpp +++ b/be/test/exec/olap_scan_node_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/olap_scanner_test.cpp b/be/test/exec/olap_scanner_test.cpp index 1d8b1ce661bb69..09f34be86330d1 100644 --- a/be/test/exec/olap_scanner_test.cpp +++ b/be/test/exec/olap_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/partitioned_hash_table_test.cpp b/be/test/exec/partitioned_hash_table_test.cpp index 323e0fd8d1005b..514e875e169be1 100644 --- a/be/test/exec/partitioned_hash_table_test.cpp +++ b/be/test/exec/partitioned_hash_table_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/plain_text_line_reader_bzip_test.cpp b/be/test/exec/plain_text_line_reader_bzip_test.cpp index 9334ce470f466c..91cfef3b77e689 100644 --- a/be/test/exec/plain_text_line_reader_bzip_test.cpp +++ b/be/test/exec/plain_text_line_reader_bzip_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/plain_text_line_reader_gzip_test.cpp b/be/test/exec/plain_text_line_reader_gzip_test.cpp index 18f4684b133e56..f9bced3d9901e0 100644 --- a/be/test/exec/plain_text_line_reader_gzip_test.cpp +++ b/be/test/exec/plain_text_line_reader_gzip_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/plain_text_line_reader_lz4frame_test.cpp b/be/test/exec/plain_text_line_reader_lz4frame_test.cpp index e0b5f0f90c6829..7910a01dddfe76 100644 --- a/be/test/exec/plain_text_line_reader_lz4frame_test.cpp +++ b/be/test/exec/plain_text_line_reader_lz4frame_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/plain_text_line_reader_lzop_test.cpp b/be/test/exec/plain_text_line_reader_lzop_test.cpp index 831621d214ed5e..37410c08597932 100644 --- a/be/test/exec/plain_text_line_reader_lzop_test.cpp +++ b/be/test/exec/plain_text_line_reader_lzop_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/plain_text_line_reader_uncompressed_test.cpp b/be/test/exec/plain_text_line_reader_uncompressed_test.cpp index f6a20d92228508..98a461d26fd445 100644 --- a/be/test/exec/plain_text_line_reader_uncompressed_test.cpp +++ b/be/test/exec/plain_text_line_reader_uncompressed_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exec/schema_scan_node_test.cpp b/be/test/exec/schema_scan_node_test.cpp index 6a7e3417670368..3e57cf90f61917 100644 --- a/be/test/exec/schema_scan_node_test.cpp +++ b/be/test/exec/schema_scan_node_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_authors_scanner_test.cpp b/be/test/exec/schema_scanner/schema_authors_scanner_test.cpp index 3fb9538fc8f3ab..fdce30dc802a74 100644 --- a/be/test/exec/schema_scanner/schema_authors_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_authors_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_charsets_scanner_test.cpp b/be/test/exec/schema_scanner/schema_charsets_scanner_test.cpp index 7cb2c108689aa0..6c21322f82980b 100644 --- a/be/test/exec/schema_scanner/schema_charsets_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_charsets_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_collations_scanner_test.cpp b/be/test/exec/schema_scanner/schema_collations_scanner_test.cpp index 26ca872b1d5a7d..c55b5fef4ddcac 100644 --- a/be/test/exec/schema_scanner/schema_collations_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_collations_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_columns_scanner_test.cpp b/be/test/exec/schema_scanner/schema_columns_scanner_test.cpp index 03bc199adae370..9bf5e14a22420b 100644 --- a/be/test/exec/schema_scanner/schema_columns_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_columns_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_create_table_scanner_test.cpp b/be/test/exec/schema_scanner/schema_create_table_scanner_test.cpp index 9fdf869319e033..8b56e0969bd2f1 100644 --- a/be/test/exec/schema_scanner/schema_create_table_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_create_table_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_engines_scanner_test.cpp b/be/test/exec/schema_scanner/schema_engines_scanner_test.cpp index 04714da3bdb99f..96419d6d6ef290 100644 --- a/be/test/exec/schema_scanner/schema_engines_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_engines_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_open_tables_scanner_test.cpp b/be/test/exec/schema_scanner/schema_open_tables_scanner_test.cpp index 264854f183b70f..7359e181b67381 100644 --- a/be/test/exec/schema_scanner/schema_open_tables_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_open_tables_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_schemata_scanner_test.cpp b/be/test/exec/schema_scanner/schema_schemata_scanner_test.cpp index 277fcb2ec46887..d8fe90df3e54af 100644 --- a/be/test/exec/schema_scanner/schema_schemata_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_schemata_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_table_names_scanner_test.cpp b/be/test/exec/schema_scanner/schema_table_names_scanner_test.cpp index 687d2898971ca7..9c883384e5fd15 100644 --- a/be/test/exec/schema_scanner/schema_table_names_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_table_names_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_tables_scanner_test.cpp b/be/test/exec/schema_scanner/schema_tables_scanner_test.cpp index eaf13559c82980..09467055f3bda5 100644 --- a/be/test/exec/schema_scanner/schema_tables_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_tables_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner/schema_variables_scanner_test.cpp b/be/test/exec/schema_scanner/schema_variables_scanner_test.cpp index 655389cd5384c8..755dba595d87be 100644 --- a/be/test/exec/schema_scanner/schema_variables_scanner_test.cpp +++ b/be/test/exec/schema_scanner/schema_variables_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/schema_scanner_test.cpp b/be/test/exec/schema_scanner_test.cpp index 93cff040029283..dfcf6f4d74c6f6 100644 --- a/be/test/exec/schema_scanner_test.cpp +++ b/be/test/exec/schema_scanner_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exec/set_executor_test.cpp b/be/test/exec/set_executor_test.cpp index 48ac8aef99f6d1..cfa3d893db7c2d 100644 --- a/be/test/exec/set_executor_test.cpp +++ b/be/test/exec/set_executor_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/exprs/binary_predicate_test.cpp b/be/test/exprs/binary_predicate_test.cpp index 2dcdbfd461559f..7af8dae3c57356 100644 --- a/be/test/exprs/binary_predicate_test.cpp +++ b/be/test/exprs/binary_predicate_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exprs/hybird_set_test.cpp b/be/test/exprs/hybird_set_test.cpp index ad1c1d517039ec..9eb17215c2a20b 100644 --- a/be/test/exprs/hybird_set_test.cpp +++ b/be/test/exprs/hybird_set_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exprs/in_op_test.cpp b/be/test/exprs/in_op_test.cpp index 6c6ce76a897dcb..1e3bb753fcaded 100644 --- a/be/test/exprs/in_op_test.cpp +++ b/be/test/exprs/in_op_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exprs/in_predicate_test.cpp b/be/test/exprs/in_predicate_test.cpp index 1ec1224f01198c..70beb22ae2bad9 100644 --- a/be/test/exprs/in_predicate_test.cpp +++ b/be/test/exprs/in_predicate_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/exprs/json_function_test.cpp b/be/test/exprs/json_function_test.cpp index 293be2521dfbfb..1cf97b2bf8652e 100644 --- a/be/test/exprs/json_function_test.cpp +++ b/be/test/exprs/json_function_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/bit_field_test.cpp b/be/test/olap/bit_field_test.cpp index c498630184144c..3c9ca674e575bc 100755 --- a/be/test/olap/bit_field_test.cpp +++ b/be/test/olap/bit_field_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/bloom_filter_index_test.cpp b/be/test/olap/bloom_filter_index_test.cpp index a11175529a3d1b..516c8edda31fad 100644 --- a/be/test/olap/bloom_filter_index_test.cpp +++ b/be/test/olap/bloom_filter_index_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/bloom_filter_test.cpp b/be/test/olap/bloom_filter_test.cpp index 240e016828a449..36df30eb69b9de 100644 --- a/be/test/olap/bloom_filter_test.cpp +++ b/be/test/olap/bloom_filter_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/byte_buffer_test.cpp b/be/test/olap/byte_buffer_test.cpp index 77b3116eb091bc..53566a84c6ade0 100755 --- a/be/test/olap/byte_buffer_test.cpp +++ b/be/test/olap/byte_buffer_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/column_reader_test.cpp b/be/test/olap/column_reader_test.cpp index 17ef3984ab8b4d..8572ac9c1f6426 100755 --- a/be/test/olap/column_reader_test.cpp +++ b/be/test/olap/column_reader_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/command_executor_test.cpp b/be/test/olap/command_executor_test.cpp index 4fe18011702548..5ca581a2f83dc2 100644 --- a/be/test/olap/command_executor_test.cpp +++ b/be/test/olap/command_executor_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/delete_handler_test.cpp b/be/test/olap/delete_handler_test.cpp index ab0745351e80a1..cff5c1e4b7fdeb 100644 --- a/be/test/olap/delete_handler_test.cpp +++ b/be/test/olap/delete_handler_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/file_helper_test.cpp b/be/test/olap/file_helper_test.cpp index f85ac091c5781e..88abf867954bda 100644 --- a/be/test/olap/file_helper_test.cpp +++ b/be/test/olap/file_helper_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/file_utils_test.cpp b/be/test/olap/file_utils_test.cpp index f9fca35f83719c..6221081bda4aa9 100644 --- a/be/test/olap/file_utils_test.cpp +++ b/be/test/olap/file_utils_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/lru_cache_test.cpp b/be/test/olap/lru_cache_test.cpp index 7b0e749a7c72fa..8494881191ed0d 100644 --- a/be/test/olap/lru_cache_test.cpp +++ b/be/test/olap/lru_cache_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/mock_command_executor.h b/be/test/olap/mock_command_executor.h index 612e46677ae917..482881f209ee91 100644 --- a/be/test/olap/mock_command_executor.h +++ b/be/test/olap/mock_command_executor.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/mock_olap_rootpath.h b/be/test/olap/mock_olap_rootpath.h index ec4ac5584a2e85..ec8a1fb1881e23 100644 --- a/be/test/olap/mock_olap_rootpath.h +++ b/be/test/olap/mock_olap_rootpath.h @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/olap_reader_test.cpp b/be/test/olap/olap_reader_test.cpp index 4d6da08d383920..f50bd2b8111073 100755 --- a/be/test/olap/olap_reader_test.cpp +++ b/be/test/olap/olap_reader_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/row_block_test.cpp b/be/test/olap/row_block_test.cpp index d35979ef199733..cccc3092bf5249 100644 --- a/be/test/olap/row_block_test.cpp +++ b/be/test/olap/row_block_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/run_length_byte_test.cpp b/be/test/olap/run_length_byte_test.cpp index f10c9e351b3d62..51f89f428879f1 100755 --- a/be/test/olap/run_length_byte_test.cpp +++ b/be/test/olap/run_length_byte_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/run_length_integer_test.cpp b/be/test/olap/run_length_integer_test.cpp index c0583ed640a007..7cf3822ab1db61 100755 --- a/be/test/olap/run_length_integer_test.cpp +++ b/be/test/olap/run_length_integer_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/stream_index_test.cpp b/be/test/olap/stream_index_test.cpp index 5124d770408e2b..14d108a4aff3de 100755 --- a/be/test/olap/stream_index_test.cpp +++ b/be/test/olap/stream_index_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/olap/vectorized_olap_reader_test.cpp b/be/test/olap/vectorized_olap_reader_test.cpp index 581932cb1fe523..2f993df14d1940 100644 --- a/be/test/olap/vectorized_olap_reader_test.cpp +++ b/be/test/olap/vectorized_olap_reader_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/buffer_control_block_test.cpp b/be/test/runtime/buffer_control_block_test.cpp index 370d8760605c02..0c374a28539c00 100644 --- a/be/test/runtime/buffer_control_block_test.cpp +++ b/be/test/runtime/buffer_control_block_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/buffered_block_mgr2_test.cpp b/be/test/runtime/buffered_block_mgr2_test.cpp index eab2e2baecb154..00fc7ea7699820 100644 --- a/be/test/runtime/buffered_block_mgr2_test.cpp +++ b/be/test/runtime/buffered_block_mgr2_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/buffered_tuple_stream2_test.cpp b/be/test/runtime/buffered_tuple_stream2_test.cpp index 4af477407cd618..e7bfc16587f0e4 100644 --- a/be/test/runtime/buffered_tuple_stream2_test.cpp +++ b/be/test/runtime/buffered_tuple_stream2_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/buffered_tuple_stream_test.cpp b/be/test/runtime/buffered_tuple_stream_test.cpp index 85be67a6e50b0e..88b52cb187c783 100644 --- a/be/test/runtime/buffered_tuple_stream_test.cpp +++ b/be/test/runtime/buffered_tuple_stream_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/data_spliter_test.cpp b/be/test/runtime/data_spliter_test.cpp index 319c15b659eaac..69a47d2c90482a 100644 --- a/be/test/runtime/data_spliter_test.cpp +++ b/be/test/runtime/data_spliter_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/data_stream_test.cpp b/be/test/runtime/data_stream_test.cpp index a0cdfba1b028e8..679afb68554553 100644 --- a/be/test/runtime/data_stream_test.cpp +++ b/be/test/runtime/data_stream_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/datetime_value_test.cpp b/be/test/runtime/datetime_value_test.cpp index e90c288f44bea9..4e000858ecf0dc 100644 --- a/be/test/runtime/datetime_value_test.cpp +++ b/be/test/runtime/datetime_value_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/decimal_value_test.cpp b/be/test/runtime/decimal_value_test.cpp index 4d3ec7d9644f4c..d6afff51186ffe 100755 --- a/be/test/runtime/decimal_value_test.cpp +++ b/be/test/runtime/decimal_value_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/disk_io_mgr_test.cpp b/be/test/runtime/disk_io_mgr_test.cpp index 248c487c700e30..d4934d380678e9 100644 --- a/be/test/runtime/disk_io_mgr_test.cpp +++ b/be/test/runtime/disk_io_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/dpp_sink_internal_test.cpp b/be/test/runtime/dpp_sink_internal_test.cpp index ea1fc12a3c3a95..2661996c16048e 100644 --- a/be/test/runtime/dpp_sink_internal_test.cpp +++ b/be/test/runtime/dpp_sink_internal_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/dpp_sink_test.cpp b/be/test/runtime/dpp_sink_test.cpp index 3d18e12845c66e..6d173766d570f5 100644 --- a/be/test/runtime/dpp_sink_test.cpp +++ b/be/test/runtime/dpp_sink_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/dpp_writer_test.cpp b/be/test/runtime/dpp_writer_test.cpp index fbdad224b079e0..422ce6eef3e87f 100644 --- a/be/test/runtime/dpp_writer_test.cpp +++ b/be/test/runtime/dpp_writer_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/etl_job_mgr_test.cpp b/be/test/runtime/etl_job_mgr_test.cpp index cdf7a0283c5806..dc90aa0c7e81dc 100644 --- a/be/test/runtime/etl_job_mgr_test.cpp +++ b/be/test/runtime/etl_job_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/export_task_mgr_test.cpp b/be/test/runtime/export_task_mgr_test.cpp index d1feedbbec71a6..18768ebc9c82a7 100644 --- a/be/test/runtime/export_task_mgr_test.cpp +++ b/be/test/runtime/export_task_mgr_test.cpp @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/fragment_mgr_test.cpp b/be/test/runtime/fragment_mgr_test.cpp index d009dd9a3699f2..1a02d524ccbcd9 100644 --- a/be/test/runtime/fragment_mgr_test.cpp +++ b/be/test/runtime/fragment_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/free_list_test.cpp b/be/test/runtime/free_list_test.cpp index 7d4e4cf03d8871..c663210137132d 100644 --- a/be/test/runtime/free_list_test.cpp +++ b/be/test/runtime/free_list_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/large_int_value_test.cpp b/be/test/runtime/large_int_value_test.cpp index 1825a309cb0b44..cfb0ecdc286ab2 100644 --- a/be/test/runtime/large_int_value_test.cpp +++ b/be/test/runtime/large_int_value_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/mem_limit_test.cpp b/be/test/runtime/mem_limit_test.cpp index bc7183bfa5ef2d..8a2a2647e446d8 100644 --- a/be/test/runtime/mem_limit_test.cpp +++ b/be/test/runtime/mem_limit_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/mem_pool_test.cpp b/be/test/runtime/mem_pool_test.cpp index 06aed2336378c9..c1676706b24816 100644 --- a/be/test/runtime/mem_pool_test.cpp +++ b/be/test/runtime/mem_pool_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/mysql_table_writer_test.cpp b/be/test/runtime/mysql_table_writer_test.cpp index 231da879977171..a187cfc262a2c5 100644 --- a/be/test/runtime/mysql_table_writer_test.cpp +++ b/be/test/runtime/mysql_table_writer_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/pull_load_task_mgr_test.cpp b/be/test/runtime/pull_load_task_mgr_test.cpp index ff6c5a3ed07f67..f9ad1ad060bdea 100644 --- a/be/test/runtime/pull_load_task_mgr_test.cpp +++ b/be/test/runtime/pull_load_task_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/qsorter_test.cpp b/be/test/runtime/qsorter_test.cpp index 9cb58bf2bca782..9f0e76d8ed43fb 100644 --- a/be/test/runtime/qsorter_test.cpp +++ b/be/test/runtime/qsorter_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/raw_value_test.cpp b/be/test/runtime/raw_value_test.cpp index 769a71ebdbb3a4..f01cc75e155824 100644 --- a/be/test/runtime/raw_value_test.cpp +++ b/be/test/runtime/raw_value_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/result_buffer_mgr_test.cpp b/be/test/runtime/result_buffer_mgr_test.cpp index 9e3be4b882e588..28344ffbbf2d6a 100644 --- a/be/test/runtime/result_buffer_mgr_test.cpp +++ b/be/test/runtime/result_buffer_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/result_sink_test.cpp b/be/test/runtime/result_sink_test.cpp index 4d7673f15aaa67..cf83f9cdec146a 100644 --- a/be/test/runtime/result_sink_test.cpp +++ b/be/test/runtime/result_sink_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/result_writer_test.cpp b/be/test/runtime/result_writer_test.cpp index 22e89166922d93..ddf82a67670d63 100644 --- a/be/test/runtime/result_writer_test.cpp +++ b/be/test/runtime/result_writer_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/sorter_test.cpp b/be/test/runtime/sorter_test.cpp index 9f80991f83d7f1..c46cf3cd87768f 100644 --- a/be/test/runtime/sorter_test.cpp +++ b/be/test/runtime/sorter_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/string_buffer_test.cpp b/be/test/runtime/string_buffer_test.cpp index 5783b30400422e..d727d391f774e2 100644 --- a/be/test/runtime/string_buffer_test.cpp +++ b/be/test/runtime/string_buffer_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/runtime/string_value_test.cpp b/be/test/runtime/string_value_test.cpp index 8b00b00eb65a83..42523802153edb 100644 --- a/be/test/runtime/string_value_test.cpp +++ b/be/test/runtime/string_value_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/thread_resource_mgr_test.cpp b/be/test/runtime/thread_resource_mgr_test.cpp index 56a81495786213..47d87447b6d52b 100644 --- a/be/test/runtime/thread_resource_mgr_test.cpp +++ b/be/test/runtime/thread_resource_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/runtime/tmp_file_mgr_test.cpp b/be/test/runtime/tmp_file_mgr_test.cpp index e064b10fa13922..3f2334782262d4 100644 --- a/be/test/runtime/tmp_file_mgr_test.cpp +++ b/be/test/runtime/tmp_file_mgr_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/udf/uda_test.cpp b/be/test/udf/uda_test.cpp index 85d6011bd575d1..41768773fd89b6 100755 --- a/be/test/udf/uda_test.cpp +++ b/be/test/udf/uda_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/udf/udf_test.cpp b/be/test/udf/udf_test.cpp index 9ec73740f1fa24..5d488c692007c8 100755 --- a/be/test/udf/udf_test.cpp +++ b/be/test/udf/udf_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/bit_util_test.cpp b/be/test/util/bit_util_test.cpp index f9a7cb13828b48..497ee6ec26288b 100644 --- a/be/test/util/bit_util_test.cpp +++ b/be/test/util/bit_util_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/util/blocking_queue_test.cpp b/be/test/util/blocking_queue_test.cpp index 1eec71c85dc95e..dafc22f70e1037 100644 --- a/be/test/util/blocking_queue_test.cpp +++ b/be/test/util/blocking_queue_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/count_down_latch_test.cpp b/be/test/util/count_down_latch_test.cpp index d6cc63f2e2e17f..e8649643949abb 100644 --- a/be/test/util/count_down_latch_test.cpp +++ b/be/test/util/count_down_latch_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/debug_util_test.cpp b/be/test/util/debug_util_test.cpp index 89baedee641ce4..51797d5c202d6c 100644 --- a/be/test/util/debug_util_test.cpp +++ b/be/test/util/debug_util_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/decompress_test.cpp b/be/test/util/decompress_test.cpp index 619602d6d20295..ae2d06b42f7304 100644 --- a/be/test/util/decompress_test.cpp +++ b/be/test/util/decompress_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/filesystem_util_test.cpp b/be/test/util/filesystem_util_test.cpp index 43d99a6e772ba3..f5b47df25882a2 100644 --- a/be/test/util/filesystem_util_test.cpp +++ b/be/test/util/filesystem_util_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/be/test/util/internal_queue_test.cpp b/be/test/util/internal_queue_test.cpp index 8671c4c9043d99..d3c573e1922844 100644 --- a/be/test/util/internal_queue_test.cpp +++ b/be/test/util/internal_queue_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/lru_cache_util_test.cpp b/be/test/util/lru_cache_util_test.cpp index 95d43d95810098..09604389efe73e 100644 --- a/be/test/util/lru_cache_util_test.cpp +++ b/be/test/util/lru_cache_util_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/metrics_test.cpp b/be/test/util/metrics_test.cpp index ef4d6b6032f179..32913f50bf915b 100644 --- a/be/test/util/metrics_test.cpp +++ b/be/test/util/metrics_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/mysql_row_buffer_test.cpp b/be/test/util/mysql_row_buffer_test.cpp index f009ea3e369afd..f619f5a2178dc4 100644 --- a/be/test/util/mysql_row_buffer_test.cpp +++ b/be/test/util/mysql_row_buffer_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/path_trie_test.cpp b/be/test/util/path_trie_test.cpp index 09f9318519b785..51add262e20227 100644 --- a/be/test/util/path_trie_test.cpp +++ b/be/test/util/path_trie_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/perf_counters_test.cpp b/be/test/util/perf_counters_test.cpp index 17ac5e74c055f1..3c79cd519d29a1 100644 --- a/be/test/util/perf_counters_test.cpp +++ b/be/test/util/perf_counters_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/runtime_profile_test.cpp b/be/test/util/runtime_profile_test.cpp index ebcb6019a37f99..fe015ccedc1642 100644 --- a/be/test/util/runtime_profile_test.cpp +++ b/be/test/util/runtime_profile_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/string_parser_test.cpp b/be/test/util/string_parser_test.cpp index 34a72c27a37a3e..4efb7dfb00e22d 100644 --- a/be/test/util/string_parser_test.cpp +++ b/be/test/util/string_parser_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/thread_pool_test.cpp b/be/test/util/thread_pool_test.cpp index c2a1ea5b6f94ce..5dc81ce90b9b1b 100644 --- a/be/test/util/thread_pool_test.cpp +++ b/be/test/util/thread_pool_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/be/test/util/url_coding_test.cpp b/be/test/util/url_coding_test.cpp index 8e256a05038eeb..e2c26f8592dc68 100644 --- a/be/test/util/url_coding_test.cpp +++ b/be/test/util/url_coding_test.cpp @@ -1,13 +1,8 @@ -// Modifications copyright (C) 2017, Baidu.com, Inc. -// Copyright 2017 The Apache Software Foundation - -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // diff --git a/bin/start_be.sh b/bin/start_be.sh index d0a6902a9b8d6f..285035ff8ef237 100755 --- a/bin/start_be.sh +++ b/bin/start_be.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/bin/start_fe.sh b/bin/start_fe.sh index 2d5f514194957f..866ebf12fd8eff 100755 --- a/bin/start_fe.sh +++ b/bin/start_fe.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/bin/stop_be.sh b/bin/stop_be.sh index d48a8e30481cc6..dacae7889caf37 100755 --- a/bin/stop_be.sh +++ b/bin/stop_be.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/bin/stop_fe.sh b/bin/stop_fe.sh index d608880c472e09..bd09d8a5a701e8 100755 --- a/bin/stop_fe.sh +++ b/bin/stop_fe.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/build.sh b/build.sh index e77b6d82a094cb..0a71d23e4120b1 100755 --- a/build.sh +++ b/build.sh @@ -1,13 +1,9 @@ #!/usr/bin/env bash # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fe/build.xml b/fe/build.xml index fb5e872af0deb3..15bb4a92e80ac6 100644 --- a/fe/build.xml +++ b/fe/build.xml @@ -3,22 +3,18 @@ diff --git a/fe/src/com/baidu/palo/PaloFe.java b/fe/src/com/baidu/palo/PaloFe.java index 41081b85d649f8..66575df4adfc85 100644 --- a/fe/src/com/baidu/palo/PaloFe.java +++ b/fe/src/com/baidu/palo/PaloFe.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/Alter.java b/fe/src/com/baidu/palo/alter/Alter.java index 16fde23b6ef64c..a85cb40f56c792 100644 --- a/fe/src/com/baidu/palo/alter/Alter.java +++ b/fe/src/com/baidu/palo/alter/Alter.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/AlterHandler.java b/fe/src/com/baidu/palo/alter/AlterHandler.java index 114c248c3b0459..55c4591a85ea01 100644 --- a/fe/src/com/baidu/palo/alter/AlterHandler.java +++ b/fe/src/com/baidu/palo/alter/AlterHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/AlterJob.java b/fe/src/com/baidu/palo/alter/AlterJob.java index fb1e0fb595c883..73e1fc6b11be78 100644 --- a/fe/src/com/baidu/palo/alter/AlterJob.java +++ b/fe/src/com/baidu/palo/alter/AlterJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/DecommissionBackendJob.java b/fe/src/com/baidu/palo/alter/DecommissionBackendJob.java index 49384c812fb886..b8cb31abdf6e41 100644 --- a/fe/src/com/baidu/palo/alter/DecommissionBackendJob.java +++ b/fe/src/com/baidu/palo/alter/DecommissionBackendJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/RollupHandler.java b/fe/src/com/baidu/palo/alter/RollupHandler.java index f9c9b69bcd1dc0..94d18d652989e2 100644 --- a/fe/src/com/baidu/palo/alter/RollupHandler.java +++ b/fe/src/com/baidu/palo/alter/RollupHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/RollupJob.java b/fe/src/com/baidu/palo/alter/RollupJob.java index a63d8d59b65027..6db03cfacd1683 100644 --- a/fe/src/com/baidu/palo/alter/RollupJob.java +++ b/fe/src/com/baidu/palo/alter/RollupJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/SchemaChangeHandler.java b/fe/src/com/baidu/palo/alter/SchemaChangeHandler.java index 142fd3a0a5193c..22e24291fbe6ee 100644 --- a/fe/src/com/baidu/palo/alter/SchemaChangeHandler.java +++ b/fe/src/com/baidu/palo/alter/SchemaChangeHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/SchemaChangeJob.java b/fe/src/com/baidu/palo/alter/SchemaChangeJob.java index d5ca3368407074..9bb652aa01fcb0 100644 --- a/fe/src/com/baidu/palo/alter/SchemaChangeJob.java +++ b/fe/src/com/baidu/palo/alter/SchemaChangeJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/alter/SystemHandler.java b/fe/src/com/baidu/palo/alter/SystemHandler.java index fa5a79beb89997..c1ddf21b1a9a34 100644 --- a/fe/src/com/baidu/palo/alter/SystemHandler.java +++ b/fe/src/com/baidu/palo/alter/SystemHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/AddBackendClause.java b/fe/src/com/baidu/palo/analysis/AddBackendClause.java index 7e605bcab6a92a..97dec2687b1d8b 100644 --- a/fe/src/com/baidu/palo/analysis/AddBackendClause.java +++ b/fe/src/com/baidu/palo/analysis/AddBackendClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/AlterSystemStmt.java b/fe/src/com/baidu/palo/analysis/AlterSystemStmt.java index 85a0391d5f9060..5695c1e671b906 100644 --- a/fe/src/com/baidu/palo/analysis/AlterSystemStmt.java +++ b/fe/src/com/baidu/palo/analysis/AlterSystemStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/Analyzer.java b/fe/src/com/baidu/palo/analysis/Analyzer.java index ba2126d855b9c6..5b071819b87f99 100644 --- a/fe/src/com/baidu/palo/analysis/Analyzer.java +++ b/fe/src/com/baidu/palo/analysis/Analyzer.java @@ -24,7 +24,6 @@ import com.baidu.palo.catalog.Catalog; import com.baidu.palo.catalog.Column; import com.baidu.palo.catalog.Database; -import com.baidu.palo.catalog.InfoSchemaDb; import com.baidu.palo.catalog.Table; import com.baidu.palo.cluster.ClusterNamespace; import com.baidu.palo.catalog.Type; @@ -526,10 +525,6 @@ public SlotDescriptor registerColumnRef(TableName tblName, String colName) throw if (tblName == null) { d = resolveColumnRef(colName); } else { - if (InfoSchemaDb.isInfoSchemaDb(tblName.getDb()) || - (tblName.getDb() == null && InfoSchemaDb.isInfoSchemaDb(getDefaultDb()))) { - tblName = new TableName(tblName.getDb(), tblName.getTbl().toLowerCase()); - } d = resolveColumnRef(tblName, colName); } if (d == null && hasAncestors() && isSubquery) { diff --git a/fe/src/com/baidu/palo/analysis/BrokerDesc.java b/fe/src/com/baidu/palo/analysis/BrokerDesc.java index 82f7d3d7fbbf39..1e8a0926acdde9 100644 --- a/fe/src/com/baidu/palo/analysis/BrokerDesc.java +++ b/fe/src/com/baidu/palo/analysis/BrokerDesc.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CancelAlterSystemStmt.java b/fe/src/com/baidu/palo/analysis/CancelAlterSystemStmt.java index 92c7d5f126d691..ed08378c214150 100644 --- a/fe/src/com/baidu/palo/analysis/CancelAlterSystemStmt.java +++ b/fe/src/com/baidu/palo/analysis/CancelAlterSystemStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CancelAlterTableStmt.java b/fe/src/com/baidu/palo/analysis/CancelAlterTableStmt.java index ec677fa753cfbd..20911f9aa1d6af 100644 --- a/fe/src/com/baidu/palo/analysis/CancelAlterTableStmt.java +++ b/fe/src/com/baidu/palo/analysis/CancelAlterTableStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CancelBackupStmt.java b/fe/src/com/baidu/palo/analysis/CancelBackupStmt.java index df28a454a13a0a..f86161bba8edd8 100644 --- a/fe/src/com/baidu/palo/analysis/CancelBackupStmt.java +++ b/fe/src/com/baidu/palo/analysis/CancelBackupStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CancelLoadStmt.java b/fe/src/com/baidu/palo/analysis/CancelLoadStmt.java index 4da5bf995f511f..511ea164ed1a86 100644 --- a/fe/src/com/baidu/palo/analysis/CancelLoadStmt.java +++ b/fe/src/com/baidu/palo/analysis/CancelLoadStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CancelStmt.java b/fe/src/com/baidu/palo/analysis/CancelStmt.java index 0389eb79364cf8..54c309974177f5 100644 --- a/fe/src/com/baidu/palo/analysis/CancelStmt.java +++ b/fe/src/com/baidu/palo/analysis/CancelStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/CreateClusterStmt.java b/fe/src/com/baidu/palo/analysis/CreateClusterStmt.java index 7005c99828e546..ce2ba3f6e217bf 100644 --- a/fe/src/com/baidu/palo/analysis/CreateClusterStmt.java +++ b/fe/src/com/baidu/palo/analysis/CreateClusterStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropBackendClause.java b/fe/src/com/baidu/palo/analysis/DropBackendClause.java index e601aa302f2a75..85d32bb156142b 100644 --- a/fe/src/com/baidu/palo/analysis/DropBackendClause.java +++ b/fe/src/com/baidu/palo/analysis/DropBackendClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropClusterStmt.java b/fe/src/com/baidu/palo/analysis/DropClusterStmt.java index 2f76c524d14e74..8e028171dbc625 100644 --- a/fe/src/com/baidu/palo/analysis/DropClusterStmt.java +++ b/fe/src/com/baidu/palo/analysis/DropClusterStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropColumnClause.java b/fe/src/com/baidu/palo/analysis/DropColumnClause.java index 9a519442409a57..29eca6245ec05e 100644 --- a/fe/src/com/baidu/palo/analysis/DropColumnClause.java +++ b/fe/src/com/baidu/palo/analysis/DropColumnClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropDbStmt.java b/fe/src/com/baidu/palo/analysis/DropDbStmt.java index 2d3c5c50f9d71f..40fb1de9710213 100644 --- a/fe/src/com/baidu/palo/analysis/DropDbStmt.java +++ b/fe/src/com/baidu/palo/analysis/DropDbStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropFollowerClause.java b/fe/src/com/baidu/palo/analysis/DropFollowerClause.java index a3c162ac1a20aa..48cb7a2ad011f7 100644 --- a/fe/src/com/baidu/palo/analysis/DropFollowerClause.java +++ b/fe/src/com/baidu/palo/analysis/DropFollowerClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropFunctionStmt.java b/fe/src/com/baidu/palo/analysis/DropFunctionStmt.java index 4a3be2095040ce..0a459bedf82388 100644 --- a/fe/src/com/baidu/palo/analysis/DropFunctionStmt.java +++ b/fe/src/com/baidu/palo/analysis/DropFunctionStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropObserverClause.java b/fe/src/com/baidu/palo/analysis/DropObserverClause.java index e3e7b34af53c59..dcc5e2eac975ae 100644 --- a/fe/src/com/baidu/palo/analysis/DropObserverClause.java +++ b/fe/src/com/baidu/palo/analysis/DropObserverClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropPartitionClause.java b/fe/src/com/baidu/palo/analysis/DropPartitionClause.java index f0862460d886ca..679fa55562ada0 100644 --- a/fe/src/com/baidu/palo/analysis/DropPartitionClause.java +++ b/fe/src/com/baidu/palo/analysis/DropPartitionClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropRollupClause.java b/fe/src/com/baidu/palo/analysis/DropRollupClause.java index 4ebc2a8a656528..d46321c5f73c91 100644 --- a/fe/src/com/baidu/palo/analysis/DropRollupClause.java +++ b/fe/src/com/baidu/palo/analysis/DropRollupClause.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropTableStmt.java b/fe/src/com/baidu/palo/analysis/DropTableStmt.java index 438305246a0b51..bbf03f2ec26af8 100644 --- a/fe/src/com/baidu/palo/analysis/DropTableStmt.java +++ b/fe/src/com/baidu/palo/analysis/DropTableStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/DropUserStmt.java b/fe/src/com/baidu/palo/analysis/DropUserStmt.java index b584c5c4c00aa7..9220c3d0e78cb9 100644 --- a/fe/src/com/baidu/palo/analysis/DropUserStmt.java +++ b/fe/src/com/baidu/palo/analysis/DropUserStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ExportStmt.java b/fe/src/com/baidu/palo/analysis/ExportStmt.java index 8fd347ba21c212..7d20433040ef8c 100644 --- a/fe/src/com/baidu/palo/analysis/ExportStmt.java +++ b/fe/src/com/baidu/palo/analysis/ExportStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ExprSubstitutionMap.java b/fe/src/com/baidu/palo/analysis/ExprSubstitutionMap.java index f74f2f7d94b606..1a5c6c131a9359 100644 --- a/fe/src/com/baidu/palo/analysis/ExprSubstitutionMap.java +++ b/fe/src/com/baidu/palo/analysis/ExprSubstitutionMap.java @@ -49,9 +49,9 @@ public ExprSubstitutionMap() { } // Only used to convert show statement to select statement - public ExprSubstitutionMap(boolean checkAnalyzed) { + public ExprSubstitutionMap(boolean check_analyzed) { this(Lists.newArrayList(), Lists.newArrayList()); - this.checkAnalyzed_ = checkAnalyzed; + this.checkAnalyzed_ = false; } public ExprSubstitutionMap(List lhs, List rhs) { diff --git a/fe/src/com/baidu/palo/analysis/SetTransaction.java b/fe/src/com/baidu/palo/analysis/SetTransaction.java index 334de4c7ecf63a..03f8cb3b4471fb 100644 --- a/fe/src/com/baidu/palo/analysis/SetTransaction.java +++ b/fe/src/com/baidu/palo/analysis/SetTransaction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowAlterStmt.java b/fe/src/com/baidu/palo/analysis/ShowAlterStmt.java index a85230671c63fc..016432ba5625dd 100644 --- a/fe/src/com/baidu/palo/analysis/ShowAlterStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowAlterStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowAuthorStmt.java b/fe/src/com/baidu/palo/analysis/ShowAuthorStmt.java index c619342d1f3adf..466461be117174 100644 --- a/fe/src/com/baidu/palo/analysis/ShowAuthorStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowAuthorStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowBackupStmt.java b/fe/src/com/baidu/palo/analysis/ShowBackupStmt.java index f2b6dcfea8f572..3c718597a2dd58 100644 --- a/fe/src/com/baidu/palo/analysis/ShowBackupStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowBackupStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowBrokerStmt.java b/fe/src/com/baidu/palo/analysis/ShowBrokerStmt.java index 668efb8cfbfa22..1572e1bd17029b 100644 --- a/fe/src/com/baidu/palo/analysis/ShowBrokerStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowBrokerStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowCharsetStmt.java b/fe/src/com/baidu/palo/analysis/ShowCharsetStmt.java index 2bdb52452f39d4..35f296b0198806 100644 --- a/fe/src/com/baidu/palo/analysis/ShowCharsetStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowCharsetStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowClusterStmt.java b/fe/src/com/baidu/palo/analysis/ShowClusterStmt.java index b3a68bbc065a2d..2924bf47b375f4 100644 --- a/fe/src/com/baidu/palo/analysis/ShowClusterStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowClusterStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowCollationStmt.java b/fe/src/com/baidu/palo/analysis/ShowCollationStmt.java index aa52222f3624fc..238f23dc2280ff 100644 --- a/fe/src/com/baidu/palo/analysis/ShowCollationStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowCollationStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowColumnStmt.java b/fe/src/com/baidu/palo/analysis/ShowColumnStmt.java index 18e3555afe2387..fe29c0ec672ae3 100644 --- a/fe/src/com/baidu/palo/analysis/ShowColumnStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowColumnStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowCreateDbStmt.java b/fe/src/com/baidu/palo/analysis/ShowCreateDbStmt.java index 0a59ea61dfa38c..1b7cd3de000965 100644 --- a/fe/src/com/baidu/palo/analysis/ShowCreateDbStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowCreateDbStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowCreateTableStmt.java b/fe/src/com/baidu/palo/analysis/ShowCreateTableStmt.java index 212216f35042b4..790214761e5051 100644 --- a/fe/src/com/baidu/palo/analysis/ShowCreateTableStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowCreateTableStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowDataStmt.java b/fe/src/com/baidu/palo/analysis/ShowDataStmt.java index 7c1121e2e3ed52..063ee9019058ce 100644 --- a/fe/src/com/baidu/palo/analysis/ShowDataStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowDataStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowDbStmt.java b/fe/src/com/baidu/palo/analysis/ShowDbStmt.java index 7c8aedfdb79e2a..6ef87e965b2613 100644 --- a/fe/src/com/baidu/palo/analysis/ShowDbStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowDbStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowDeleteStmt.java b/fe/src/com/baidu/palo/analysis/ShowDeleteStmt.java index f2cf46f5445e34..19263a62ca674d 100644 --- a/fe/src/com/baidu/palo/analysis/ShowDeleteStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowDeleteStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowEnginesStmt.java b/fe/src/com/baidu/palo/analysis/ShowEnginesStmt.java index c5563ebec6728b..4b1cb646ed2e36 100644 --- a/fe/src/com/baidu/palo/analysis/ShowEnginesStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowEnginesStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowEventsStmt.java b/fe/src/com/baidu/palo/analysis/ShowEventsStmt.java index 19fd26ca6796d8..d1469164185155 100644 --- a/fe/src/com/baidu/palo/analysis/ShowEventsStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowEventsStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowExportStmt.java b/fe/src/com/baidu/palo/analysis/ShowExportStmt.java index 7c00ae1fcf9609..0607c4f819b01f 100644 --- a/fe/src/com/baidu/palo/analysis/ShowExportStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowExportStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowKeysStmt.java b/fe/src/com/baidu/palo/analysis/ShowKeysStmt.java index 0bcc55fe1c33b9..3556556349f587 100644 --- a/fe/src/com/baidu/palo/analysis/ShowKeysStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowKeysStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowLoadStmt.java b/fe/src/com/baidu/palo/analysis/ShowLoadStmt.java index 2f17d6889e9cea..c9b5fdedfd8084 100644 --- a/fe/src/com/baidu/palo/analysis/ShowLoadStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowLoadStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowLoadWarningsStmt.java b/fe/src/com/baidu/palo/analysis/ShowLoadWarningsStmt.java index b084f201b7f564..f0b4f299885836 100644 --- a/fe/src/com/baidu/palo/analysis/ShowLoadWarningsStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowLoadWarningsStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowMigrationsStmt.java b/fe/src/com/baidu/palo/analysis/ShowMigrationsStmt.java index f5baaef13aac14..38422d5b00c883 100644 --- a/fe/src/com/baidu/palo/analysis/ShowMigrationsStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowMigrationsStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowOpenTableStmt.java b/fe/src/com/baidu/palo/analysis/ShowOpenTableStmt.java index 3d08d843e78481..629e81adabc7cb 100644 --- a/fe/src/com/baidu/palo/analysis/ShowOpenTableStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowOpenTableStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowPartitionsStmt.java b/fe/src/com/baidu/palo/analysis/ShowPartitionsStmt.java index 00e1623d89ac20..a00c2735c46d31 100644 --- a/fe/src/com/baidu/palo/analysis/ShowPartitionsStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowPartitionsStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowPluginsStmt.java b/fe/src/com/baidu/palo/analysis/ShowPluginsStmt.java index 7fbbc2b73836dd..8bcbe7bfe605b4 100644 --- a/fe/src/com/baidu/palo/analysis/ShowPluginsStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowPluginsStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowProcStmt.java b/fe/src/com/baidu/palo/analysis/ShowProcStmt.java index 22036212d1615e..dbbce5465d2862 100644 --- a/fe/src/com/baidu/palo/analysis/ShowProcStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowProcStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowProcedureStmt.java b/fe/src/com/baidu/palo/analysis/ShowProcedureStmt.java index dbff5d012d3173..a5afd8a0449cf0 100644 --- a/fe/src/com/baidu/palo/analysis/ShowProcedureStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowProcedureStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowProcesslistStmt.java b/fe/src/com/baidu/palo/analysis/ShowProcesslistStmt.java index d87e334add65ec..446f47a99fe5af 100644 --- a/fe/src/com/baidu/palo/analysis/ShowProcesslistStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowProcesslistStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowRestoreStmt.java b/fe/src/com/baidu/palo/analysis/ShowRestoreStmt.java index 15b2c7a35e26dc..6c2f16c1a8693a 100644 --- a/fe/src/com/baidu/palo/analysis/ShowRestoreStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowRestoreStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowRollupStmt.java b/fe/src/com/baidu/palo/analysis/ShowRollupStmt.java index 272cb756a34c6e..04cde9383a27a2 100644 --- a/fe/src/com/baidu/palo/analysis/ShowRollupStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowRollupStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowStatusStmt.java b/fe/src/com/baidu/palo/analysis/ShowStatusStmt.java index 32700aa806025b..6d530550afb175 100644 --- a/fe/src/com/baidu/palo/analysis/ShowStatusStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowStatusStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowStmt.java b/fe/src/com/baidu/palo/analysis/ShowStmt.java index f4f6bc1f0255d6..d5b860f872b830 100644 --- a/fe/src/com/baidu/palo/analysis/ShowStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowTableStatusStmt.java b/fe/src/com/baidu/palo/analysis/ShowTableStatusStmt.java index a56281a7a85047..e1a08e751faff0 100644 --- a/fe/src/com/baidu/palo/analysis/ShowTableStatusStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowTableStatusStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowTableStmt.java b/fe/src/com/baidu/palo/analysis/ShowTableStmt.java index b79f0b584a6914..a376aa0c9eccab 100644 --- a/fe/src/com/baidu/palo/analysis/ShowTableStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowTableStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowTabletStmt.java b/fe/src/com/baidu/palo/analysis/ShowTabletStmt.java index 79d737376c60e2..141f6d33a43981 100644 --- a/fe/src/com/baidu/palo/analysis/ShowTabletStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowTabletStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowTriggersStmt.java b/fe/src/com/baidu/palo/analysis/ShowTriggersStmt.java index c7b5e75553ce34..2d54d02ab54bae 100644 --- a/fe/src/com/baidu/palo/analysis/ShowTriggersStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowTriggersStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowUserPropertyStmt.java b/fe/src/com/baidu/palo/analysis/ShowUserPropertyStmt.java index 2efc8cadd2694a..9c2d132343879e 100644 --- a/fe/src/com/baidu/palo/analysis/ShowUserPropertyStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowUserPropertyStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowVariablesStmt.java b/fe/src/com/baidu/palo/analysis/ShowVariablesStmt.java index 9341077acb3d5a..b3b65444707756 100644 --- a/fe/src/com/baidu/palo/analysis/ShowVariablesStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowVariablesStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // @@ -82,7 +78,7 @@ public SelectStmt toSelectStmt(Analyzer analyzer) { analyze(analyzer); // Columns SelectList selectList = new SelectList(); - ExprSubstitutionMap aliasMap = new ExprSubstitutionMap(false); + ExprSubstitutionMap aliasMap = new ExprSubstitutionMap(); TableName tableName = null; if (type == SetType.GLOBAL) { tableName = new TableName(InfoSchemaDb.getDatabaseName(), "GLOBAL_VARIABLES"); diff --git a/fe/src/com/baidu/palo/analysis/ShowWarningStmt.java b/fe/src/com/baidu/palo/analysis/ShowWarningStmt.java index ba77d353dbe3ba..e5521e8a0a09ed 100644 --- a/fe/src/com/baidu/palo/analysis/ShowWarningStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowWarningStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/analysis/ShowWhiteListStmt.java b/fe/src/com/baidu/palo/analysis/ShowWhiteListStmt.java index d6638fff99a9b3..322283913f26d6 100644 --- a/fe/src/com/baidu/palo/analysis/ShowWhiteListStmt.java +++ b/fe/src/com/baidu/palo/analysis/ShowWhiteListStmt.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/AbstractBackupJob.java b/fe/src/com/baidu/palo/backup/AbstractBackupJob.java index cd9b5693d11654..8e756a956b66da 100644 --- a/fe/src/com/baidu/palo/backup/AbstractBackupJob.java +++ b/fe/src/com/baidu/palo/backup/AbstractBackupJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/AsynchronousCmdExecutor.java b/fe/src/com/baidu/palo/backup/AsynchronousCmdExecutor.java index b61cd424003923..c1e384c191a380 100644 --- a/fe/src/com/baidu/palo/backup/AsynchronousCmdExecutor.java +++ b/fe/src/com/baidu/palo/backup/AsynchronousCmdExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/BackupHandler.java b/fe/src/com/baidu/palo/backup/BackupHandler.java index 809417ff60f789..71ceca2914b4ce 100644 --- a/fe/src/com/baidu/palo/backup/BackupHandler.java +++ b/fe/src/com/baidu/palo/backup/BackupHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/BackupJob.java b/fe/src/com/baidu/palo/backup/BackupJob.java index f5117744e04d6f..96508f881446eb 100644 --- a/fe/src/com/baidu/palo/backup/BackupJob.java +++ b/fe/src/com/baidu/palo/backup/BackupJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/BackupVersion.java b/fe/src/com/baidu/palo/backup/BackupVersion.java index eb78cc234f7a7b..4bf5970cdc5dd6 100644 --- a/fe/src/com/baidu/palo/backup/BackupVersion.java +++ b/fe/src/com/baidu/palo/backup/BackupVersion.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/CommandBuilder.java b/fe/src/com/baidu/palo/backup/CommandBuilder.java index 9058afe11b2fa4..e258fd7375827a 100644 --- a/fe/src/com/baidu/palo/backup/CommandBuilder.java +++ b/fe/src/com/baidu/palo/backup/CommandBuilder.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/DirSaver.java b/fe/src/com/baidu/palo/backup/DirSaver.java index cc345be83960af..a06afeb62ac747 100644 --- a/fe/src/com/baidu/palo/backup/DirSaver.java +++ b/fe/src/com/baidu/palo/backup/DirSaver.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/FileSaver.java b/fe/src/com/baidu/palo/backup/FileSaver.java index 48c8c1aee76227..5d5f3016f2b666 100644 --- a/fe/src/com/baidu/palo/backup/FileSaver.java +++ b/fe/src/com/baidu/palo/backup/FileSaver.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/FileSaverI.java b/fe/src/com/baidu/palo/backup/FileSaverI.java index 8a9362a2a405f8..8b4794be675cd4 100644 --- a/fe/src/com/baidu/palo/backup/FileSaverI.java +++ b/fe/src/com/baidu/palo/backup/FileSaverI.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/MetaDownloadTask.java b/fe/src/com/baidu/palo/backup/MetaDownloadTask.java index 3898bf4434d83e..a0acbaf0db8eeb 100644 --- a/fe/src/com/baidu/palo/backup/MetaDownloadTask.java +++ b/fe/src/com/baidu/palo/backup/MetaDownloadTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/MetaUploadTask.java b/fe/src/com/baidu/palo/backup/MetaUploadTask.java index 7427b0fdbf5a3d..879275bb6e8224 100644 --- a/fe/src/com/baidu/palo/backup/MetaUploadTask.java +++ b/fe/src/com/baidu/palo/backup/MetaUploadTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/ObjectWriter.java b/fe/src/com/baidu/palo/backup/ObjectWriter.java index 80fb5626c290a1..14a1c4d177cc0a 100644 --- a/fe/src/com/baidu/palo/backup/ObjectWriter.java +++ b/fe/src/com/baidu/palo/backup/ObjectWriter.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/PathBuilder.java b/fe/src/com/baidu/palo/backup/PathBuilder.java index c14df55604f8e1..78efbd4ff1b91a 100644 --- a/fe/src/com/baidu/palo/backup/PathBuilder.java +++ b/fe/src/com/baidu/palo/backup/PathBuilder.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/RestoreJob.java b/fe/src/com/baidu/palo/backup/RestoreJob.java index 2a36f9228c474b..844234ae9860f0 100644 --- a/fe/src/com/baidu/palo/backup/RestoreJob.java +++ b/fe/src/com/baidu/palo/backup/RestoreJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/ResultfulTask.java b/fe/src/com/baidu/palo/backup/ResultfulTask.java index 8a56630b4b8e72..3c402ec445b42e 100644 --- a/fe/src/com/baidu/palo/backup/ResultfulTask.java +++ b/fe/src/com/baidu/palo/backup/ResultfulTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/backup/SaveManifestTask.java b/fe/src/com/baidu/palo/backup/SaveManifestTask.java index fd7082c8462a07..86c90292f5ce32 100644 --- a/fe/src/com/baidu/palo/backup/SaveManifestTask.java +++ b/fe/src/com/baidu/palo/backup/SaveManifestTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/AggregateType.java b/fe/src/com/baidu/palo/catalog/AggregateType.java index 5f658afe0ad37e..8735a22b403055 100644 --- a/fe/src/com/baidu/palo/catalog/AggregateType.java +++ b/fe/src/com/baidu/palo/catalog/AggregateType.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/BrokerMgr.java b/fe/src/com/baidu/palo/catalog/BrokerMgr.java index 8f7c62fbc0753f..45fc762c92ed35 100644 --- a/fe/src/com/baidu/palo/catalog/BrokerMgr.java +++ b/fe/src/com/baidu/palo/catalog/BrokerMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/BrokerTable.java b/fe/src/com/baidu/palo/catalog/BrokerTable.java index 898241fbd34b73..a90a1142f8c5b1 100644 --- a/fe/src/com/baidu/palo/catalog/BrokerTable.java +++ b/fe/src/com/baidu/palo/catalog/BrokerTable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/CatalogRecycleBin.java b/fe/src/com/baidu/palo/catalog/CatalogRecycleBin.java index afb2ce334d62ac..1a6b428f080926 100644 --- a/fe/src/com/baidu/palo/catalog/CatalogRecycleBin.java +++ b/fe/src/com/baidu/palo/catalog/CatalogRecycleBin.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/DiskInfo.java b/fe/src/com/baidu/palo/catalog/DiskInfo.java index a10a1d3786c054..6b7e01fe0b7faf 100644 --- a/fe/src/com/baidu/palo/catalog/DiskInfo.java +++ b/fe/src/com/baidu/palo/catalog/DiskInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/DomainParserServer.java b/fe/src/com/baidu/palo/catalog/DomainParserServer.java index 96c6965ff98aeb..ede9576624f979 100644 --- a/fe/src/com/baidu/palo/catalog/DomainParserServer.java +++ b/fe/src/com/baidu/palo/catalog/DomainParserServer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/HashDistributionInfo.java b/fe/src/com/baidu/palo/catalog/HashDistributionInfo.java index aa632aee64e441..7e10b354a67d4a 100644 --- a/fe/src/com/baidu/palo/catalog/HashDistributionInfo.java +++ b/fe/src/com/baidu/palo/catalog/HashDistributionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/InfoSchemaDb.java b/fe/src/com/baidu/palo/catalog/InfoSchemaDb.java index a06c4dfc414dd4..24a2f0c31c4a55 100644 --- a/fe/src/com/baidu/palo/catalog/InfoSchemaDb.java +++ b/fe/src/com/baidu/palo/catalog/InfoSchemaDb.java @@ -90,15 +90,4 @@ public Table getTable(String name) { public static String getFullInfoSchemaDbName(String cluster) { return ClusterNamespace.getDbFullName(cluster, DATABASE_NAME); } - - public static boolean isInfoSchemaDb(String dbName) { - if (dbName == null) { - return false; - } - String[] ele = dbName.split(ClusterNamespace.CLUSTER_DELIMITER); - if (ele.length == 2) { - dbName = ele[1]; - } - return DATABASE_NAME.equalsIgnoreCase(dbName); - } } diff --git a/fe/src/com/baidu/palo/catalog/MysqlTable.java b/fe/src/com/baidu/palo/catalog/MysqlTable.java index 579d5a3667bd4b..635715acf4fbc0 100644 --- a/fe/src/com/baidu/palo/catalog/MysqlTable.java +++ b/fe/src/com/baidu/palo/catalog/MysqlTable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/OlapTable.java b/fe/src/com/baidu/palo/catalog/OlapTable.java index 4dc27a92f3e739..924f346697f7c2 100644 --- a/fe/src/com/baidu/palo/catalog/OlapTable.java +++ b/fe/src/com/baidu/palo/catalog/OlapTable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/Partition.java b/fe/src/com/baidu/palo/catalog/Partition.java index b62e37108591a3..4e22a9d22486d6 100644 --- a/fe/src/com/baidu/palo/catalog/Partition.java +++ b/fe/src/com/baidu/palo/catalog/Partition.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/PartitionInfo.java b/fe/src/com/baidu/palo/catalog/PartitionInfo.java index 021a16fe82793c..941b97af45d4a7 100644 --- a/fe/src/com/baidu/palo/catalog/PartitionInfo.java +++ b/fe/src/com/baidu/palo/catalog/PartitionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/PartitionKey.java b/fe/src/com/baidu/palo/catalog/PartitionKey.java index 6d726823749a51..9d36f9d15caab4 100644 --- a/fe/src/com/baidu/palo/catalog/PartitionKey.java +++ b/fe/src/com/baidu/palo/catalog/PartitionKey.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/PartitionType.java b/fe/src/com/baidu/palo/catalog/PartitionType.java index af174d475bc144..fbf91a02824931 100644 --- a/fe/src/com/baidu/palo/catalog/PartitionType.java +++ b/fe/src/com/baidu/palo/catalog/PartitionType.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/RandomDistributionInfo.java b/fe/src/com/baidu/palo/catalog/RandomDistributionInfo.java index 7821ea39a13bc7..e1d16b668afe07 100644 --- a/fe/src/com/baidu/palo/catalog/RandomDistributionInfo.java +++ b/fe/src/com/baidu/palo/catalog/RandomDistributionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/RangePartitionInfo.java b/fe/src/com/baidu/palo/catalog/RangePartitionInfo.java index fc131320bb98a5..76aea2c98dfc1e 100644 --- a/fe/src/com/baidu/palo/catalog/RangePartitionInfo.java +++ b/fe/src/com/baidu/palo/catalog/RangePartitionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/Replica.java b/fe/src/com/baidu/palo/catalog/Replica.java index 7f698cc7995ca0..1f91c80df336bb 100644 --- a/fe/src/com/baidu/palo/catalog/Replica.java +++ b/fe/src/com/baidu/palo/catalog/Replica.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/Tablet.java b/fe/src/com/baidu/palo/catalog/Tablet.java index 6bf2e7e7d7e292..5c840c96ec3590 100644 --- a/fe/src/com/baidu/palo/catalog/Tablet.java +++ b/fe/src/com/baidu/palo/catalog/Tablet.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/TabletMeta.java b/fe/src/com/baidu/palo/catalog/TabletMeta.java index eb2314a6645065..8b1d07a6fcfc7b 100644 --- a/fe/src/com/baidu/palo/catalog/TabletMeta.java +++ b/fe/src/com/baidu/palo/catalog/TabletMeta.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/UserProperty.java b/fe/src/com/baidu/palo/catalog/UserProperty.java index fa071944c9de2f..a19efa5d38594f 100644 --- a/fe/src/com/baidu/palo/catalog/UserProperty.java +++ b/fe/src/com/baidu/palo/catalog/UserProperty.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/UserPropertyMgr.java b/fe/src/com/baidu/palo/catalog/UserPropertyMgr.java index f1fe4567de776a..a7ffc83c346b67 100644 --- a/fe/src/com/baidu/palo/catalog/UserPropertyMgr.java +++ b/fe/src/com/baidu/palo/catalog/UserPropertyMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/UserResource.java b/fe/src/com/baidu/palo/catalog/UserResource.java index 352f1468140e7e..6d562630dde25f 100644 --- a/fe/src/com/baidu/palo/catalog/UserResource.java +++ b/fe/src/com/baidu/palo/catalog/UserResource.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/catalog/WhiteList.java b/fe/src/com/baidu/palo/catalog/WhiteList.java index ffffba7bca089c..70dfec6ba1be86 100644 --- a/fe/src/com/baidu/palo/catalog/WhiteList.java +++ b/fe/src/com/baidu/palo/catalog/WhiteList.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/clone/Clone.java b/fe/src/com/baidu/palo/clone/Clone.java index e8398e41eeae29..e8c447eb4092ee 100644 --- a/fe/src/com/baidu/palo/clone/Clone.java +++ b/fe/src/com/baidu/palo/clone/Clone.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/clone/CloneChecker.java b/fe/src/com/baidu/palo/clone/CloneChecker.java index 7b4ed7d387e7ff..e1468ea3040fa5 100644 --- a/fe/src/com/baidu/palo/clone/CloneChecker.java +++ b/fe/src/com/baidu/palo/clone/CloneChecker.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/clone/CloneJob.java b/fe/src/com/baidu/palo/clone/CloneJob.java index 7f5e203769082c..30b010108e6dfc 100644 --- a/fe/src/com/baidu/palo/clone/CloneJob.java +++ b/fe/src/com/baidu/palo/clone/CloneJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/cluster/BaseParam.java b/fe/src/com/baidu/palo/cluster/BaseParam.java index 6eb8899463a657..a7cb8dc3f47e62 100644 --- a/fe/src/com/baidu/palo/cluster/BaseParam.java +++ b/fe/src/com/baidu/palo/cluster/BaseParam.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/cluster/Cluster.java b/fe/src/com/baidu/palo/cluster/Cluster.java index fd61350ee76765..e7e30b2efb457b 100644 --- a/fe/src/com/baidu/palo/cluster/Cluster.java +++ b/fe/src/com/baidu/palo/cluster/Cluster.java @@ -1,13 +1,8 @@ - // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/cluster/ClusterNamespace.java b/fe/src/com/baidu/palo/cluster/ClusterNamespace.java index 61416a52a2a554..a0d50bd0b0f7ea 100644 --- a/fe/src/com/baidu/palo/cluster/ClusterNamespace.java +++ b/fe/src/com/baidu/palo/cluster/ClusterNamespace.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/common/Config.java b/fe/src/com/baidu/palo/common/Config.java index b89d33f7229c94..7873a84d42596d 100644 --- a/fe/src/com/baidu/palo/common/Config.java +++ b/fe/src/com/baidu/palo/common/Config.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/common/proc/ExportProcNode.java b/fe/src/com/baidu/palo/common/proc/ExportProcNode.java index 2ce85ca27e0808..af276cc1c1d4c4 100644 --- a/fe/src/com/baidu/palo/common/proc/ExportProcNode.java +++ b/fe/src/com/baidu/palo/common/proc/ExportProcNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/consistency/CheckConsistencyJob.java b/fe/src/com/baidu/palo/consistency/CheckConsistencyJob.java index 8a305b91e1017a..89409e37c36295 100644 --- a/fe/src/com/baidu/palo/consistency/CheckConsistencyJob.java +++ b/fe/src/com/baidu/palo/consistency/CheckConsistencyJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/consistency/ConsistencyChecker.java b/fe/src/com/baidu/palo/consistency/ConsistencyChecker.java index 274dfbc9607480..f65ff2abfb5770 100644 --- a/fe/src/com/baidu/palo/consistency/ConsistencyChecker.java +++ b/fe/src/com/baidu/palo/consistency/ConsistencyChecker.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/ha/BDBHA.java b/fe/src/com/baidu/palo/ha/BDBHA.java index 2a1c15d45f0239..f6f1a2ce90e652 100644 --- a/fe/src/com/baidu/palo/ha/BDBHA.java +++ b/fe/src/com/baidu/palo/ha/BDBHA.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/ha/BDBStateChangeListener.java b/fe/src/com/baidu/palo/ha/BDBStateChangeListener.java index 8bc00f286820bc..d318e0bd575532 100644 --- a/fe/src/com/baidu/palo/ha/BDBStateChangeListener.java +++ b/fe/src/com/baidu/palo/ha/BDBStateChangeListener.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/ha/FrontendNodeType.java b/fe/src/com/baidu/palo/ha/FrontendNodeType.java index 5f35452a67ceba..8aa600796728da 100644 --- a/fe/src/com/baidu/palo/ha/FrontendNodeType.java +++ b/fe/src/com/baidu/palo/ha/FrontendNodeType.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/ha/HAProtocol.java b/fe/src/com/baidu/palo/ha/HAProtocol.java index e4a24b26a8a2f9..33fec7e446254a 100644 --- a/fe/src/com/baidu/palo/ha/HAProtocol.java +++ b/fe/src/com/baidu/palo/ha/HAProtocol.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/ha/MasterInfo.java b/fe/src/com/baidu/palo/ha/MasterInfo.java index 7cb2be4da5430d..2ef842274d1953 100644 --- a/fe/src/com/baidu/palo/ha/MasterInfo.java +++ b/fe/src/com/baidu/palo/ha/MasterInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/ActionController.java b/fe/src/com/baidu/palo/http/ActionController.java index d2ee2f01235b7c..4de739dd5bfea2 100644 --- a/fe/src/com/baidu/palo/http/ActionController.java +++ b/fe/src/com/baidu/palo/http/ActionController.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/BaseAction.java b/fe/src/com/baidu/palo/http/BaseAction.java index f7829791643b81..c01b48efb6a3d6 100644 --- a/fe/src/com/baidu/palo/http/BaseAction.java +++ b/fe/src/com/baidu/palo/http/BaseAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/BaseRequest.java b/fe/src/com/baidu/palo/http/BaseRequest.java index 5ae234dcd47d30..49bab02450d72c 100644 --- a/fe/src/com/baidu/palo/http/BaseRequest.java +++ b/fe/src/com/baidu/palo/http/BaseRequest.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/BaseResponse.java b/fe/src/com/baidu/palo/http/BaseResponse.java index 0d08b554413ed0..66fabca2f3f4e4 100644 --- a/fe/src/com/baidu/palo/http/BaseResponse.java +++ b/fe/src/com/baidu/palo/http/BaseResponse.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/HttpAuthManager.java b/fe/src/com/baidu/palo/http/HttpAuthManager.java index f2eb299c6fa99c..76c191873568d6 100755 --- a/fe/src/com/baidu/palo/http/HttpAuthManager.java +++ b/fe/src/com/baidu/palo/http/HttpAuthManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/HttpServer.java b/fe/src/com/baidu/palo/http/HttpServer.java index 87f5818077d382..ad3f06e094bc17 100755 --- a/fe/src/com/baidu/palo/http/HttpServer.java +++ b/fe/src/com/baidu/palo/http/HttpServer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/HttpServerHandler.java b/fe/src/com/baidu/palo/http/HttpServerHandler.java index d83586951fba6c..9a195c8fab6658 100755 --- a/fe/src/com/baidu/palo/http/HttpServerHandler.java +++ b/fe/src/com/baidu/palo/http/HttpServerHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/IAction.java b/fe/src/com/baidu/palo/http/IAction.java index 7fd0ef837c41bf..63cc088984c3c4 100644 --- a/fe/src/com/baidu/palo/http/IAction.java +++ b/fe/src/com/baidu/palo/http/IAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/IllegalArgException.java b/fe/src/com/baidu/palo/http/IllegalArgException.java index 291b370aed752a..28582663b6f8a0 100644 --- a/fe/src/com/baidu/palo/http/IllegalArgException.java +++ b/fe/src/com/baidu/palo/http/IllegalArgException.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/WebUtils.java b/fe/src/com/baidu/palo/http/WebUtils.java index 88123541cbf5b6..7e41030f028e49 100644 --- a/fe/src/com/baidu/palo/http/WebUtils.java +++ b/fe/src/com/baidu/palo/http/WebUtils.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/BackendAction.java b/fe/src/com/baidu/palo/http/action/BackendAction.java index 54c88c95118a59..fae1b21e528b42 100755 --- a/fe/src/com/baidu/palo/http/action/BackendAction.java +++ b/fe/src/com/baidu/palo/http/action/BackendAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/HaAction.java b/fe/src/com/baidu/palo/http/action/HaAction.java index 009094d360f8f0..3f6304a9b7e555 100644 --- a/fe/src/com/baidu/palo/http/action/HaAction.java +++ b/fe/src/com/baidu/palo/http/action/HaAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/HelpAction.java b/fe/src/com/baidu/palo/http/action/HelpAction.java index 5db6dd22a510f5..dc9c45fc629043 100755 --- a/fe/src/com/baidu/palo/http/action/HelpAction.java +++ b/fe/src/com/baidu/palo/http/action/HelpAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/IndexAction.java b/fe/src/com/baidu/palo/http/action/IndexAction.java index 15e50d710f8d2d..1723da8f572aca 100755 --- a/fe/src/com/baidu/palo/http/action/IndexAction.java +++ b/fe/src/com/baidu/palo/http/action/IndexAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/LogAction.java b/fe/src/com/baidu/palo/http/action/LogAction.java index f967120bc0e753..9d1b5d31946285 100755 --- a/fe/src/com/baidu/palo/http/action/LogAction.java +++ b/fe/src/com/baidu/palo/http/action/LogAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/NotFoundAction.java b/fe/src/com/baidu/palo/http/action/NotFoundAction.java index f98c0a1ac6e63d..062f265b867dfc 100755 --- a/fe/src/com/baidu/palo/http/action/NotFoundAction.java +++ b/fe/src/com/baidu/palo/http/action/NotFoundAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/QueryAction.java b/fe/src/com/baidu/palo/http/action/QueryAction.java index f1e2424c5ea629..4d846d4293569a 100755 --- a/fe/src/com/baidu/palo/http/action/QueryAction.java +++ b/fe/src/com/baidu/palo/http/action/QueryAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/QueryProfileAction.java b/fe/src/com/baidu/palo/http/action/QueryProfileAction.java index e80539015b518b..f9c83d14b52257 100755 --- a/fe/src/com/baidu/palo/http/action/QueryProfileAction.java +++ b/fe/src/com/baidu/palo/http/action/QueryProfileAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/SessionAction.java b/fe/src/com/baidu/palo/http/action/SessionAction.java index 4d7e82b63c2f83..291d22c714a6a3 100755 --- a/fe/src/com/baidu/palo/http/action/SessionAction.java +++ b/fe/src/com/baidu/palo/http/action/SessionAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/StaticResourceAction.java b/fe/src/com/baidu/palo/http/action/StaticResourceAction.java index 38bf55b1c3f63e..c3af784683f690 100644 --- a/fe/src/com/baidu/palo/http/action/StaticResourceAction.java +++ b/fe/src/com/baidu/palo/http/action/StaticResourceAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/SystemAction.java b/fe/src/com/baidu/palo/http/action/SystemAction.java index c461896a69b7b4..753fc007de4a44 100755 --- a/fe/src/com/baidu/palo/http/action/SystemAction.java +++ b/fe/src/com/baidu/palo/http/action/SystemAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/VariableAction.java b/fe/src/com/baidu/palo/http/action/VariableAction.java index 4a8c87afe891be..0f8bca8827c746 100755 --- a/fe/src/com/baidu/palo/http/action/VariableAction.java +++ b/fe/src/com/baidu/palo/http/action/VariableAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/action/WebBaseAction.java b/fe/src/com/baidu/palo/http/action/WebBaseAction.java index 206e5dfb699c93..3d963e490ff96d 100644 --- a/fe/src/com/baidu/palo/http/action/WebBaseAction.java +++ b/fe/src/com/baidu/palo/http/action/WebBaseAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/meta/MetaBaseAction.java b/fe/src/com/baidu/palo/http/meta/MetaBaseAction.java index 4cc1f1f56ad094..8bd7138f15e2c4 100644 --- a/fe/src/com/baidu/palo/http/meta/MetaBaseAction.java +++ b/fe/src/com/baidu/palo/http/meta/MetaBaseAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/meta/MetaService.java b/fe/src/com/baidu/palo/http/meta/MetaService.java index b0f5cec07e90ff..89ceb25a5cc532 100644 --- a/fe/src/com/baidu/palo/http/meta/MetaService.java +++ b/fe/src/com/baidu/palo/http/meta/MetaService.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/ActionStatus.java b/fe/src/com/baidu/palo/http/rest/ActionStatus.java index 17813057f3d2a4..a353a96b91b8f9 100644 --- a/fe/src/com/baidu/palo/http/rest/ActionStatus.java +++ b/fe/src/com/baidu/palo/http/rest/ActionStatus.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/CheckDecommissionAction.java b/fe/src/com/baidu/palo/http/rest/CheckDecommissionAction.java index 7a3137377a59a5..9d03e3245eb682 100644 --- a/fe/src/com/baidu/palo/http/rest/CheckDecommissionAction.java +++ b/fe/src/com/baidu/palo/http/rest/CheckDecommissionAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/GetDdlStmtAction.java b/fe/src/com/baidu/palo/http/rest/GetDdlStmtAction.java index 3ab4b206f753f0..f090796d8af1cd 100644 --- a/fe/src/com/baidu/palo/http/rest/GetDdlStmtAction.java +++ b/fe/src/com/baidu/palo/http/rest/GetDdlStmtAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/GetLoadInfoAction.java b/fe/src/com/baidu/palo/http/rest/GetLoadInfoAction.java index 7b8737ad75a1de..d0aadad75bd172 100644 --- a/fe/src/com/baidu/palo/http/rest/GetLoadInfoAction.java +++ b/fe/src/com/baidu/palo/http/rest/GetLoadInfoAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/GetLogFileAction.java b/fe/src/com/baidu/palo/http/rest/GetLogFileAction.java index 9c2b0ef36f1454..d5b804a7f1dc5c 100644 --- a/fe/src/com/baidu/palo/http/rest/GetLogFileAction.java +++ b/fe/src/com/baidu/palo/http/rest/GetLogFileAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/HealthAction.java b/fe/src/com/baidu/palo/http/rest/HealthAction.java index f393acc98e02cd..cfe75adfee7a61 100644 --- a/fe/src/com/baidu/palo/http/rest/HealthAction.java +++ b/fe/src/com/baidu/palo/http/rest/HealthAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/LoadAction.java b/fe/src/com/baidu/palo/http/rest/LoadAction.java index 5d2c655c16e3ef..39881ed92e1110 100644 --- a/fe/src/com/baidu/palo/http/rest/LoadAction.java +++ b/fe/src/com/baidu/palo/http/rest/LoadAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/LoadErrorMessageAction.java b/fe/src/com/baidu/palo/http/rest/LoadErrorMessageAction.java index ce926c225ac22a..bfddbb6a4597ce 100644 --- a/fe/src/com/baidu/palo/http/rest/LoadErrorMessageAction.java +++ b/fe/src/com/baidu/palo/http/rest/LoadErrorMessageAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MetaReplayerCheckAction.java b/fe/src/com/baidu/palo/http/rest/MetaReplayerCheckAction.java index 152b584cf8e13d..7198f37cb4116a 100644 --- a/fe/src/com/baidu/palo/http/rest/MetaReplayerCheckAction.java +++ b/fe/src/com/baidu/palo/http/rest/MetaReplayerCheckAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MetricsAction.java b/fe/src/com/baidu/palo/http/rest/MetricsAction.java index 05d52efd7d772b..9f3c55bc417cc4 100644 --- a/fe/src/com/baidu/palo/http/rest/MetricsAction.java +++ b/fe/src/com/baidu/palo/http/rest/MetricsAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MigrationAction.java b/fe/src/com/baidu/palo/http/rest/MigrationAction.java index 3d324be4d6fab2..adaa9ddd82ab21 100644 --- a/fe/src/com/baidu/palo/http/rest/MigrationAction.java +++ b/fe/src/com/baidu/palo/http/rest/MigrationAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiAbort.java b/fe/src/com/baidu/palo/http/rest/MultiAbort.java index a1e99b49e4a88d..dde597bfa4fa02 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiAbort.java +++ b/fe/src/com/baidu/palo/http/rest/MultiAbort.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiCommit.java b/fe/src/com/baidu/palo/http/rest/MultiCommit.java index 0ba62a43ce4f13..45598807b55f88 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiCommit.java +++ b/fe/src/com/baidu/palo/http/rest/MultiCommit.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiDesc.java b/fe/src/com/baidu/palo/http/rest/MultiDesc.java index b85374172e1a79..c3e6ae01032c0a 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiDesc.java +++ b/fe/src/com/baidu/palo/http/rest/MultiDesc.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiList.java b/fe/src/com/baidu/palo/http/rest/MultiList.java index 174449e2546d0c..bea6c1902cf91c 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiList.java +++ b/fe/src/com/baidu/palo/http/rest/MultiList.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiStart.java b/fe/src/com/baidu/palo/http/rest/MultiStart.java index e37c73ea6c081b..b206cac4933054 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiStart.java +++ b/fe/src/com/baidu/palo/http/rest/MultiStart.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/MultiUnload.java b/fe/src/com/baidu/palo/http/rest/MultiUnload.java index dd5d1be5f2c1b3..c8e0ef22764f52 100644 --- a/fe/src/com/baidu/palo/http/rest/MultiUnload.java +++ b/fe/src/com/baidu/palo/http/rest/MultiUnload.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/RestBaseAction.java b/fe/src/com/baidu/palo/http/rest/RestBaseAction.java index 90b05fc5cec138..36235d3ab154d7 100644 --- a/fe/src/com/baidu/palo/http/rest/RestBaseAction.java +++ b/fe/src/com/baidu/palo/http/rest/RestBaseAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/RestBaseResult.java b/fe/src/com/baidu/palo/http/rest/RestBaseResult.java index 554d128755afe2..2d9cb6c2284253 100644 --- a/fe/src/com/baidu/palo/http/rest/RestBaseResult.java +++ b/fe/src/com/baidu/palo/http/rest/RestBaseResult.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/RestResult.java b/fe/src/com/baidu/palo/http/rest/RestResult.java index 3f14b5770235c0..23c8e9a7e54260 100644 --- a/fe/src/com/baidu/palo/http/rest/RestResult.java +++ b/fe/src/com/baidu/palo/http/rest/RestResult.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/RowCountAction.java b/fe/src/com/baidu/palo/http/rest/RowCountAction.java index d3776053508ae9..50c94fa8282671 100644 --- a/fe/src/com/baidu/palo/http/rest/RowCountAction.java +++ b/fe/src/com/baidu/palo/http/rest/RowCountAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/SetConfigAction.java b/fe/src/com/baidu/palo/http/rest/SetConfigAction.java index 73345ae24b432b..893f871c4819e9 100644 --- a/fe/src/com/baidu/palo/http/rest/SetConfigAction.java +++ b/fe/src/com/baidu/palo/http/rest/SetConfigAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/ShowMetaInfoAction.java b/fe/src/com/baidu/palo/http/rest/ShowMetaInfoAction.java index 0079f7035f15cc..e5f51443322aaa 100644 --- a/fe/src/com/baidu/palo/http/rest/ShowMetaInfoAction.java +++ b/fe/src/com/baidu/palo/http/rest/ShowMetaInfoAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/ShowProcAction.java b/fe/src/com/baidu/palo/http/rest/ShowProcAction.java index a34e6a7f6e036c..be6c12a58ef17d 100644 --- a/fe/src/com/baidu/palo/http/rest/ShowProcAction.java +++ b/fe/src/com/baidu/palo/http/rest/ShowProcAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/ShowRuntimeInfoAction.java b/fe/src/com/baidu/palo/http/rest/ShowRuntimeInfoAction.java index c54bb8172edd0c..80dd53324cd14b 100644 --- a/fe/src/com/baidu/palo/http/rest/ShowRuntimeInfoAction.java +++ b/fe/src/com/baidu/palo/http/rest/ShowRuntimeInfoAction.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/http/rest/UnauthorizedException.java b/fe/src/com/baidu/palo/http/rest/UnauthorizedException.java index 34c38c5c801b73..681d46bf374d5d 100644 --- a/fe/src/com/baidu/palo/http/rest/UnauthorizedException.java +++ b/fe/src/com/baidu/palo/http/rest/UnauthorizedException.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/Journal.java b/fe/src/com/baidu/palo/journal/Journal.java index c54bdef325145d..d34ad83d966803 100644 --- a/fe/src/com/baidu/palo/journal/Journal.java +++ b/fe/src/com/baidu/palo/journal/Journal.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/JournalCursor.java b/fe/src/com/baidu/palo/journal/JournalCursor.java index c6462e9464cc11..3ff9fffd5c0045 100644 --- a/fe/src/com/baidu/palo/journal/JournalCursor.java +++ b/fe/src/com/baidu/palo/journal/JournalCursor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/JournalEntity.java b/fe/src/com/baidu/palo/journal/JournalEntity.java index 1f86ba72b37e17..4ab475f99a8131 100644 --- a/fe/src/com/baidu/palo/journal/JournalEntity.java +++ b/fe/src/com/baidu/palo/journal/JournalEntity.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/bdbje/BDBEnvironment.java b/fe/src/com/baidu/palo/journal/bdbje/BDBEnvironment.java index 4a7acee3bbe239..7d13f2064cd2dc 100644 --- a/fe/src/com/baidu/palo/journal/bdbje/BDBEnvironment.java +++ b/fe/src/com/baidu/palo/journal/bdbje/BDBEnvironment.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/bdbje/BDBJEJournal.java b/fe/src/com/baidu/palo/journal/bdbje/BDBJEJournal.java index 72d77caee73d11..db8c64e75e882e 100644 --- a/fe/src/com/baidu/palo/journal/bdbje/BDBJEJournal.java +++ b/fe/src/com/baidu/palo/journal/bdbje/BDBJEJournal.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/bdbje/BDBJournalCursor.java b/fe/src/com/baidu/palo/journal/bdbje/BDBJournalCursor.java index 9db362e17121e6..c6ab0a563169aa 100644 --- a/fe/src/com/baidu/palo/journal/bdbje/BDBJournalCursor.java +++ b/fe/src/com/baidu/palo/journal/bdbje/BDBJournalCursor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/bdbje/Timestamp.java b/fe/src/com/baidu/palo/journal/bdbje/Timestamp.java index a77ca16fa93c73..bbdeeca196687e 100644 --- a/fe/src/com/baidu/palo/journal/bdbje/Timestamp.java +++ b/fe/src/com/baidu/palo/journal/bdbje/Timestamp.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/local/LocalJournal.java b/fe/src/com/baidu/palo/journal/local/LocalJournal.java index 0c944e425a5b81..0a356bb3896b90 100644 --- a/fe/src/com/baidu/palo/journal/local/LocalJournal.java +++ b/fe/src/com/baidu/palo/journal/local/LocalJournal.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/journal/local/LocalJournalCursor.java b/fe/src/com/baidu/palo/journal/local/LocalJournalCursor.java index f7ddf81564003a..2335b15f4fae5e 100644 --- a/fe/src/com/baidu/palo/journal/local/LocalJournalCursor.java +++ b/fe/src/com/baidu/palo/journal/local/LocalJournalCursor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/AsyncDeleteJob.java b/fe/src/com/baidu/palo/load/AsyncDeleteJob.java index f1050bd7adf829..f0c78089c0e906 100644 --- a/fe/src/com/baidu/palo/load/AsyncDeleteJob.java +++ b/fe/src/com/baidu/palo/load/AsyncDeleteJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/BrokerFileGroup.java b/fe/src/com/baidu/palo/load/BrokerFileGroup.java index e134f475ffb693..c51b35071a5698 100644 --- a/fe/src/com/baidu/palo/load/BrokerFileGroup.java +++ b/fe/src/com/baidu/palo/load/BrokerFileGroup.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/DeleteInfo.java b/fe/src/com/baidu/palo/load/DeleteInfo.java index bbf68ebf68bd16..d639a6b9a615b1 100644 --- a/fe/src/com/baidu/palo/load/DeleteInfo.java +++ b/fe/src/com/baidu/palo/load/DeleteInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/DppConfig.java b/fe/src/com/baidu/palo/load/DppConfig.java index 042cd19e8ba5f8..fc93321cca0d33 100644 --- a/fe/src/com/baidu/palo/load/DppConfig.java +++ b/fe/src/com/baidu/palo/load/DppConfig.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/DppScheduler.java b/fe/src/com/baidu/palo/load/DppScheduler.java index d925b03d4f3186..aba632e35c7b25 100644 --- a/fe/src/com/baidu/palo/load/DppScheduler.java +++ b/fe/src/com/baidu/palo/load/DppScheduler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/EtlJobInfo.java b/fe/src/com/baidu/palo/load/EtlJobInfo.java index 690b96f3f90901..27b09c0e675928 100644 --- a/fe/src/com/baidu/palo/load/EtlJobInfo.java +++ b/fe/src/com/baidu/palo/load/EtlJobInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/EtlStatus.java b/fe/src/com/baidu/palo/load/EtlStatus.java index 8d4705c2889901..de7125b70445ca 100644 --- a/fe/src/com/baidu/palo/load/EtlStatus.java +++ b/fe/src/com/baidu/palo/load/EtlStatus.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/EtlSubmitResult.java b/fe/src/com/baidu/palo/load/EtlSubmitResult.java index 9a0b1eb22cf7af..e3a3d85457074e 100644 --- a/fe/src/com/baidu/palo/load/EtlSubmitResult.java +++ b/fe/src/com/baidu/palo/load/EtlSubmitResult.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/ExportChecker.java b/fe/src/com/baidu/palo/load/ExportChecker.java index c385ab266d4e46..09c754245ad06f 100644 --- a/fe/src/com/baidu/palo/load/ExportChecker.java +++ b/fe/src/com/baidu/palo/load/ExportChecker.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/ExportFailMsg.java b/fe/src/com/baidu/palo/load/ExportFailMsg.java index 40e4501bd39d83..a5eb3576a9807e 100644 --- a/fe/src/com/baidu/palo/load/ExportFailMsg.java +++ b/fe/src/com/baidu/palo/load/ExportFailMsg.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/ExportJob.java b/fe/src/com/baidu/palo/load/ExportJob.java index 1ca0b698a762fb..bd754a080031da 100644 --- a/fe/src/com/baidu/palo/load/ExportJob.java +++ b/fe/src/com/baidu/palo/load/ExportJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/ExportMgr.java b/fe/src/com/baidu/palo/load/ExportMgr.java index 06069d7e57ea5b..f912dae406dffa 100644 --- a/fe/src/com/baidu/palo/load/ExportMgr.java +++ b/fe/src/com/baidu/palo/load/ExportMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/FailMsg.java b/fe/src/com/baidu/palo/load/FailMsg.java index 55599a5f6325a5..e89d3c02d261d6 100644 --- a/fe/src/com/baidu/palo/load/FailMsg.java +++ b/fe/src/com/baidu/palo/load/FailMsg.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/HadoopEtlJobInfo.java b/fe/src/com/baidu/palo/load/HadoopEtlJobInfo.java index 8e98963ed1adea..fbf2de2fa00dd2 100644 --- a/fe/src/com/baidu/palo/load/HadoopEtlJobInfo.java +++ b/fe/src/com/baidu/palo/load/HadoopEtlJobInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/Load.java b/fe/src/com/baidu/palo/load/Load.java index 030616df55bb27..d81f7e08e0067f 100644 --- a/fe/src/com/baidu/palo/load/Load.java +++ b/fe/src/com/baidu/palo/load/Load.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/LoadChecker.java b/fe/src/com/baidu/palo/load/LoadChecker.java index 140f67248609db..9065fbd5eebd28 100644 --- a/fe/src/com/baidu/palo/load/LoadChecker.java +++ b/fe/src/com/baidu/palo/load/LoadChecker.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/LoadErrorHub.java b/fe/src/com/baidu/palo/load/LoadErrorHub.java index d0c0961f605831..0c63b451319f37 100644 --- a/fe/src/com/baidu/palo/load/LoadErrorHub.java +++ b/fe/src/com/baidu/palo/load/LoadErrorHub.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/LoadJob.java b/fe/src/com/baidu/palo/load/LoadJob.java index db20f19ae1ec13..665bbb31a36955 100644 --- a/fe/src/com/baidu/palo/load/LoadJob.java +++ b/fe/src/com/baidu/palo/load/LoadJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/MiniEtlJobInfo.java b/fe/src/com/baidu/palo/load/MiniEtlJobInfo.java index adea24214656e9..707043e3720b2d 100644 --- a/fe/src/com/baidu/palo/load/MiniEtlJobInfo.java +++ b/fe/src/com/baidu/palo/load/MiniEtlJobInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/MiniEtlTaskInfo.java b/fe/src/com/baidu/palo/load/MiniEtlTaskInfo.java index c02a873f111880..1d795ba1dab9be 100644 --- a/fe/src/com/baidu/palo/load/MiniEtlTaskInfo.java +++ b/fe/src/com/baidu/palo/load/MiniEtlTaskInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/MysqlLoadErrorHub.java b/fe/src/com/baidu/palo/load/MysqlLoadErrorHub.java index 3af2f4279fb2a6..fe2557ad40a0ed 100644 --- a/fe/src/com/baidu/palo/load/MysqlLoadErrorHub.java +++ b/fe/src/com/baidu/palo/load/MysqlLoadErrorHub.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/PartitionLoadInfo.java b/fe/src/com/baidu/palo/load/PartitionLoadInfo.java index a3f52902fdc7a4..b7eb6156a49f4b 100644 --- a/fe/src/com/baidu/palo/load/PartitionLoadInfo.java +++ b/fe/src/com/baidu/palo/load/PartitionLoadInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/PullLoadSourceInfo.java b/fe/src/com/baidu/palo/load/PullLoadSourceInfo.java index c866491f056b46..b9f311e8b22e61 100644 --- a/fe/src/com/baidu/palo/load/PullLoadSourceInfo.java +++ b/fe/src/com/baidu/palo/load/PullLoadSourceInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/Source.java b/fe/src/com/baidu/palo/load/Source.java index 6f67451fbca8cd..c388d1af16209a 100644 --- a/fe/src/com/baidu/palo/load/Source.java +++ b/fe/src/com/baidu/palo/load/Source.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/TableLoadInfo.java b/fe/src/com/baidu/palo/load/TableLoadInfo.java index 2bce9e7bd4cb12..3555cce3a88062 100644 --- a/fe/src/com/baidu/palo/load/TableLoadInfo.java +++ b/fe/src/com/baidu/palo/load/TableLoadInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/load/TabletLoadInfo.java b/fe/src/com/baidu/palo/load/TabletLoadInfo.java index 3a31ebdcdd11d1..a42daa7d77dd92 100644 --- a/fe/src/com/baidu/palo/load/TabletLoadInfo.java +++ b/fe/src/com/baidu/palo/load/TabletLoadInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/master/Checkpoint.java b/fe/src/com/baidu/palo/master/Checkpoint.java index 9216a49640c3aa..9cefbaaf039200 100644 --- a/fe/src/com/baidu/palo/master/Checkpoint.java +++ b/fe/src/com/baidu/palo/master/Checkpoint.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/master/MasterImpl.java b/fe/src/com/baidu/palo/master/MasterImpl.java index a67920a5dac170..cf2b5630845e68 100644 --- a/fe/src/com/baidu/palo/master/MasterImpl.java +++ b/fe/src/com/baidu/palo/master/MasterImpl.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/master/MetaHelper.java b/fe/src/com/baidu/palo/master/MetaHelper.java index a9941b0a9d70f2..0c15a1e668d313 100644 --- a/fe/src/com/baidu/palo/master/MetaHelper.java +++ b/fe/src/com/baidu/palo/master/MetaHelper.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/master/ReportHandler.java b/fe/src/com/baidu/palo/master/ReportHandler.java index 1cc381e65512f3..23b51d63cd9825 100644 --- a/fe/src/com/baidu/palo/master/ReportHandler.java +++ b/fe/src/com/baidu/palo/master/ReportHandler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlAuthPacket.java b/fe/src/com/baidu/palo/mysql/MysqlAuthPacket.java index 03c6ad4ffe9469..2a01ae43aa5747 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlAuthPacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlAuthPacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlCapability.java b/fe/src/com/baidu/palo/mysql/MysqlCapability.java index bc059f66b63437..5cf30328c37de7 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlCapability.java +++ b/fe/src/com/baidu/palo/mysql/MysqlCapability.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlChannel.java b/fe/src/com/baidu/palo/mysql/MysqlChannel.java index 900af9682973c1..5a5ea693fc82eb 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlChannel.java +++ b/fe/src/com/baidu/palo/mysql/MysqlChannel.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlColDef.java b/fe/src/com/baidu/palo/mysql/MysqlColDef.java index e76e06f157ab60..eef655d7ec2591 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlColDef.java +++ b/fe/src/com/baidu/palo/mysql/MysqlColDef.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlColType.java b/fe/src/com/baidu/palo/mysql/MysqlColType.java index 5ad91c00a4d66d..f92c87928b9ce7 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlColType.java +++ b/fe/src/com/baidu/palo/mysql/MysqlColType.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlCommand.java b/fe/src/com/baidu/palo/mysql/MysqlCommand.java index ee51277d90bde6..6002877304fac0 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlCommand.java +++ b/fe/src/com/baidu/palo/mysql/MysqlCommand.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlEofPacket.java b/fe/src/com/baidu/palo/mysql/MysqlEofPacket.java index aa9850a0459087..49c0525e20d229 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlEofPacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlEofPacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlErrPacket.java b/fe/src/com/baidu/palo/mysql/MysqlErrPacket.java index dd6fa047d5a58b..457ca2c32f0d53 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlErrPacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlErrPacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlHandshakePacket.java b/fe/src/com/baidu/palo/mysql/MysqlHandshakePacket.java index 30e1541c45071f..5bb3c1082d2d08 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlHandshakePacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlHandshakePacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlOkPacket.java b/fe/src/com/baidu/palo/mysql/MysqlOkPacket.java index e348e246ee0e92..61d4c72f44f1f0 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlOkPacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlOkPacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlPacket.java b/fe/src/com/baidu/palo/mysql/MysqlPacket.java index fd3766b1b77b39..9a3cbbcbe03f64 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlPacket.java +++ b/fe/src/com/baidu/palo/mysql/MysqlPacket.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlPassword.java b/fe/src/com/baidu/palo/mysql/MysqlPassword.java index b4c07f5c1b09ac..4cc38d79aadbb7 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlPassword.java +++ b/fe/src/com/baidu/palo/mysql/MysqlPassword.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlProto.java b/fe/src/com/baidu/palo/mysql/MysqlProto.java index fcbc010574192e..795b64e48747e0 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlProto.java +++ b/fe/src/com/baidu/palo/mysql/MysqlProto.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlSerializer.java b/fe/src/com/baidu/palo/mysql/MysqlSerializer.java index 61aae70bd68b25..a6c335d32d6a64 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlSerializer.java +++ b/fe/src/com/baidu/palo/mysql/MysqlSerializer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlServer.java b/fe/src/com/baidu/palo/mysql/MysqlServer.java index 2e90f7021c904b..766776cf854972 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlServer.java +++ b/fe/src/com/baidu/palo/mysql/MysqlServer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/mysql/MysqlServerStatusFlag.java b/fe/src/com/baidu/palo/mysql/MysqlServerStatusFlag.java index aba1915f69df0c..5d2cd649fe232f 100644 --- a/fe/src/com/baidu/palo/mysql/MysqlServerStatusFlag.java +++ b/fe/src/com/baidu/palo/mysql/MysqlServerStatusFlag.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/CloneInfo.java b/fe/src/com/baidu/palo/persist/CloneInfo.java index 5496972d9b8ff3..fefb3fdc21046d 100644 --- a/fe/src/com/baidu/palo/persist/CloneInfo.java +++ b/fe/src/com/baidu/palo/persist/CloneInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/ClusterInfo.java b/fe/src/com/baidu/palo/persist/ClusterInfo.java index f6178b31534616..786958f6b6822b 100644 --- a/fe/src/com/baidu/palo/persist/ClusterInfo.java +++ b/fe/src/com/baidu/palo/persist/ClusterInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/ConsistencyCheckInfo.java b/fe/src/com/baidu/palo/persist/ConsistencyCheckInfo.java index 733f7f0ec59832..af4b15a6333909 100644 --- a/fe/src/com/baidu/palo/persist/ConsistencyCheckInfo.java +++ b/fe/src/com/baidu/palo/persist/ConsistencyCheckInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/CreateTableInfo.java b/fe/src/com/baidu/palo/persist/CreateTableInfo.java index ec631ada452bb1..b78b8192c2ff6e 100644 --- a/fe/src/com/baidu/palo/persist/CreateTableInfo.java +++ b/fe/src/com/baidu/palo/persist/CreateTableInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/DatabaseInfo.java b/fe/src/com/baidu/palo/persist/DatabaseInfo.java index a7015528687715..83cb6e6138c79e 100644 --- a/fe/src/com/baidu/palo/persist/DatabaseInfo.java +++ b/fe/src/com/baidu/palo/persist/DatabaseInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/DropInfo.java b/fe/src/com/baidu/palo/persist/DropInfo.java index ca263e4e51463b..d11b7bcc7ca519 100644 --- a/fe/src/com/baidu/palo/persist/DropInfo.java +++ b/fe/src/com/baidu/palo/persist/DropInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/DropLinkDbAndUpdateDbInfo.java b/fe/src/com/baidu/palo/persist/DropLinkDbAndUpdateDbInfo.java index 053f1639b08e62..c5e39667a21ad7 100644 --- a/fe/src/com/baidu/palo/persist/DropLinkDbAndUpdateDbInfo.java +++ b/fe/src/com/baidu/palo/persist/DropLinkDbAndUpdateDbInfo.java @@ -1,3 +1,18 @@ +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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. + package com.baidu.palo.persist; import java.io.DataInput; diff --git a/fe/src/com/baidu/palo/persist/DropPartitionInfo.java b/fe/src/com/baidu/palo/persist/DropPartitionInfo.java index 85878b458aa919..405a2105ff0d48 100644 --- a/fe/src/com/baidu/palo/persist/DropPartitionInfo.java +++ b/fe/src/com/baidu/palo/persist/DropPartitionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/EditLog.java b/fe/src/com/baidu/palo/persist/EditLog.java index 257cedcfede1fa..5e1bc7bc9c0809 100644 --- a/fe/src/com/baidu/palo/persist/EditLog.java +++ b/fe/src/com/baidu/palo/persist/EditLog.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/EditLogFileInputStream.java b/fe/src/com/baidu/palo/persist/EditLogFileInputStream.java index 8da87a06e12457..2a7a7a8c368b66 100644 --- a/fe/src/com/baidu/palo/persist/EditLogFileInputStream.java +++ b/fe/src/com/baidu/palo/persist/EditLogFileInputStream.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/EditLogFileOutputStream.java b/fe/src/com/baidu/palo/persist/EditLogFileOutputStream.java index 0e1d7eb9d90571..5b8a616b18df58 100644 --- a/fe/src/com/baidu/palo/persist/EditLogFileOutputStream.java +++ b/fe/src/com/baidu/palo/persist/EditLogFileOutputStream.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/EditLogInputStream.java b/fe/src/com/baidu/palo/persist/EditLogInputStream.java index 734119d0043edf..ca8605b1b92d1b 100644 --- a/fe/src/com/baidu/palo/persist/EditLogInputStream.java +++ b/fe/src/com/baidu/palo/persist/EditLogInputStream.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/EditLogOutputStream.java b/fe/src/com/baidu/palo/persist/EditLogOutputStream.java index 5fe3db22292f2b..edff1dc0570a1a 100644 --- a/fe/src/com/baidu/palo/persist/EditLogOutputStream.java +++ b/fe/src/com/baidu/palo/persist/EditLogOutputStream.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/LinkDbInfo.java b/fe/src/com/baidu/palo/persist/LinkDbInfo.java index c6396483c49664..ae1673ae481bf2 100644 --- a/fe/src/com/baidu/palo/persist/LinkDbInfo.java +++ b/fe/src/com/baidu/palo/persist/LinkDbInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/MetaCleaner.java b/fe/src/com/baidu/palo/persist/MetaCleaner.java index d9fc17cf074ca6..52860e5554d7d3 100644 --- a/fe/src/com/baidu/palo/persist/MetaCleaner.java +++ b/fe/src/com/baidu/palo/persist/MetaCleaner.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/ModifyPartitionInfo.java b/fe/src/com/baidu/palo/persist/ModifyPartitionInfo.java index 9eead94f08bacb..5a9a348df2fa3d 100644 --- a/fe/src/com/baidu/palo/persist/ModifyPartitionInfo.java +++ b/fe/src/com/baidu/palo/persist/ModifyPartitionInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/OperationType.java b/fe/src/com/baidu/palo/persist/OperationType.java index dd134031146f7e..d87b323ec533b3 100644 --- a/fe/src/com/baidu/palo/persist/OperationType.java +++ b/fe/src/com/baidu/palo/persist/OperationType.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/PartitionPersistInfo.java b/fe/src/com/baidu/palo/persist/PartitionPersistInfo.java index f92c4c338c0860..3c70679e210aa3 100644 --- a/fe/src/com/baidu/palo/persist/PartitionPersistInfo.java +++ b/fe/src/com/baidu/palo/persist/PartitionPersistInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/RecoverInfo.java b/fe/src/com/baidu/palo/persist/RecoverInfo.java index 81b1a141c2d080..eefd4621b2d157 100644 --- a/fe/src/com/baidu/palo/persist/RecoverInfo.java +++ b/fe/src/com/baidu/palo/persist/RecoverInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/ReplicaPersistInfo.java b/fe/src/com/baidu/palo/persist/ReplicaPersistInfo.java index 1f6dc08f8e97dd..e56d353f649da5 100644 --- a/fe/src/com/baidu/palo/persist/ReplicaPersistInfo.java +++ b/fe/src/com/baidu/palo/persist/ReplicaPersistInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/Storage.java b/fe/src/com/baidu/palo/persist/Storage.java index d283eaa4f3d5f4..a558a4d1429e3e 100644 --- a/fe/src/com/baidu/palo/persist/Storage.java +++ b/fe/src/com/baidu/palo/persist/Storage.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/StorageInfo.java b/fe/src/com/baidu/palo/persist/StorageInfo.java index 37643c065dedf7..032384a42adcf4 100644 --- a/fe/src/com/baidu/palo/persist/StorageInfo.java +++ b/fe/src/com/baidu/palo/persist/StorageInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/persist/TableInfo.java b/fe/src/com/baidu/palo/persist/TableInfo.java index b4232784c49a47..349c8b1a4fe493 100644 --- a/fe/src/com/baidu/palo/persist/TableInfo.java +++ b/fe/src/com/baidu/palo/persist/TableInfo.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/BrokerScanNode.java b/fe/src/com/baidu/palo/planner/BrokerScanNode.java index 39177b3bcec9ce..fafed20b4cc664 100644 --- a/fe/src/com/baidu/palo/planner/BrokerScanNode.java +++ b/fe/src/com/baidu/palo/planner/BrokerScanNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/CsvScanNode.java b/fe/src/com/baidu/palo/planner/CsvScanNode.java index eaa4189a703f3d..937b5685f196cc 100644 --- a/fe/src/com/baidu/palo/planner/CsvScanNode.java +++ b/fe/src/com/baidu/palo/planner/CsvScanNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/DataPartition.java b/fe/src/com/baidu/palo/planner/DataPartition.java index 7a4d90dc5fac4a..be1f1e0294af0a 100644 --- a/fe/src/com/baidu/palo/planner/DataPartition.java +++ b/fe/src/com/baidu/palo/planner/DataPartition.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/DataSink.java b/fe/src/com/baidu/palo/planner/DataSink.java index b1cd9c95de4f4d..e75e1a8e5d7bde 100644 --- a/fe/src/com/baidu/palo/planner/DataSink.java +++ b/fe/src/com/baidu/palo/planner/DataSink.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/DataSplitSink.java b/fe/src/com/baidu/palo/planner/DataSplitSink.java index 28cfc491cdf83e..a2a9cc8c4f7fba 100644 --- a/fe/src/com/baidu/palo/planner/DataSplitSink.java +++ b/fe/src/com/baidu/palo/planner/DataSplitSink.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/DistributionPruner.java b/fe/src/com/baidu/palo/planner/DistributionPruner.java index c23f2203038fae..06ad57c8d0e181 100644 --- a/fe/src/com/baidu/palo/planner/DistributionPruner.java +++ b/fe/src/com/baidu/palo/planner/DistributionPruner.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/ExportSink.java b/fe/src/com/baidu/palo/planner/ExportSink.java index 92aa9ca7ad5a39..7cea2eb743fb8c 100644 --- a/fe/src/com/baidu/palo/planner/ExportSink.java +++ b/fe/src/com/baidu/palo/planner/ExportSink.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/HashDistributionPruner.java b/fe/src/com/baidu/palo/planner/HashDistributionPruner.java index deab4ae6cb732c..d446cd20dc2a45 100644 --- a/fe/src/com/baidu/palo/planner/HashDistributionPruner.java +++ b/fe/src/com/baidu/palo/planner/HashDistributionPruner.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/MysqlScanNode.java b/fe/src/com/baidu/palo/planner/MysqlScanNode.java index dcd413e67f0798..196df0e568e165 100644 --- a/fe/src/com/baidu/palo/planner/MysqlScanNode.java +++ b/fe/src/com/baidu/palo/planner/MysqlScanNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/MysqlTableSink.java b/fe/src/com/baidu/palo/planner/MysqlTableSink.java index 0a50c52d53a2f0..88799a312e458d 100644 --- a/fe/src/com/baidu/palo/planner/MysqlTableSink.java +++ b/fe/src/com/baidu/palo/planner/MysqlTableSink.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/OlapRewriteNode.java b/fe/src/com/baidu/palo/planner/OlapRewriteNode.java index 31f5da316ccf5a..68113e44d2486e 100644 --- a/fe/src/com/baidu/palo/planner/OlapRewriteNode.java +++ b/fe/src/com/baidu/palo/planner/OlapRewriteNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/OlapScanNode.java b/fe/src/com/baidu/palo/planner/OlapScanNode.java index 11c2dc00bf61e2..3ef4037a64f981 100644 --- a/fe/src/com/baidu/palo/planner/OlapScanNode.java +++ b/fe/src/com/baidu/palo/planner/OlapScanNode.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/PartitionColumnFilter.java b/fe/src/com/baidu/palo/planner/PartitionColumnFilter.java index 28b6dfc611292d..a53d764def0fd9 100644 --- a/fe/src/com/baidu/palo/planner/PartitionColumnFilter.java +++ b/fe/src/com/baidu/palo/planner/PartitionColumnFilter.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/planner/PartitionPruner.java b/fe/src/com/baidu/palo/planner/PartitionPruner.java index 39bc9981949d8b..c5ead373892835 100644 --- a/fe/src/com/baidu/palo/planner/PartitionPruner.java +++ b/fe/src/com/baidu/palo/planner/PartitionPruner.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/AuditBuilder.java b/fe/src/com/baidu/palo/qe/AuditBuilder.java index 040840a5bf8bde..ddfbf8a7ae937b 100644 --- a/fe/src/com/baidu/palo/qe/AuditBuilder.java +++ b/fe/src/com/baidu/palo/qe/AuditBuilder.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ConnectContext.java b/fe/src/com/baidu/palo/qe/ConnectContext.java index c45f0314109e50..548369b9e42630 100644 --- a/fe/src/com/baidu/palo/qe/ConnectContext.java +++ b/fe/src/com/baidu/palo/qe/ConnectContext.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ConnectProcessor.java b/fe/src/com/baidu/palo/qe/ConnectProcessor.java index 0eb0838450f8f6..b6758eeee4d7a7 100644 --- a/fe/src/com/baidu/palo/qe/ConnectProcessor.java +++ b/fe/src/com/baidu/palo/qe/ConnectProcessor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ConnectScheduler.java b/fe/src/com/baidu/palo/qe/ConnectScheduler.java index 9f184b857e42b7..1a3bd6b277f9c4 100644 --- a/fe/src/com/baidu/palo/qe/ConnectScheduler.java +++ b/fe/src/com/baidu/palo/qe/ConnectScheduler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/Coordinator.java b/fe/src/com/baidu/palo/qe/Coordinator.java index 440d92c833e6b1..22b936c7b90afa 100644 --- a/fe/src/com/baidu/palo/qe/Coordinator.java +++ b/fe/src/com/baidu/palo/qe/Coordinator.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/DdlExecutor.java b/fe/src/com/baidu/palo/qe/DdlExecutor.java index 1a56035438d32f..6b813115ba7491 100644 --- a/fe/src/com/baidu/palo/qe/DdlExecutor.java +++ b/fe/src/com/baidu/palo/qe/DdlExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/GlobalVariable.java b/fe/src/com/baidu/palo/qe/GlobalVariable.java index 65fee7cedb6bdf..b1e481d9c19519 100644 --- a/fe/src/com/baidu/palo/qe/GlobalVariable.java +++ b/fe/src/com/baidu/palo/qe/GlobalVariable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/HelpCategory.java b/fe/src/com/baidu/palo/qe/HelpCategory.java index 2a939e3f3d6b2f..539ef26643b310 100644 --- a/fe/src/com/baidu/palo/qe/HelpCategory.java +++ b/fe/src/com/baidu/palo/qe/HelpCategory.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/HelpModule.java b/fe/src/com/baidu/palo/qe/HelpModule.java index d1b01032b8da95..d81102babeb79d 100644 --- a/fe/src/com/baidu/palo/qe/HelpModule.java +++ b/fe/src/com/baidu/palo/qe/HelpModule.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/HelpObjectIface.java b/fe/src/com/baidu/palo/qe/HelpObjectIface.java index 10c335813ea388..f469211a586008 100644 --- a/fe/src/com/baidu/palo/qe/HelpObjectIface.java +++ b/fe/src/com/baidu/palo/qe/HelpObjectIface.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/HelpObjectLoader.java b/fe/src/com/baidu/palo/qe/HelpObjectLoader.java index b3dc617a09d798..a2630deb6879e1 100644 --- a/fe/src/com/baidu/palo/qe/HelpObjectLoader.java +++ b/fe/src/com/baidu/palo/qe/HelpObjectLoader.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/HelpTopic.java b/fe/src/com/baidu/palo/qe/HelpTopic.java index 3048dcf92a23e9..26e3ceb3690b80 100644 --- a/fe/src/com/baidu/palo/qe/HelpTopic.java +++ b/fe/src/com/baidu/palo/qe/HelpTopic.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/JournalObservable.java b/fe/src/com/baidu/palo/qe/JournalObservable.java index 36b1f969d2542a..cbd256652dfa51 100644 --- a/fe/src/com/baidu/palo/qe/JournalObservable.java +++ b/fe/src/com/baidu/palo/qe/JournalObservable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/JournalObserver.java b/fe/src/com/baidu/palo/qe/JournalObserver.java index 7241b7b3d0f757..62eddac72acc97 100644 --- a/fe/src/com/baidu/palo/qe/JournalObserver.java +++ b/fe/src/com/baidu/palo/qe/JournalObserver.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/MasterOpExecutor.java b/fe/src/com/baidu/palo/qe/MasterOpExecutor.java index 3d0723927049d7..2f44c2fbf5f2f1 100644 --- a/fe/src/com/baidu/palo/qe/MasterOpExecutor.java +++ b/fe/src/com/baidu/palo/qe/MasterOpExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/MultiLoadMgr.java b/fe/src/com/baidu/palo/qe/MultiLoadMgr.java index 948036db2453ca..4e001fca8a3d51 100644 --- a/fe/src/com/baidu/palo/qe/MultiLoadMgr.java +++ b/fe/src/com/baidu/palo/qe/MultiLoadMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/QeProcessor.java b/fe/src/com/baidu/palo/qe/QeProcessor.java index d19df6fab83a94..7a1adcdbe22ea2 100644 --- a/fe/src/com/baidu/palo/qe/QeProcessor.java +++ b/fe/src/com/baidu/palo/qe/QeProcessor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/QeService.java b/fe/src/com/baidu/palo/qe/QeService.java index 83b85ae82bf9ef..36fd0d8f6283a0 100644 --- a/fe/src/com/baidu/palo/qe/QeService.java +++ b/fe/src/com/baidu/palo/qe/QeService.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/QueryState.java b/fe/src/com/baidu/palo/qe/QueryState.java index 114108216d2a92..26a80f7dd296bb 100644 --- a/fe/src/com/baidu/palo/qe/QueryState.java +++ b/fe/src/com/baidu/palo/qe/QueryState.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ResultReceiver.java b/fe/src/com/baidu/palo/qe/ResultReceiver.java index 1aacc3a9f1ef4d..84bf64e40adcfe 100644 --- a/fe/src/com/baidu/palo/qe/ResultReceiver.java +++ b/fe/src/com/baidu/palo/qe/ResultReceiver.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/SessionVariable.java b/fe/src/com/baidu/palo/qe/SessionVariable.java index 4ff8a8cd44986c..19dc4596a2e00e 100644 --- a/fe/src/com/baidu/palo/qe/SessionVariable.java +++ b/fe/src/com/baidu/palo/qe/SessionVariable.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/SetExecutor.java b/fe/src/com/baidu/palo/qe/SetExecutor.java index 843650d0c4db86..12a24c5b25af1c 100644 --- a/fe/src/com/baidu/palo/qe/SetExecutor.java +++ b/fe/src/com/baidu/palo/qe/SetExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ShowExecutor.java b/fe/src/com/baidu/palo/qe/ShowExecutor.java index 575a29aed0e455..c5bdf9cb5ef92b 100644 --- a/fe/src/com/baidu/palo/qe/ShowExecutor.java +++ b/fe/src/com/baidu/palo/qe/ShowExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ShowResultSet.java b/fe/src/com/baidu/palo/qe/ShowResultSet.java index f4d81a197380e0..e5f88c147b04ca 100644 --- a/fe/src/com/baidu/palo/qe/ShowResultSet.java +++ b/fe/src/com/baidu/palo/qe/ShowResultSet.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/ShowResultSetMetaData.java b/fe/src/com/baidu/palo/qe/ShowResultSetMetaData.java index 4ec82e223fe983..e7be433fcede9a 100644 --- a/fe/src/com/baidu/palo/qe/ShowResultSetMetaData.java +++ b/fe/src/com/baidu/palo/qe/ShowResultSetMetaData.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/SimpleScheduler.java b/fe/src/com/baidu/palo/qe/SimpleScheduler.java index 34f2ba4b38cf0b..37b96f517c46b2 100644 --- a/fe/src/com/baidu/palo/qe/SimpleScheduler.java +++ b/fe/src/com/baidu/palo/qe/SimpleScheduler.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/StmtExecutor.java b/fe/src/com/baidu/palo/qe/StmtExecutor.java index 100f64ed5bf3ed..498461418b0b0c 100644 --- a/fe/src/com/baidu/palo/qe/StmtExecutor.java +++ b/fe/src/com/baidu/palo/qe/StmtExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/qe/VariableMgr.java b/fe/src/com/baidu/palo/qe/VariableMgr.java index 5f00de27823e51..b3c2fc1f4e372e 100644 --- a/fe/src/com/baidu/palo/qe/VariableMgr.java +++ b/fe/src/com/baidu/palo/qe/VariableMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/system/Backend.java b/fe/src/com/baidu/palo/system/Backend.java index 2768e3a3f4f145..f2b06def2c4aae 100644 --- a/fe/src/com/baidu/palo/system/Backend.java +++ b/fe/src/com/baidu/palo/system/Backend.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/system/BackendEvent.java b/fe/src/com/baidu/palo/system/BackendEvent.java index fbab325f86420c..a8f981fb589fd8 100644 --- a/fe/src/com/baidu/palo/system/BackendEvent.java +++ b/fe/src/com/baidu/palo/system/BackendEvent.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/system/Frontend.java b/fe/src/com/baidu/palo/system/Frontend.java index 17ae6df4ecf72f..b1a7082c847634 100644 --- a/fe/src/com/baidu/palo/system/Frontend.java +++ b/fe/src/com/baidu/palo/system/Frontend.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/system/SystemInfoObserver.java b/fe/src/com/baidu/palo/system/SystemInfoObserver.java index 5da1e76378f054..57a466a7670d46 100644 --- a/fe/src/com/baidu/palo/system/SystemInfoObserver.java +++ b/fe/src/com/baidu/palo/system/SystemInfoObserver.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/system/SystemInfoService.java b/fe/src/com/baidu/palo/system/SystemInfoService.java index c687f5a9106e6b..65bf765a9c0d54 100644 --- a/fe/src/com/baidu/palo/system/SystemInfoService.java +++ b/fe/src/com/baidu/palo/system/SystemInfoService.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/AgentBatchTask.java b/fe/src/com/baidu/palo/task/AgentBatchTask.java index ecf34e030cbc17..836c53fffe5723 100644 --- a/fe/src/com/baidu/palo/task/AgentBatchTask.java +++ b/fe/src/com/baidu/palo/task/AgentBatchTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/AgentClient.java b/fe/src/com/baidu/palo/task/AgentClient.java index 5a322c5d7e97f7..46381b6a04e3a0 100644 --- a/fe/src/com/baidu/palo/task/AgentClient.java +++ b/fe/src/com/baidu/palo/task/AgentClient.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/AgentTask.java b/fe/src/com/baidu/palo/task/AgentTask.java index 2fae1febe69672..0add79f93966d7 100644 --- a/fe/src/com/baidu/palo/task/AgentTask.java +++ b/fe/src/com/baidu/palo/task/AgentTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/AgentTaskExecutor.java b/fe/src/com/baidu/palo/task/AgentTaskExecutor.java index b17e27b08a0d99..a54cc142b15095 100644 --- a/fe/src/com/baidu/palo/task/AgentTaskExecutor.java +++ b/fe/src/com/baidu/palo/task/AgentTaskExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/AgentTaskQueue.java b/fe/src/com/baidu/palo/task/AgentTaskQueue.java index 48e20f38e136f1..ad25ce09e8eb88 100644 --- a/fe/src/com/baidu/palo/task/AgentTaskQueue.java +++ b/fe/src/com/baidu/palo/task/AgentTaskQueue.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/CancelDeleteTask.java b/fe/src/com/baidu/palo/task/CancelDeleteTask.java index 6bbc28bb5e115c..8562f7147d9241 100644 --- a/fe/src/com/baidu/palo/task/CancelDeleteTask.java +++ b/fe/src/com/baidu/palo/task/CancelDeleteTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/CheckConsistencyTask.java b/fe/src/com/baidu/palo/task/CheckConsistencyTask.java index 46c9abeaa17933..ea9a17ef43b0f2 100644 --- a/fe/src/com/baidu/palo/task/CheckConsistencyTask.java +++ b/fe/src/com/baidu/palo/task/CheckConsistencyTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/CloneTask.java b/fe/src/com/baidu/palo/task/CloneTask.java index 3aeaee8d45661f..05efa29ea9bfb9 100644 --- a/fe/src/com/baidu/palo/task/CloneTask.java +++ b/fe/src/com/baidu/palo/task/CloneTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/CreateReplicaTask.java b/fe/src/com/baidu/palo/task/CreateReplicaTask.java index c255ab1ae3efe5..b1a4a27cdc9a86 100644 --- a/fe/src/com/baidu/palo/task/CreateReplicaTask.java +++ b/fe/src/com/baidu/palo/task/CreateReplicaTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/CreateRollupTask.java b/fe/src/com/baidu/palo/task/CreateRollupTask.java index f57fac71b8f2b9..4a682459864b17 100644 --- a/fe/src/com/baidu/palo/task/CreateRollupTask.java +++ b/fe/src/com/baidu/palo/task/CreateRollupTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/DropReplicaTask.java b/fe/src/com/baidu/palo/task/DropReplicaTask.java index 121b455e2e7ca9..e24101bfa9634c 100644 --- a/fe/src/com/baidu/palo/task/DropReplicaTask.java +++ b/fe/src/com/baidu/palo/task/DropReplicaTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/ExportExportingTask.java b/fe/src/com/baidu/palo/task/ExportExportingTask.java index c0a70197b122a8..06586f78a084dd 100644 --- a/fe/src/com/baidu/palo/task/ExportExportingTask.java +++ b/fe/src/com/baidu/palo/task/ExportExportingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/ExportPendingTask.java b/fe/src/com/baidu/palo/task/ExportPendingTask.java index 7a4c1126fbad30..69e5c26196ccd0 100644 --- a/fe/src/com/baidu/palo/task/ExportPendingTask.java +++ b/fe/src/com/baidu/palo/task/ExportPendingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/HadoopLoadEtlTask.java b/fe/src/com/baidu/palo/task/HadoopLoadEtlTask.java index b7e5645f55ec85..0e8806569eef43 100644 --- a/fe/src/com/baidu/palo/task/HadoopLoadEtlTask.java +++ b/fe/src/com/baidu/palo/task/HadoopLoadEtlTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/HadoopLoadPendingTask.java b/fe/src/com/baidu/palo/task/HadoopLoadPendingTask.java index 61a63497334cb6..ca2cb4d9483d9f 100644 --- a/fe/src/com/baidu/palo/task/HadoopLoadPendingTask.java +++ b/fe/src/com/baidu/palo/task/HadoopLoadPendingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/InsertLoadEtlTask.java b/fe/src/com/baidu/palo/task/InsertLoadEtlTask.java index e66d61cceea93a..bcbb2cfd40d454 100644 --- a/fe/src/com/baidu/palo/task/InsertLoadEtlTask.java +++ b/fe/src/com/baidu/palo/task/InsertLoadEtlTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/LoadEtlTask.java b/fe/src/com/baidu/palo/task/LoadEtlTask.java index e6576d744aeb45..1dbd8b3ba5c59d 100644 --- a/fe/src/com/baidu/palo/task/LoadEtlTask.java +++ b/fe/src/com/baidu/palo/task/LoadEtlTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/LoadPendingTask.java b/fe/src/com/baidu/palo/task/LoadPendingTask.java index de9fd1deaf76ea..d9e9871d305870 100644 --- a/fe/src/com/baidu/palo/task/LoadPendingTask.java +++ b/fe/src/com/baidu/palo/task/LoadPendingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/MasterTask.java b/fe/src/com/baidu/palo/task/MasterTask.java index 5933b2bd8dcd02..38e33d6b6d67de 100644 --- a/fe/src/com/baidu/palo/task/MasterTask.java +++ b/fe/src/com/baidu/palo/task/MasterTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/MasterTaskExecutor.java b/fe/src/com/baidu/palo/task/MasterTaskExecutor.java index 000e5d7c824286..51155cce788f1a 100644 --- a/fe/src/com/baidu/palo/task/MasterTaskExecutor.java +++ b/fe/src/com/baidu/palo/task/MasterTaskExecutor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/MiniLoadEtlTask.java b/fe/src/com/baidu/palo/task/MiniLoadEtlTask.java index eb5427e52e3a04..28e3a017138551 100644 --- a/fe/src/com/baidu/palo/task/MiniLoadEtlTask.java +++ b/fe/src/com/baidu/palo/task/MiniLoadEtlTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/MiniLoadPendingTask.java b/fe/src/com/baidu/palo/task/MiniLoadPendingTask.java index 39b160ef3209f8..35e04d22a60b6c 100644 --- a/fe/src/com/baidu/palo/task/MiniLoadPendingTask.java +++ b/fe/src/com/baidu/palo/task/MiniLoadPendingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadEtlTask.java b/fe/src/com/baidu/palo/task/PullLoadEtlTask.java index 6da0ebb3476372..1c78b5d1c858b1 100644 --- a/fe/src/com/baidu/palo/task/PullLoadEtlTask.java +++ b/fe/src/com/baidu/palo/task/PullLoadEtlTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadJob.java b/fe/src/com/baidu/palo/task/PullLoadJob.java index ce105954187c1f..eaeceecbc168fb 100644 --- a/fe/src/com/baidu/palo/task/PullLoadJob.java +++ b/fe/src/com/baidu/palo/task/PullLoadJob.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadJobMgr.java b/fe/src/com/baidu/palo/task/PullLoadJobMgr.java index d4480e46acaef9..7c263385041649 100644 --- a/fe/src/com/baidu/palo/task/PullLoadJobMgr.java +++ b/fe/src/com/baidu/palo/task/PullLoadJobMgr.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadPendingTask.java b/fe/src/com/baidu/palo/task/PullLoadPendingTask.java index abf91daaec8cc2..f639217fa6bdae 100644 --- a/fe/src/com/baidu/palo/task/PullLoadPendingTask.java +++ b/fe/src/com/baidu/palo/task/PullLoadPendingTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadTask.java b/fe/src/com/baidu/palo/task/PullLoadTask.java index 76ef42d63d5d81..7af46df86c6850 100644 --- a/fe/src/com/baidu/palo/task/PullLoadTask.java +++ b/fe/src/com/baidu/palo/task/PullLoadTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PullLoadTaskPlanner.java b/fe/src/com/baidu/palo/task/PullLoadTaskPlanner.java index c0a9a8e58904fd..e26626f2b06b34 100644 --- a/fe/src/com/baidu/palo/task/PullLoadTaskPlanner.java +++ b/fe/src/com/baidu/palo/task/PullLoadTaskPlanner.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/PushTask.java b/fe/src/com/baidu/palo/task/PushTask.java index 48a87ff13aa737..7df5c2c00609f5 100644 --- a/fe/src/com/baidu/palo/task/PushTask.java +++ b/fe/src/com/baidu/palo/task/PushTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/ReleaseSnapshotTask.java b/fe/src/com/baidu/palo/task/ReleaseSnapshotTask.java index 6a035731a424a7..b57da95645cc82 100644 --- a/fe/src/com/baidu/palo/task/ReleaseSnapshotTask.java +++ b/fe/src/com/baidu/palo/task/ReleaseSnapshotTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/RestoreTask.java b/fe/src/com/baidu/palo/task/RestoreTask.java index e52a0138765b22..3ec7206d910d2d 100644 --- a/fe/src/com/baidu/palo/task/RestoreTask.java +++ b/fe/src/com/baidu/palo/task/RestoreTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/SchemaChangeTask.java b/fe/src/com/baidu/palo/task/SchemaChangeTask.java index 86d2c107cc1a0e..bfbb5cfc1dac87 100644 --- a/fe/src/com/baidu/palo/task/SchemaChangeTask.java +++ b/fe/src/com/baidu/palo/task/SchemaChangeTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/SnapshotTask.java b/fe/src/com/baidu/palo/task/SnapshotTask.java index 56ba59a8af8c13..e4079cf79c13a3 100644 --- a/fe/src/com/baidu/palo/task/SnapshotTask.java +++ b/fe/src/com/baidu/palo/task/SnapshotTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/StorageMediaMigrationTask.java b/fe/src/com/baidu/palo/task/StorageMediaMigrationTask.java index b7f088d6dd2cfe..cb9f82d378150e 100644 --- a/fe/src/com/baidu/palo/task/StorageMediaMigrationTask.java +++ b/fe/src/com/baidu/palo/task/StorageMediaMigrationTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fe/src/com/baidu/palo/task/UploadTask.java b/fe/src/com/baidu/palo/task/UploadTask.java index 4dc58141ee8678..acc17f49af8ee4 100644 --- a/fe/src/com/baidu/palo/task/UploadTask.java +++ b/fe/src/com/baidu/palo/task/UploadTask.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/bin/start_hdfs_broker.sh b/fs_brokers/apache_hdfs_broker/bin/start_hdfs_broker.sh index d97f1458efe58a..29a90c0f6cc486 100755 --- a/fs_brokers/apache_hdfs_broker/bin/start_hdfs_broker.sh +++ b/fs_brokers/apache_hdfs_broker/bin/start_hdfs_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/apache_hdfs_broker/bin/stop_hdfs_broker.sh b/fs_brokers/apache_hdfs_broker/bin/stop_hdfs_broker.sh index a223c864c2ba3d..3c1552d3331496 100755 --- a/fs_brokers/apache_hdfs_broker/bin/stop_hdfs_broker.sh +++ b/fs_brokers/apache_hdfs_broker/bin/stop_hdfs_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/apache_hdfs_broker/build.xml b/fs_brokers/apache_hdfs_broker/build.xml index ea75af7b18e4f1..52fbe9552bde69 100644 --- a/fs_brokers/apache_hdfs_broker/build.xml +++ b/fs_brokers/apache_hdfs_broker/build.xml @@ -3,22 +3,18 @@ diff --git a/fs_brokers/apache_hdfs_broker/build_hdfs_broker.sh b/fs_brokers/apache_hdfs_broker/build_hdfs_broker.sh index f84a8c1a52937d..b1f30edb6e89bb 100755 --- a/fs_brokers/apache_hdfs_broker/build_hdfs_broker.sh +++ b/fs_brokers/apache_hdfs_broker/build_hdfs_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/apache_hdfs_broker/deps/build_deps.sh b/fs_brokers/apache_hdfs_broker/deps/build_deps.sh index 4db3f20eddbb1e..c56643ca4b6224 100755 --- a/fs_brokers/apache_hdfs_broker/deps/build_deps.sh +++ b/fs_brokers/apache_hdfs_broker/deps/build_deps.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerBootstrap.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerBootstrap.java index 4b8a41bdd4286c..2916297aa327e4 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerBootstrap.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerBootstrap.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerConfig.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerConfig.java index ec2051ebbeb903..56dde31b8f765a 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerConfig.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerConfig.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerException.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerException.java index 2e8f5f1ab83512..10edee596f626a 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerException.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerException.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerFileSystem.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerFileSystem.java index c7b96d64da6aab..ef4574785554db 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerFileSystem.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/BrokerFileSystem.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/ClientContextManager.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/ClientContextManager.java index 82a6fd44fed6a5..eb84f53ca292c5 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/ClientContextManager.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/ClientContextManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemIdentity.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemIdentity.java index cc591b81171274..3a52686df7898e 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemIdentity.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemIdentity.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemManager.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemManager.java index 8b4bba7ea7a099..6c2abc0f051d17 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemManager.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/FileSystemManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/HDFSBrokerServiceImpl.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/HDFSBrokerServiceImpl.java index e4c8b723992e4e..8e243b1fbb55fb 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/HDFSBrokerServiceImpl.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/broker/hdfs/HDFSBrokerServiceImpl.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java index 78f5fd58708bad..df25e0da24689d 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ConfigBase.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ConfigBase.java index 594448979f3db8..8dac29c0be3dda 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ConfigBase.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ConfigBase.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/LoggerMessageFormat.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/LoggerMessageFormat.java index b659dee327c1d3..51c93074a7985b 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/LoggerMessageFormat.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/LoggerMessageFormat.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ThriftServer.java b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ThriftServer.java index 81b2536535e816..35326b7145bad1 100644 --- a/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ThriftServer.java +++ b/fs_brokers/apache_hdfs_broker/src/com/baidu/palo/common/ThriftServer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestFileSystemManager.java b/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestFileSystemManager.java index 0112f50745ee16..6be0dcdfea4538 100644 --- a/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestFileSystemManager.java +++ b/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestFileSystemManager.java @@ -1,12 +1,10 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // @@ -17,8 +15,6 @@ // specific language governing permissions and limitations // under the License. -package com.baidu.palo.broker.hdfs; - import java.io.IOException; import java.nio.ByteBuffer; import java.util.HashMap; diff --git a/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestHDFSBrokerService.java b/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestHDFSBrokerService.java index 6a74f01daba255..80f88f9f9b577f 100644 --- a/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestHDFSBrokerService.java +++ b/fs_brokers/apache_hdfs_broker/test/com/baidu/palo/broker/hdfs/TestHDFSBrokerService.java @@ -1,12 +1,10 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved + +// 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 // @@ -17,8 +15,6 @@ // specific language governing permissions and limitations // under the License. -package com.baidu.palo.broker.hdfs; - import java.util.HashMap; import java.util.Map; diff --git a/fs_brokers/baidu_bos_broker/bin/start_bos_broker.sh b/fs_brokers/baidu_bos_broker/bin/start_bos_broker.sh index 0b39031f3f254b..b1a18735c034fc 100755 --- a/fs_brokers/baidu_bos_broker/bin/start_bos_broker.sh +++ b/fs_brokers/baidu_bos_broker/bin/start_bos_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/baidu_bos_broker/bin/stop_bos_broker.sh b/fs_brokers/baidu_bos_broker/bin/stop_bos_broker.sh index a54a2f72721b61..c6edaee904050b 100755 --- a/fs_brokers/baidu_bos_broker/bin/stop_bos_broker.sh +++ b/fs_brokers/baidu_bos_broker/bin/stop_bos_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/baidu_bos_broker/build.xml b/fs_brokers/baidu_bos_broker/build.xml index c69aaf87f64c0d..00f2e68d4719c2 100644 --- a/fs_brokers/baidu_bos_broker/build.xml +++ b/fs_brokers/baidu_bos_broker/build.xml @@ -3,22 +3,18 @@ diff --git a/fs_brokers/baidu_bos_broker/build_bos_broker.sh b/fs_brokers/baidu_bos_broker/build_bos_broker.sh index 4e0324a78c16d2..834777690bba1e 100755 --- a/fs_brokers/baidu_bos_broker/build_bos_broker.sh +++ b/fs_brokers/baidu_bos_broker/build_bos_broker.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/baidu_bos_broker/deps/build_deps.sh b/fs_brokers/baidu_bos_broker/deps/build_deps.sh index 19632807a4c4fb..537b68815c467e 100755 --- a/fs_brokers/baidu_bos_broker/deps/build_deps.sh +++ b/fs_brokers/baidu_bos_broker/deps/build_deps.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BOSBrokerServiceImpl.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BOSBrokerServiceImpl.java index 4a51a941f76d54..75cafb7102b5fa 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BOSBrokerServiceImpl.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BOSBrokerServiceImpl.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BaiduBosFileSystem.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BaiduBosFileSystem.java index ba899cfa5030cd..50a0eeccb52d18 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BaiduBosFileSystem.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BaiduBosFileSystem.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosBlockBuffer.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosBlockBuffer.java index 792f24e7046b94..81e70bb133057a 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosBlockBuffer.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosBlockBuffer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosException.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosException.java index d8b0fa5aa1760b..497e2867ae2267 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosException.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosException.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosNativeFileSystemStore.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosNativeFileSystemStore.java index 33a522226a59d8..bc46a209504bad 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosNativeFileSystemStore.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BosNativeFileSystemStore.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerBootstrap.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerBootstrap.java index 4e3ef3ab7d9390..208859acdf56db 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerBootstrap.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerBootstrap.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerConfig.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerConfig.java index 3da8d63625f61d..770f6741d956ae 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerConfig.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerConfig.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerException.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerException.java index 399194c4d589f5..c9dbd613b5aed5 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerException.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerException.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerFileSystem.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerFileSystem.java index 33492c677e1e5a..71014ef2ba2c09 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerFileSystem.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/BrokerFileSystem.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/ClientContextManager.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/ClientContextManager.java index 55ccd33ca26d5f..4628738253e749 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/ClientContextManager.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/ClientContextManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileMetadata.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileMetadata.java index 3f577923d777bc..c0cba78ed01ec6 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileMetadata.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileMetadata.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemIdentity.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemIdentity.java index bf5a1ea1d60cc8..db447d4d139d50 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemIdentity.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemIdentity.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemManager.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemManager.java index 89ed4eb2eb4b41..331d163cebaa1c 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemManager.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/FileSystemManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/NativeFileSystemStore.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/NativeFileSystemStore.java index 5c2a99f6319f6d..11bbdebccd9dc4 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/NativeFileSystemStore.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/NativeFileSystemStore.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/PartialListing.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/PartialListing.java index d76de06e107610..b84ef0683e8ad9 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/PartialListing.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/broker/bos/PartialListing.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java index 78f5fd58708bad..df25e0da24689d 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/BrokerPerfMonitor.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ConfigBase.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ConfigBase.java index 594448979f3db8..8dac29c0be3dda 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ConfigBase.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ConfigBase.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/Log4jConfig.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/Log4jConfig.java index a7178cbae41c8d..98cedbded29186 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/Log4jConfig.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/Log4jConfig.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/LoggerMessageFormat.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/LoggerMessageFormat.java index b659dee327c1d3..51c93074a7985b 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/LoggerMessageFormat.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/LoggerMessageFormat.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ThriftServer.java b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ThriftServer.java index cbe04b14baf959..a8bbc7289d6e79 100644 --- a/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ThriftServer.java +++ b/fs_brokers/baidu_bos_broker/src/com/baidu/palo/common/ThriftServer.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestBOSBrokerService.java b/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestBOSBrokerService.java index 87fe5998d2a072..5b64f95d474093 100644 --- a/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestBOSBrokerService.java +++ b/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestBOSBrokerService.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestFileSystemManager.java b/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestFileSystemManager.java index 3e83a23ad0f2e1..60539f5d643139 100644 --- a/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestFileSystemManager.java +++ b/fs_brokers/baidu_bos_broker/test/com/baidu/palo/broker/bos/TestFileSystemManager.java @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/gensrc/Makefile b/gensrc/Makefile index ff8bbbcf3fbd7c..b8b52ae8fbed8e 100644 --- a/gensrc/Makefile +++ b/gensrc/Makefile @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/gensrc/proto/Makefile b/gensrc/proto/Makefile index 3bef88ae1e32dc..29ec0dc3429df3 100644 --- a/gensrc/proto/Makefile +++ b/gensrc/proto/Makefile @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/gensrc/proto/column_data_file.proto b/gensrc/proto/column_data_file.proto index 14731f29f74690..00d1ab50fe36e4 100644 --- a/gensrc/proto/column_data_file.proto +++ b/gensrc/proto/column_data_file.proto @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/gensrc/proto/olap_common.proto b/gensrc/proto/olap_common.proto index 2064f9557c8083..262417429b410b 100644 --- a/gensrc/proto/olap_common.proto +++ b/gensrc/proto/olap_common.proto @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/gensrc/proto/olap_file.proto b/gensrc/proto/olap_file.proto index b938e40efb2ff9..5ff511ff943d70 100644 --- a/gensrc/proto/olap_file.proto +++ b/gensrc/proto/olap_file.proto @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/gensrc/thrift/Makefile b/gensrc/thrift/Makefile index ba3aa491adaa2a..c67c4cec161eaf 100644 --- a/gensrc/thrift/Makefile +++ b/gensrc/thrift/Makefile @@ -1,12 +1,8 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/gensrc/thrift/PaloBrokerService.thrift b/gensrc/thrift/PaloBrokerService.thrift index 290b77b0147652..096a4c80d0420d 100644 --- a/gensrc/thrift/PaloBrokerService.thrift +++ b/gensrc/thrift/PaloBrokerService.thrift @@ -1,12 +1,8 @@ // Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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 +// 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 // diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh index 1acc29ad27972f..b7906643c205db 100755 --- a/thirdparty/build-thirdparty.sh +++ b/thirdparty/build-thirdparty.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/thirdparty/download-thirdparty.sh b/thirdparty/download-thirdparty.sh index 86fcfeab69a55c..aa62aa74471c0c 100755 --- a/thirdparty/download-thirdparty.sh +++ b/thirdparty/download-thirdparty.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 # diff --git a/thirdparty/vars.sh b/thirdparty/vars.sh index 82d11521bbed11..72b11ba40412f5 100644 --- a/thirdparty/vars.sh +++ b/thirdparty/vars.sh @@ -2,13 +2,9 @@ # Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you 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 +# 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 #