Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
5fa5621f
Kaydet (Commit)
5fa5621f
authored
Ara 03, 2012
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #19416 -- Fixed multi-line commands in initial SQL files
Thanks Aymeric Augustin for detecting this regression.
üst
6d27547d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
sql.py
django/core/management/sql.py
+5
-5
simple.sql
tests/regressiontests/initial_sql_regress/sql/simple.sql
+2
-1
No files found.
django/core/management/sql.py
Dosyayı görüntüle @
5fa5621f
...
...
@@ -145,15 +145,15 @@ def sql_all(app, style, connection):
def
_split_statements
(
content
):
comment_re
=
re
.
compile
(
r"^((?:'[^']*'|[^'])*?)--.*$"
)
statements
=
[]
statement
=
""
statement
=
[]
for
line
in
content
.
split
(
"
\n
"
):
cleaned_line
=
comment_re
.
sub
(
r"\1"
,
line
)
.
strip
()
if
not
cleaned_line
:
continue
statement
+=
cleaned_line
if
statement
.
endswith
(
";"
):
statements
.
append
(
statement
)
statement
=
""
statement
.
append
(
cleaned_line
)
if
cleaned_line
.
endswith
(
";"
):
statements
.
append
(
" "
.
join
(
statement
)
)
statement
=
[]
return
statements
...
...
tests/regressiontests/initial_sql_regress/sql/simple.sql
Dosyayı görüntüle @
5fa5621f
...
...
@@ -2,7 +2,8 @@
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'John'
);
-- another comment
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'-- Comment Man'
);
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'Paul'
);
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'Ringo'
);
INSERT
INTO
initial_sql_regress_simple
VALUES
(
150
,
'Ringo'
);
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'George'
);
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'Miles O
''
Brien'
);
INSERT
INTO
initial_sql_regress_simple
(
name
)
VALUES
(
'Semicolon;Man'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment