File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -794,6 +794,8 @@ def test_conpy47(self):
794
794
del con
795
795
796
796
def test_conpy48 (self ):
797
+ if os .environ .get ("MAXSCALE_VERSION" ):
798
+ self .skipTest ("MAXSCALE doesn't support BULK yet" )
797
799
con = create_connection ()
798
800
cur = con .cursor ()
799
801
cur .execute ("select %s" , [True ])
@@ -872,6 +874,8 @@ def test_conpy53(self):
872
874
del con
873
875
874
876
def test_conpy58 (self ):
877
+ if os .environ .get ("MAXSCALE_VERSION" ):
878
+ self .skipTest ("MAXSCALE doesn't support BULK yet" )
875
879
con = create_connection ()
876
880
cursor = con .cursor ()
877
881
cursor .execute ("SELECT %(val)s" , {"val" : 3 })
@@ -959,6 +963,8 @@ def test_negative_numbers(self):
959
963
con .close ()
960
964
961
965
def test_none_val (self ):
966
+ if os .environ .get ("MAXSCALE_VERSION" ):
967
+ self .skipTest ("MAXSCALE doesn't support BULK yet" )
962
968
con = create_connection ()
963
969
cur = con .cursor ()
964
970
cur .execute ("CREATE TEMPORARY TABLE t1 (a int)" )
You can’t perform that action at this time.
0 commit comments