2013-08-30 09:55:43 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-SQL-SplitStatement
|
|
|
|
#
|
2021-06-09 19:00:33 +00:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2013-08-30 09:55:43 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2021-06-09 19:00:33 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2013-08-30 09:55:43 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2021-06-09 19:00:33 +00:00
|
|
|
%define cpan_name SQL-SplitStatement
|
2015-01-27 19:58:00 +00:00
|
|
|
Name: perl-SQL-SplitStatement
|
2021-06-09 19:00:33 +00:00
|
|
|
Version: 1.00023
|
2013-08-30 09:55:43 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Split any SQL code into atomic statements
|
2021-06-09 19:00:33 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/V/VE/VEESH/%{cpan_name}-%{version}.tar.gz
|
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:17:12 +02:00
|
|
|
Source100: README.md
|
2013-08-30 09:55:43 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Class::Accessor::Fast)
|
|
|
|
BuildRequires: perl(List::MoreUtils)
|
|
|
|
BuildRequires: perl(Regexp::Common)
|
2021-06-09 19:00:33 +00:00
|
|
|
BuildRequires: perl(Test::Differences) >= 0.68
|
|
|
|
BuildRequires: perl(Test::Exception) >= 0.270000
|
2015-01-27 19:58:00 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.7
|
2013-08-30 09:55:43 +00:00
|
|
|
Requires: perl(Class::Accessor::Fast)
|
|
|
|
Requires: perl(List::MoreUtils)
|
|
|
|
Requires: perl(Regexp::Common)
|
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
This is a simple module which tries to split any SQL code, even including
|
2021-06-09 19:00:33 +00:00
|
|
|
non-standard extensions (for the details see the SUPPORTED DBMSs section
|
|
|
|
below), into the atomic statements it is composed of.
|
2015-01-27 19:58:00 +00:00
|
|
|
|
|
|
|
The logic used to split the SQL code is more sophisticated than a raw
|
|
|
|
'split' on the ';' (semicolon) character: first, various different
|
|
|
|
statement terminator _tokens_ are recognized (see below for the list), then
|
|
|
|
this module is able to correctly handle the presence of said tokens inside
|
|
|
|
identifiers, values, comments, 'BEGIN ... END' blocks (even nested),
|
|
|
|
_dollar-quoted_ strings, MySQL custom 'DELIMITER's, procedural code etc.,
|
2021-06-09 19:00:33 +00:00
|
|
|
as (partially) exemplified in the SYNOPSIS above.
|
2015-01-27 19:58:00 +00:00
|
|
|
|
|
|
|
Consider however that this is by no means a validating parser (technically
|
|
|
|
speaking, it's just a _context-sensitive tokenizer_). It should rather be
|
|
|
|
seen as an in-progress _heuristic_ approach, which will gradually improve
|
2021-06-09 19:00:33 +00:00
|
|
|
as test cases will be reported. This also means that, except for the
|
|
|
|
LIMITATIONS detailed below, there is no known (to the author) SQL code the
|
|
|
|
most current release of this module can't correctly split.
|
2015-01-27 19:58:00 +00:00
|
|
|
|
|
|
|
The test suite bundled with the distribution (which now includes the
|
2021-06-09 19:00:33 +00:00
|
|
|
popular _Sakila_ and _Pagila_ sample db schemata, as detailed in the
|
|
|
|
SHOWCASE section below) should give you an idea of the capabilities of this
|
|
|
|
module
|
2013-08-30 09:55:43 +00:00
|
|
|
|
2015-01-27 19:58:00 +00:00
|
|
|
If your atomic statements are to be fed to a DBMS, you are encouraged to
|
2021-06-09 19:00:33 +00:00
|
|
|
use DBIx::MultiStatementDo instead, which uses this module and also
|
|
|
|
(optionally) offers automatic transactions support, so that you'll have the
|
|
|
|
_all-or-nothing_ behavior you would probably want.
|
2013-08-30 09:55:43 +00:00
|
|
|
|
|
|
|
%prep
|
2021-06-09 19:00:33 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{version}
|
2013-08-30 09:55:43 +00:00
|
|
|
|
|
|
|
%build
|
2021-06-09 19:00:33 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2013-08-30 09:55:43 +00:00
|
|
|
|
|
|
|
%check
|
2021-06-09 19:00:33 +00:00
|
|
|
make test
|
2013-08-30 09:55:43 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2021-06-09 19:00:33 +00:00
|
|
|
%doc Changes README
|
|
|
|
%license LICENSE
|
2013-08-30 09:55:43 +00:00
|
|
|
|
|
|
|
%changelog
|