Skip to content

Commit

Permalink
WIP: move DirectQueryDriver to its own package, use Managers struct.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Jan 10, 2024
1 parent 0381df0 commit 8f5d995
Show file tree
Hide file tree
Showing 7 changed files with 775 additions and 781 deletions.
777 changes: 0 additions & 777 deletions python/lsst/daf/butler/direct_query_driver.py

This file was deleted.

29 changes: 29 additions & 0 deletions python/lsst/daf/butler/direct_query_driver/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This file is part of daf_butler.
#
# Developed for the LSST Data Management System.
# This product includes software developed by the LSST Project
# (http://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# This software is dual licensed under the GNU General Public License and also
# under a 3-clause BSD license. Recipients may choose which of these licenses
# to use; please see the files gpl-3.0.txt and/or bsd_license.txt,
# respectively. If you choose the GPL option then the following text applies
# (but note that there is still no warranty even if you opt for BSD instead):
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.

from ._postprocessing import Postprocessing
from ._sql_builder import EmptySqlBuilder, SqlBuilder
Loading

0 comments on commit 8f5d995

Please sign in to comment.